Searched refs:EState (Results 1 – 8 of 8) sorted by relevance
| /openbsd/src/gnu/usr.bin/perl/cpan/Compress-Raw-Bzip2/bzip2-src/ |
| D | bzip2.patch | 48 - s = BZALLOC( sizeof(EState) ); 49 + s = (EState*) BZALLOC( sizeof(EState) ); 70 - EState* s = strm->state; 71 + EState* s = (EState*) strm->state; 77 EState* s; 80 + s = (EState*) strm->state; 86 EState* s; 89 + s = (EState*) strm->state;
|
| D | compress.c | 43 void BZ2_bsInitWrite ( EState* s ) in BZ2_bsInitWrite() 52 void bsFinishWrite ( EState* s ) in bsFinishWrite() 79 void bsW ( EState* s, Int32 n, UInt32 v ) in bsW() 89 void bsPutUInt32 ( EState* s, UInt32 u ) in bsPutUInt32() 100 void bsPutUChar ( EState* s, UChar c ) in bsPutUChar() 112 void makeMaps_e ( EState* s ) in makeMaps_e() 126 void generateMTFValues ( EState* s ) in generateMTFValues() 245 void sendMTFValues ( EState* s ) in sendMTFValues() 610 void BZ2_compressBlock ( EState* s, Bool is_last_block ) in BZ2_compressBlock()
|
| D | bzlib.c | 121 void prepare_new_block ( EState* s ) in prepare_new_block() 135 void init_RL ( EState* s ) in init_RL() 143 Bool isempty_RL ( EState* s ) in isempty_RL() 159 EState* s; in BZ_API() 172 s = (EState*) BZALLOC( sizeof(EState) ); in BZ_API() 220 void add_pair_to_block ( EState* s ) in add_pair_to_block() 256 void flush_RL ( EState* s ) in flush_RL() 293 Bool copy_input_until_stop ( EState* s ) in copy_input_until_stop() 338 Bool copy_output_until_stop ( EState* s ) in copy_output_until_stop() 369 EState* s = (EState*) strm->state; in handle_compress() [all …]
|
| D | bzlib_private.h | 266 EState; typedef 273 BZ2_blockSort ( EState* ); 276 BZ2_compressBlock ( EState*, Bool ); 279 BZ2_bsInitWrite ( EState* );
|
| D | blocksort.c | 1031 void BZ2_blockSort ( EState* s ) in BZ2_blockSort()
|
| /openbsd/src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| D | ErrnoModeling.h | 61 ErrnoCheckState EState); 66 uint64_t Value, ErrnoCheckState EState); 69 ProgramStateRef setErrnoState(ProgramStateRef State, ErrnoCheckState EState);
|
| D | ErrnoModeling.cpp | 221 ErrnoCheckState EState) { in setErrnoValue() argument 228 return State->set<ErrnoState>(EState); in setErrnoValue() 232 uint64_t Value, ErrnoCheckState EState) { in setErrnoValue() argument 240 return State->set<ErrnoState>(EState); in setErrnoValue() 254 ProgramStateRef setErrnoState(ProgramStateRef State, ErrnoCheckState EState) { in setErrnoState() argument 255 return State->set<ErrnoState>(EState); in setErrnoState()
|
| D | ErrnoChecker.cpp | 145 ErrnoCheckState EState = getErrnoState(State); in checkLocation() local 148 switch (EState) { in checkLocation() 172 switch (EState) { in checkLocation()
|