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

  /external/chromium_org/third_party/openssl/openssl/crypto/modes/
xts128.c 66 union { u64 u[2]; u32 d[4]; u8 c[16]; } tweak, scratch; local
71 memcpy(tweak.c, iv, 16);
73 (*ctx->block2)(tweak.c,tweak.c,ctx->key2);
80 scratch.u[0] ^= tweak.u[0];
81 scratch.u[1] ^= tweak.u[1];
83 scratch.u[0] = ((u64*)inp)[0]^tweak.u[0];
84 scratch.u[1] = ((u64*)inp)[1]^tweak.u[1];
88 scratch.u[0] ^= tweak.u[0];
89 scratch.u[1] ^= tweak.u[1]
    [all...]
  /external/openssl/crypto/modes/
xts128.c 66 union { u64 u[2]; u32 d[4]; u8 c[16]; } tweak, scratch; local
71 memcpy(tweak.c, iv, 16);
73 (*ctx->block2)(tweak.c,tweak.c,ctx->key2);
80 scratch.u[0] ^= tweak.u[0];
81 scratch.u[1] ^= tweak.u[1];
83 scratch.u[0] = ((u64*)inp)[0]^tweak.u[0];
84 scratch.u[1] = ((u64*)inp)[1]^tweak.u[1];
88 scratch.u[0] ^= tweak.u[0];
89 scratch.u[1] ^= tweak.u[1]
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 

Completed in 128 milliseconds