Searched refs:code_size (Results 1 – 3 of 3) sorted by relevance
/reactos/dll/3rdparty/libjpeg/ |
H A D | rdgif.c | 112 int code_size; /* current actual code size */ member 191 sinfo->code_size = sinfo->input_code_size + 1; in ReInitLZW() 227 while (sinfo->cur_bit + sinfo->code_size > sinfo->last_bit) { in GetCode() 263 sinfo->cur_bit += sinfo->code_size; in GetCode() 264 return ((int) accum) & ((1 << sinfo->code_size) - 1); in GetCode() 340 sinfo->code_size < MAX_LZW_BITS) { in LZWReadByte() 341 sinfo->code_size++; in LZWReadByte()
|
/reactos/dll/win32/jscript/ |
H A D | compile.c | 58 unsigned code_size; member 213 assert(ctx->code_size >= ctx->code_off); in push_instr() 215 if(ctx->code_size == ctx->code_off) { in push_instr() 218 new_instrs = heap_realloc(ctx->code->instrs, ctx->code_size*2*sizeof(instr_t)); in push_instr() 223 ctx->code_size *= 2; in push_instr() 2267 compiler->code_size = 64; in init_code()
|
/reactos/modules/rostests/winetests/ntdll/ |
H A D | exception.c | 298 const void *code, unsigned int code_size, in run_exception_test() argument 312 memcpy(code_mem, code, code_size); in run_exception_test() 314 VirtualProtect(code_mem, code_size, access, &oldaccess); in run_exception_test() 321 VirtualProtect(code_mem, code_size, oldaccess, &oldaccess2); in run_exception_test()
|