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

  /external/chromium_org/third_party/libsrtp/srtp/test/
lfsr.c 152 extern int octet_weight[256];
159 wt += octet_weight[poly & 0xff];
160 wt += octet_weight[(poly >> 8) & 0xff];
161 wt += octet_weight[(poly >> 16) & 0xff];
162 wt += octet_weight[(poly >> 24)];
  /external/chromium_org/third_party/libsrtp/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 1551 milliseconds