Home
last modified time | relevance | path

Searched refs:EState (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DErrnoModeling.h61 ErrnoCheckState EState);
66 uint64_t Value, ErrnoCheckState EState);
69 ProgramStateRef setErrnoState(ProgramStateRef State, ErrnoCheckState EState);
H A DErrnoModeling.cpp222 ErrnoCheckState EState) { in setErrnoValue() argument
229 return State->set<ErrnoState>(EState); in setErrnoValue()
233 uint64_t Value, ErrnoCheckState EState) { in setErrnoValue() argument
241 return State->set<ErrnoState>(EState); in setErrnoValue()
255 ProgramStateRef setErrnoState(ProgramStateRef State, ErrnoCheckState EState) { in setErrnoState() argument
256 return State->set<ErrnoState>(EState); in setErrnoState()
H A DErrnoChecker.cpp145 ErrnoCheckState EState = getErrnoState(State); in checkLocation() local
148 switch (EState) { in checkLocation()
172 switch (EState) { in checkLocation()
/freebsd/contrib/bzip2/
H A Dcompress.c37 void BZ2_bsInitWrite ( EState* s ) in BZ2_bsInitWrite()
46 void bsFinishWrite ( EState* s ) in bsFinishWrite()
73 void bsW ( EState* s, Int32 n, UInt32 v ) in bsW()
83 void bsPutUInt32 ( EState* s, UInt32 u ) in bsPutUInt32()
94 void bsPutUChar ( EState* s, UChar c ) in bsPutUChar()
106 void makeMaps_e ( EState* s ) in makeMaps_e()
120 void generateMTFValues ( EState* s ) in generateMTFValues()
239 void sendMTFValues ( EState* s ) in sendMTFValues()
602 void BZ2_compressBlock ( EState* s, Bool is_last_block ) in BZ2_compressBlock()
H A Dbzlib_private.h266 EState; typedef
273 BZ2_blockSort ( EState* );
276 BZ2_compressBlock ( EState*, Bool );
279 BZ2_bsInitWrite ( EState* );
H A Dbzlib.c120 void prepare_new_block ( EState* s ) in prepare_new_block()
134 void init_RL ( EState* s ) in init_RL()
142 Bool isempty_RL ( EState* s ) in isempty_RL()
158 EState* s; in BZ_API()
171 s = BZALLOC( sizeof(EState) ); in BZ_API()
219 void add_pair_to_block ( EState* s ) in add_pair_to_block()
255 void flush_RL ( EState* s ) in flush_RL()
292 Bool copy_input_until_stop ( EState* s ) in copy_input_until_stop()
368 EState* s = strm->state; in handle_compress()
413 EState* s; in BZ_API()
[all …]
H A Dblocksort.c1031 void BZ2_blockSort ( EState* s ) in BZ2_blockSort()