Home
last modified time | relevance | path

Searched refs:gf2_8_shift (Results 1 – 4 of 4) sorted by relevance

/external/srtp/crypto/math/
Dgf2_8.c57 if (y & 1) z ^= x; x = gf2_8_shift(x); in gf2_8_multiply()
58 if (y & 2) z ^= x; x = gf2_8_shift(x); in gf2_8_multiply()
59 if (y & 4) z ^= x; x = gf2_8_shift(x); in gf2_8_multiply()
60 if (y & 8) z ^= x; x = gf2_8_shift(x); in gf2_8_multiply()
61 if (y & 16) z ^= x; x = gf2_8_shift(x); in gf2_8_multiply()
62 if (y & 32) z ^= x; x = gf2_8_shift(x); in gf2_8_multiply()
63 if (y & 64) z ^= x; x = gf2_8_shift(x); in gf2_8_multiply()
/external/srtp/crypto/include/
Dgf2_8.h67 #define gf2_8_shift(z) (((z) & 128) ? \ macro
/external/srtp/tables/
Daes_tables.c103 x2 = gf2_8_shift(x1); in aes_compute_tables()
/external/srtp/crypto/cipher/
Daes.c1409 rc = gf2_8_shift(rc); in aes_expand_encryption_key()