Searched refs:octet_weight (Results 1 - 3 of 3) sorted by relevance

/external/srtp/test/
H A Dlfsr.c117 extern int octet_weight[256];
124 wt += octet_weight[poly & 0xff];
125 wt += octet_weight[(poly >> 8) & 0xff];
126 wt += octet_weight[(poly >> 16) & 0xff];
127 wt += octet_weight[(poly >> 24)];
/external/srtp/crypto/math/
H A Dmath.c48 octet_weight[256] = { variable
158 extern int octet_weight[256];
160 return octet_weight[octet];
167 wt += octet_weight[a.v8[0]]; /* note: endian-ness makes no difference */
168 wt += octet_weight[a.v8[1]];
169 wt += octet_weight[a.v8[2]];
170 wt += octet_weight[a.v8[3]];
H A Ddatatypes.c49 octet_weight[256] = { variable
86 extern int octet_weight[256];
88 return octet_weight[octet];

Completed in 75 milliseconds