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

  /external/boringssl/src/crypto/
internal.h 186 * unsigned int lt = constant_time_lt(a, b);
195 /* constant_time_lt returns 0xff..f if a < b and 0 otherwise. */
196 static inline unsigned int constant_time_lt(unsigned int a, unsigned int b) { function
231 /* constant_time_lt_8 acts like |constant_time_lt| but returns an 8-bit mask. */
233 return (uint8_t)(constant_time_lt(a, b));
238 return ~constant_time_lt(a, b);
constant_time_test.cc 97 EXPECT_EQ(FromBool(a < b), constant_time_lt(a, b));

Completed in 456 milliseconds