OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:gf2_8_shift
(Results
1 - 4
of
4
) sorted by null
/external/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/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/srtp/tables/
aes_tables.c
103
x2 =
gf2_8_shift
(x1);
/external/srtp/crypto/cipher/
aes.c
[
all
...]
Completed in 163 milliseconds