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

  /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 59 milliseconds