OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:constant_time_ge
(Results
1 - 4
of
4
) sorted by null
/external/boringssl/src/crypto/
constant_time_test.c
259
test_binary_op(&
constant_time_ge
, "
constant_time_ge
", a, b, a >= b);
263
test_binary_op(&
constant_time_ge
, "
constant_time_ge
", b, a, b >= a);
internal.h
247
static inline unsigned int
constant_time_ge
(unsigned int a, unsigned int b) {
function
251
/* constant_time_ge_8 acts like |
constant_time_ge
| but returns an 8-bit mask. */
253
return (uint8_t)(
constant_time_ge
(a, b));
/external/boringssl/src/crypto/cipher/
tls_cbc.c
88
good =
constant_time_ge
(in_len, overhead + padding_length);
/external/boringssl/src/crypto/rsa/
padding.c
231
valid_index &=
constant_time_ge
(zero_index, 2 + 8);
Completed in 281 milliseconds