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

  /external/chromium_org/third_party/libsrtp/srtp/crypto/math/
gf2_8.c 51 /* gf2_8_shift() moved to gf2_8.h as an inline function */
57 if (y & 1) z ^= x; x = gf2_8_shift(x);
58 if (y & 2) z ^= x; x = gf2_8_shift(x);
59 if (y & 4) z ^= x; x = gf2_8_shift(x);
60 if (y & 8) z ^= x; x = gf2_8_shift(x);
61 if (y & 16) z ^= x; x = gf2_8_shift(x);
62 if (y & 32) z ^= x; x = gf2_8_shift(x);
63 if (y & 64) z ^= x; x = gf2_8_shift(x);
  /external/chromium_org/third_party/libsrtp/srtp/crypto/include/
gf2_8.h 57 * gf2_8_shift(x) returns
61 * gf2_8_shift(z) returns the result of the GF(2^8) 'multiply by x'
67 #define gf2_8_shift(z) (((z) & 128) ? \ macro
  /external/chromium_org/third_party/libsrtp/srtp/tables/
aes_tables.c 103 x2 = gf2_8_shift(x1);
  /external/chromium_org/third_party/libsrtp/srtp/crypto/cipher/
aes.c     [all...]

Completed in 502 milliseconds