Searched refs:prev (Results 1 – 13 of 13) sorted by relevance
/optee_os-3.20.0/core/kernel/ |
A D | tee_time_ree.c | 10 static TEE_Time prev; variable 23 if (time->seconds < prev.seconds || in get_monotonic_ree_time() 24 (time->seconds == prev.seconds && in get_monotonic_ree_time() 25 time->millis < prev.millis)) in get_monotonic_ree_time() 26 *time = prev; /* REE time was rolled back */ in get_monotonic_ree_time() 28 prev = *time; in get_monotonic_ree_time()
|
A D | dt_driver.c | 454 struct dt_driver_probe *prev = NULL; in process_probe_list() local 482 dt_driver_probe_head, link, prev) { in process_probe_list()
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/mac/omac/ |
A D | omac_process.c | 44 *(LTC_FAST_TYPE_PTR_CAST(&omac->prev[y])) ^= *(LTC_FAST_TYPE_PTR_CAST(&in[y])); in omac_process() 47 …if ((err = cipher_descriptor[omac->cipher_idx]->ecb_encrypt(omac->prev, omac->prev, &omac->key)) !… in omac_process() 60 omac->block[x] ^= omac->prev[x]; in omac_process() 62 …if ((err = cipher_descriptor[omac->cipher_idx]->ecb_encrypt(omac->block, omac->prev, &omac->key)) … in omac_process()
|
A D | omac_init.c | 83 zeromem(omac->prev, sizeof(omac->prev)); in omac_init()
|
A D | omac_done.c | 52 omac->block[x] ^= omac->prev[x] ^ omac->Lu[mode][x]; in omac_done()
|
/optee_os-3.20.0/lib/libmbedtls/mbedtls/library/ |
A D | memory_buffer_alloc.c | 50 memory_header *prev; member 154 if( hdr->prev != NULL && hdr->prev == hdr->next ) in verify_header() 186 if( heap.first->prev != NULL ) in verify_chain() 208 if( cur->prev != prv ) in verify_chain() 322 new->prev = cur; in buffer_alloc_calloc() 332 new->next->prev = new; in buffer_alloc_calloc() 422 if( hdr->prev != NULL && hdr->prev->alloc == 0 ) in buffer_alloc_free() 428 hdr->prev->next = hdr->next; in buffer_alloc_free() 430 hdr = hdr->prev; in buffer_alloc_free() 433 hdr->next->prev = hdr; in buffer_alloc_free() [all …]
|
A D | x509_crt.c | 1341 mbedtls_x509_crt *crt = chain, *prev = NULL; in mbedtls_x509_crt_parse_der_internal() local 1351 prev = crt; in mbedtls_x509_crt_parse_der_internal() 1365 prev = crt; in mbedtls_x509_crt_parse_der_internal() 1373 if( prev ) in mbedtls_x509_crt_parse_der_internal() 1374 prev->next = NULL; in mbedtls_x509_crt_parse_der_internal()
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/asn1/der/sequence/ |
A D | der_sequence_free.c | 23 while (in->prev != NULL || in->parent != NULL) { in der_sequence_free() 27 in = in->prev; in der_sequence_free()
|
A D | der_decode_sequence_flexi.c | 25 (*l)->next->prev = *l; in s_new_element() 488 if (l->prev) { in s_der_decode_sequence_flexi() 489 l = l->prev; in s_der_decode_sequence_flexi() 507 while (l->prev != NULL || l->parent != NULL) { in s_der_decode_sequence_flexi() 511 l = l->prev; in s_der_decode_sequence_flexi()
|
/optee_os-3.20.0/lib/libutils/isoc/include/sys/ |
A D | queue.h | 541 #define TAILQ_FOREACH_REVERSE_SAFE(var, head, headname, field, prev) \ argument 543 (var) && ((prev) = TAILQ_PREV((var), headname, field), 1);\ 544 (var) = (prev))
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/headers/ |
A D | tomcrypt_mac.h | 36 prev[MAXBLOCKSIZE], member
|
A D | tomcrypt_pk.h | 548 struct ltc_asn1_list_ *prev, *next, *child, *parent; member
|
/optee_os-3.20.0/core/arch/arm/crypto/ |
A D | aes_modes_armv8a_ce_a32.S | 267 veor q14, q15, q6 @ combine prev ct with last key
|
Completed in 20 milliseconds