Searched refs:valid_index (Results 1 – 7 of 7) sorted by relevance
/external/boringssl/src/crypto/fipsmodule/rsa/ |
D | padding.c | 219 crypto_word_t valid_index = first_byte_is_zero; in RSA_padding_check_PKCS1_type_2() local 220 valid_index &= second_byte_is_two; in RSA_padding_check_PKCS1_type_2() 223 valid_index &= ~looking_for_index; in RSA_padding_check_PKCS1_type_2() 226 valid_index &= constant_time_ge_w(zero_index, 2 + 8); in RSA_padding_check_PKCS1_type_2() 236 CONSTTIME_DECLASSIFY(&valid_index, sizeof(valid_index)); in RSA_padding_check_PKCS1_type_2() 239 if (!valid_index) { in RSA_padding_check_PKCS1_type_2()
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/rsa/ |
D | padding.c | 219 crypto_word_t valid_index = first_byte_is_zero; in RSA_padding_check_PKCS1_type_2() local 220 valid_index &= second_byte_is_two; in RSA_padding_check_PKCS1_type_2() 223 valid_index &= ~looking_for_index; in RSA_padding_check_PKCS1_type_2() 226 valid_index &= constant_time_ge_w(zero_index, 2 + 8); in RSA_padding_check_PKCS1_type_2() 236 CONSTTIME_DECLASSIFY(&valid_index, sizeof(valid_index)); in RSA_padding_check_PKCS1_type_2() 239 if (!valid_index) { in RSA_padding_check_PKCS1_type_2()
|
/external/stressapptest/src/ |
D | finelock_queue.h | 60 bool valid_index(int64 index) { in valid_index() function
|
D | finelock_queue.cc | 425 if (!valid_index(index)) in PutEmpty() 443 if (!valid_index(index)) in PutValid()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | scatter_expander.cc | 203 HloInstruction * valid_index, in CheckIndexValidity() 211 MakeReduceHlo(valid_index, reduction_init, HloOpcode::kAnd, module)); in CheckIndexValidity()
|
/external/python/cpython3/Objects/ |
D | listobject.c | 194 valid_index(Py_ssize_t i, Py_ssize_t limit) in valid_index() function 215 if (!valid_index(i, Py_SIZE(op))) { in PyList_GetItem() 238 if (!valid_index(i, Py_SIZE(op))) { in PyList_SetItem() 428 if (!valid_index(i, Py_SIZE(a))) { in list_item() 755 if (!valid_index(i, Py_SIZE(a))) { in list_ass_item() 1002 if (!valid_index(index, Py_SIZE(self))) { in list_pop_impl()
|
/external/python/cpython3/Modules/ |
D | _collectionsmodule.c | 1185 valid_index(Py_ssize_t i, Py_ssize_t limit) in valid_index() function 1199 if (!valid_index(i, Py_SIZE(deque))) { in deque_item() 1255 if (!valid_index(i, len)) { in deque_ass_item() 2445 if (!valid_index(index, PyTuple_GET_SIZE(obj))) { in tuplegetter_descr_get()
|