Searched refs:codesize (Results 1 – 7 of 7) sorted by relevance
116 size_t codesize, memsize; in sti_iteinit_common() local135 codesize = sti.codeptr[i] - sti.codeptr[STI_BEGIN]; in sti_iteinit_common()136 codesize = (codesize + 3) / 4; in sti_iteinit_common()138 sti.code = (uint8_t *)alloc(codesize); in sti_iteinit_common()141 eaddr = addr + codesize * 4; in sti_iteinit_common()
4461 int32 codesize, codemask, avail, oldcode, bits, valid_bits, clear; in stbi_process_gif_raster() local4467 codesize = lzw_cs + 1; in stbi_process_gif_raster()4468 codemask = (1 << codesize) - 1; in stbi_process_gif_raster()4483 if (valid_bits < codesize) { in stbi_process_gif_raster()4494 bits >>= codesize; in stbi_process_gif_raster()4495 valid_bits -= codesize; in stbi_process_gif_raster()4498 codesize = lzw_cs + 1; in stbi_process_gif_raster()4499 codemask = (1 << codesize) - 1; in stbi_process_gif_raster()4523 codesize++; in stbi_process_gif_raster()4524 codemask = (1 << codesize) - 1; in stbi_process_gif_raster()
106 when codesize is important. e.g., for:
113 ;; ADJUST_INSN_LENGTH, codesize gets much worse.
993 It would be better to do the mul once to reduce codesize above the if.
8479 space efficient algorithms when optimize for codesize.
125077 and codesize by some 0.5%.