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

/external/liblzf/
H A Dlzf_c.c39 #define HSIZE (1 << (HLOG)) macro
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/
H A DCLZF.java117 static int HSIZE=(1<<14); field in class:CLZF
141 return ((((h ^ (h << 5)) >> (int) (3*8 - HLOG)) - h*5) & (HSIZE - 1));
/external/liblzf/cs/
H A DCLZF.cs117 UInt32 HSIZE=(1<<14); field in class:LZF.NET.CLZF
141 return ((((h ^ (h << 5)) >> (int) (3*8 - HLOG)) - h*5) & (HSIZE - 1));
/external/opencv/cv/src/
H A Dcvcalibinit.cpp566 #define HSIZE 20 macro
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_his
[all...]

Completed in 165 milliseconds