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

  /external/boringssl/src/decrepit/xts/
xts.c 71 } tweak, scratch; local
76 memcpy(tweak.c, iv, 16);
78 (*ctx->block2)(tweak.c, tweak.c, ctx->key2);
85 scratch.u[0] ^= tweak.u[0];
86 scratch.u[1] ^= tweak.u[1];
88 scratch.u[0] = ((uint64_t *)inp)[0] ^ tweak.u[0];
89 scratch.u[1] = ((uint64_t *)inp)[1] ^ tweak.u[1];
93 scratch.u[0] ^= tweak.u[0];
94 scratch.u[1] ^= tweak.u[1]
    [all...]
  /external/crcalc/src/com/hp/creals/
UnaryCRFunction.java 487 BigInteger tweak = big2; local
529 // guess might be exactly right; tweak it
532 BigInteger new_guess = guess.add(tweak);
534 guess = guess.subtract(tweak);
541 tweak = tweak.negate();

Completed in 237 milliseconds