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

  /external/srtp/test/
lfsr.c 117 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/
math.c 48 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]];
datatypes.c 49 octet_weight[256] = { variable
86 extern int octet_weight[256];
88 return octet_weight[octet];

Completed in 72 milliseconds