Home
last modified time | relevance | path

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

/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.c77 #define HSIZE 9001L /* 91% occupancy */ macro
803 sp->enc_hashtab = (hash_t*) _TIFFmalloc(HSIZE*sizeof (hash_t)); in LZWSetupEncode()
936 if (h >= HSIZE) in LZWEncode()
937 h -= HSIZE; in LZWEncode()
948 disp = HSIZE - h; in LZWEncode()
957 h += HSIZE; in LZWEncode()
1103 register hash_t *hp = &sp->enc_hashtab[HSIZE-1]; in cl_hash()
1104 register long i = HSIZE-8; in cl_hash()