Searched refs:HSIZE (Results 1 – 4 of 4) sorted by relevance
44 #define HSIZE 5003 /* hash table size for 80% occupancy */ macro172 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()
33 static final int HSIZE = 5003; // 80% occupancy field in LZWEncoder54 int[] htab = new int[HSIZE];56 int[] codetab = new int[HSIZE];58 int hsize = HSIZE; // for dynamic table sizing
75 #define HSIZE 9001L /* 91% occupancy */ macro822 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()
169 ; CHECK-NEXT: [[TMP1:%.*]] = sext i32 [[HSIZE:%.*]] to i64