HomeSort by relevance Sort by last modified time
    Searched refs:HSIZE (Results 1 - 6 of 6) sorted by null

  /prebuilts/tools/common/m2/repository/com/android/tools/external/liblzf/1.0/
liblzf-1.0.jar 
  /external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
LZWEncoder.java 33 static final int HSIZE = 5003; // 80% occupancy
54 int[] htab = new int[HSIZE];
56 int[] codetab = new int[HSIZE];
58 int hsize = HSIZE; // for dynamic table sizing field in class:LZWEncoder
132 cl_hash(hsize);
140 void cl_hash(int hsize) {
141 for (int i = 0; i < hsize; ++i)
171 for (fcode = hsize; fcode < 65536; fcode *= 2)
175 hsize_reg = hsize;
    [all...]
  /external/liblzf/
lzf_c.c 39 #define HSIZE (1 << (HLOG))
51 # define IDX(h) ((( h >> (3*8 - HLOG)) - h ) & (HSIZE - 1))
53 # define IDX(h) ((( h >> (3*8 - HLOG)) - h*5) & (HSIZE - 1))
55 # define IDX(h) ((((h ^ (h << 5)) >> (3*8 - HLOG)) - h*5) & (HSIZE - 1))
60 * ((h * 57321 >> (3*8 - HLOG)) & (HSIZE - 1))
71 # define IDX(h) ((h) & (HSIZE - 1))
  /external/liblzf/src/org/liblzf/
CLZF.java 117 static int HSIZE=(1<<14);
141 return ((((h ^ (h << 5)) >> (int) (3*8 - HLOG)) - h*5) & (HSIZE - 1));
  /external/liblzf/cs/
CLZF.cs 117 UInt32 HSIZE=(1<<14);
141 return ((((h ^ (h << 5)) >> (int) (3*8 - HLOG)) - h*5) & (HSIZE - 1));
  /external/opencv/cv/src/
cvcalibinit.cpp 566 #define HSIZE 20
567 int col_hist[HSIZE*2];
568 int row_hist[HSIZE*2]; // bad programming, should allow variable size
570 for (i=0; i<HSIZE*2; i++) // init to zero
586 col_hist[col+HSIZE]++;
587 row_hist[row+HSIZE]++;
626 PRINTF("HIST[%d] = %d\n", i, col_hist[i+HSIZE]);
655 if (col_hist[col_max+HSIZE] > col_hist[col_min+HSIZE])
671 if (row_hist[row_max+HSIZE] > row_hist[row_min+HSIZE]
    [all...]

Completed in 110 milliseconds