Home
last modified time | relevance | path

Searched refs:HSIZE (Results 1 – 4 of 4) sorted by relevance

/external/libjpeg-turbo/
Dwrgif.c44 #define HSIZE 5003 /* hash table size for 80% occupancy */ macro
172 MEMZERO(dinfo->hash_code, HSIZE * sizeof(code_int)); in clear_hash()
385 if (i >= HSIZE) in put_LZW_pixel_rows()
386 i -= HSIZE; in put_LZW_pixel_rows()
409 disp = HSIZE - i; in put_LZW_pixel_rows()
413 i += HSIZE; in put_LZW_pixel_rows()
566 HSIZE * sizeof(code_int)); in jinit_write_gif()
569 HSIZE * sizeof(hash_entry)); in jinit_write_gif()
/external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
DLZWEncoder.java33 static final int HSIZE = 5003; // 80% occupancy field in LZWEncoder
54 int[] htab = new int[HSIZE];
56 int[] codetab = new int[HSIZE];
58 int hsize = HSIZE; // for dynamic table sizing
/external/pdfium/third_party/libtiff/
Dtif_lzw.c75 #define HSIZE 9001L /* 91% occupancy */ macro
822 sp->enc_hashtab = (hash_t*) _TIFFmalloc(HSIZE*sizeof (hash_t)); in LZWSetupEncode()
955 if (h >= HSIZE) in LZWEncode()
956 h -= HSIZE; in LZWEncode()
967 disp = HSIZE - h; in LZWEncode()
976 h += HSIZE; in LZWEncode()
1122 register hash_t *hp = &sp->enc_hashtab[HSIZE-1]; in cl_hash()
1123 register long i = HSIZE-8; in cl_hash()
/external/llvm-project/llvm/test/Transforms/IndVarSimplify/X86/
Div-widen.ll169 ; CHECK-NEXT: [[TMP1:%.*]] = sext i32 [[HSIZE:%.*]] to i64