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

  /external/boringssl/src/crypto/
mem.c 134 static const uint32_t kPrime = 16777619u;
142 h *= kPrime;
  /external/boringssl/src/crypto/fipsmodule/ec/
p256-64.c 70 static const uint64_t kPrime[4] = {0xfffffffffffffffful, 0xffffffff, 0,
337 * conditionally subtract kPrime if tmp[3] is large enough. */
358 tmp[0] -= mask & kPrime[0];
359 tmp[1] -= mask & kPrime[1];
360 /* kPrime[2] is zero, so omitted */
361 tmp[3] -= mask & kPrime[3];
727 /* We are doing a constant time test if out >= kPrime. We need to compare
733 uint128_t a = ((uint128_t)kPrime[i]) - out[i];
734 /* if out[i] > kPrime[i] then a will underflow and the high 64-bits
738 /* if kPrime[i] == out[i] then |equal| will be all zeros and th
    [all...]

Completed in 491 milliseconds