/external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/ |
perfect.h | 20 #define SCRAMBLE_LEN ((ub4)1<<16) /* length of *scramble* */ 30 * The code placed here must declare "ub4 rsl" 42 ub4 len; /* number of lines available for final hash */ 43 ub4 used; /* number of lines used by final hash */ 45 ub4 lowbit; /* for HEX, lowest interesting bit */ 46 ub4 highbit; /* for HEX, highest interesting bit */ 47 ub4 diffbits; /* bits which differ for some key */ 48 ub4 i,j,k,l,m,n,o; /* state machine used in hexn() */ 83 ub4 len_k; /* the length of the actual key */ 84 ub4 hash_k; /* the initial hash value for this key * [all...] |
perfect.c | 65 ub4 phash_log2(val) 66 ub4 val; 68 ub4 i; 69 for (i=0; ((ub4)1<<i) < val; ++i) 76 static ub4 permute( 77 ub4 x, /* input, a value in some range */ 78 ub4 nbits) /* input, number of bits in range */ 81 int mask = ((ub4)1<<nbits)-1; /* all ones */ 98 ub4 *scramble, /* hash is a^scramble[tab[b]] */ 99 ub4 smax) /* scramble values should be in 0..smax-1 * [all...] |
standard.h | 12 typedef unsigned long int ub4; /* unsigned 4-byte quantities */ typedef 24 # define align(a) (((ub4)a+(sizeof(void *)-1))&(~(sizeof(void *)-1)))
|
genperf.c | 78 ub4 smax, /* range of scramble[] */ 79 ub4 blen, /* b in 0..blen-1, power of 2 */ 80 ub4 *scramble) /* used in final hash */ 82 ub4 i; 154 ub4 nkeys; 159 ub4 smax; /* scramble[] values in 0..smax-1, a power of 2 */ 160 ub4 alen; /* a in 0..alen-1, a power of 2 */ 161 ub4 blen; /* b in 0..blen-1, a power of 2 */ 162 ub4 salt; /* a parameter to the hash function */ 164 ub4 i [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
phash.c | 13 #define ub4 unsigned long macro 15 #define hashsize(n) ((ub4)1<<(n)) 112 a += (k[0] +((ub4)k[1]<<8) +((ub4)k[2]<<16) +((ub4)k[3]<<24)); 114 b += (k[4] +((ub4)k[5]<<8) +((ub4)k[6]<<16) +((ub4)k[7]<<24)); 116 c += (k[8] +((ub4)k[9]<<8) +((ub4)k[10]<<16)+((ub4)k[11]<<24)) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/ |
t_dd_vertex.h | 76 GLubyte ub4[24][4]; member in union:__anon18203
|
/external/mesa3d/src/mesa/tnl_dd/ |
t_dd_vertex.h | 76 GLubyte ub4[24][4]; member in union:__anon31762
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/ |
intel_tris.c | 653 #define VERT_SET_RGBA( v, c ) if (coloroffset) INTEL_COLOR( v->ub4[coloroffset], c ) 658 #define VERT_SET_SPEC( v, c ) if (specoffset) INTEL_SPEC( v->ub4[specoffset], c ) 659 #define VERT_COPY_SPEC( v0, v1 ) if (specoffset) COPY_3V(v0->ub4[specoffset], v1->ub4[specoffset]) [all...] |
/external/mesa3d/src/mesa/drivers/dri/i915/ |
intel_tris.c | 653 #define VERT_SET_RGBA( v, c ) if (coloroffset) INTEL_COLOR( v->ub4[coloroffset], c ) 658 #define VERT_SET_SPEC( v, c ) if (specoffset) INTEL_SPEC( v->ub4[specoffset], c ) 659 #define VERT_COPY_SPEC( v0, v1 ) if (specoffset) COPY_3V(v0->ub4[specoffset], v1->ub4[specoffset]) [all...] |