/optee_os-3.20.0/lib/libutils/isoc/newlib/ |
A D | strrchr.c | 75 _CONST char *last = NULL; variable 81 last = s; 87 last = strchr(s, i); 90 return (char *) last;
|
/optee_os-3.20.0/core/drivers/crypto/caam/ |
A D | caam_desc.c | 41 uint32_t *last = desc + len; in caam_desc_add_word() local 44 caam_write_val32((void *)last, word); in caam_desc_add_word() 53 uint32_t *last = desc + len; in caam_desc_add_ptr() local 58 struct ptr_addr *ptr_addr = (struct ptr_addr *)(uintptr_t)last; in caam_desc_add_ptr() 68 caam_write_val32((void *)last, ptr); in caam_desc_add_ptr()
|
/optee_os-3.20.0/core/lib/zlib/ |
A D | inffast.c | 57 z_const unsigned char FAR *last; /* have enough input while in < last */ local 84 last = in + (strm->avail_in - 5); 291 } while (in < last && out < end); 302 strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));
|
A D | inflate.c | 132 state->last = 0; 864 if (state->last) { 870 state->last = BITS(1); 1078 last = here; 1081 (BITS(last.bits + last.op) >> last.bits)]; 1085 DROPBITS(last.bits); 1086 state->back += last.bits; 1130 last = here; 1133 (BITS(last.bits + last.op) >> last.bits)]; 1137 DROPBITS(last.bits); [all …]
|
A D | inflate.h | 86 int last; /* true if processing last block */ member
|
/optee_os-3.20.0/core/drivers/crypto/aspeed/ |
A D | hace_ast2600.c | 220 uint32_t last = 0; in ast2600_hace_final() local 240 last = hctx->total[0] & (hctx->blk_size - 1); in ast2600_hace_final() 245 if (last < 56) in ast2600_hace_final() 246 padn = 56 - last; in ast2600_hace_final() 248 padn = 120 - last; in ast2600_hace_final() 261 if (last < 112) in ast2600_hace_final() 262 padn = 112 - last; in ast2600_hace_final() 264 padn = 240 - last; in ast2600_hace_final()
|
/optee_os-3.20.0/core/arch/arm/mm/ |
A D | pgt_cache.c | 163 if (last <= begin) in pgt_entry_matches() 166 last - begin); in pgt_entry_matches() 180 while (pgt_entry_matches(p, begin, last)) { in pgt_flush_range() 201 if (pgt_entry_matches(next_p, begin, last)) { in pgt_flush_range() 655 vaddr_t last) in pgt_entry_matches() argument 661 if (last <= begin) in pgt_entry_matches() 664 last - begin)) in pgt_entry_matches() 671 vaddr_t begin, vaddr_t last) in flush_ctx_range_from_list() argument 681 while (pgt_entry_matches(p, ctx, begin, last)) { in flush_ctx_range_from_list() 703 if (pgt_entry_matches(next_p, ctx, begin, last)) { in flush_ctx_range_from_list() [all …]
|
/optee_os-3.20.0/core/drivers/crypto/caam/cipher/ |
A D | caam_cipher_mac.c | 178 if (dupdate->last) in do_update_mac() 197 if (dupdate->last) { in do_update_mac() 244 if (dupdate->last) { in do_update_mac() 298 struct caamdmaobj *dst, bool last) in run_cmac_desc() argument 323 if (last) in run_cmac_desc() 329 } else if (last) { in run_cmac_desc() 381 if (last) { in run_cmac_desc() 437 if (!dupdate->last) { in do_update_cmac() 520 if (dupdate->last) { in do_update_cmac() 630 dupdate.last = false; in do_cmac_update() [all …]
|
/optee_os-3.20.0/core/drivers/crypto/versal/ |
A D | authenc.c | 567 struct drvcrypt_authenc_update_payload last = { }; in do_enc_final() local 586 last.ctx = dfinal->ctx; in do_enc_final() 587 last.dst = dfinal->dst; in do_enc_final() 588 last.encrypt = true; in do_enc_final() 589 last.src = dfinal->src; in do_enc_final() 591 ret = update_payload(&last, true); in do_enc_final() 640 last.encrypt = false; in do_dec_final() 641 last.ctx = dfinal->ctx; in do_dec_final() 642 last.dst = dfinal->dst; in do_dec_final() 643 last.src = dfinal->src; in do_dec_final() [all …]
|
/optee_os-3.20.0/core/mm/ |
A D | core_mmu.c | 642 if (n == *last) in add_phys_mem() 663 (*last)++; in add_phys_mem() 681 if (n == *last) in add_va_space() 690 (*last)++; in add_va_space() 874 size_t *last) in add_pager_vaspace() argument 900 assert(pos <= *last); in add_pager_vaspace() 903 (*last)++; in add_pager_vaspace() 927 size_t last = 0; in collect_mem_ranges() local 955 return last; in collect_mem_ranges() 1199 (*last)++; in mem_map_add_id_map() [all …]
|
A D | vm.c | 138 vaddr_t last = ROUNDUP(r->va + r->size, CORE_MMU_PGDIR_SIZE); in rem_um_region() local 159 last = MIN(last, ROUNDDOWN(r2->va, CORE_MMU_PGDIR_SIZE)); in rem_um_region() 166 if (begin < last) in rem_um_region() 167 pgt_flush_range(uctx, begin, last); in rem_um_region()
|
/optee_os-3.20.0/core/drivers/imx/dcp/ |
A D | dcp.c | 280 uint8_t last[DCP_AES128_BLOCK_SIZE] = { }; in dcp_cmac() local 319 memcpy(last, input + offset, input_size - offset); in dcp_cmac() 322 dcp_xor(last, key1, last, DCP_AES128_BLOCK_SIZE); in dcp_cmac() 324 dcp_cmac_padding(last, input_size % DCP_AES128_BLOCK_SIZE); in dcp_cmac() 325 dcp_xor(last, key2, last, DCP_AES128_BLOCK_SIZE); in dcp_cmac() 328 dcp_xor(x, last, y, DCP_AES128_BLOCK_SIZE); in dcp_cmac()
|
/optee_os-3.20.0/core/drivers/crypto/crypto_api/include/ |
A D | drvcrypt_cipher.h | 39 bool last; /* Last block to handle */ member
|
/optee_os-3.20.0/core/crypto/ |
A D | sm3.c | 219 uint32_t last, padn; in sm3_final() local 229 last = ctx->total[0] & 0x3F; in sm3_final() 230 padn = (last < 56) ? (56 - last) : (120 - last); in sm3_final()
|
/optee_os-3.20.0/core/drivers/crypto/se050/core/ |
A D | cipher.c | 34 return ctx->ops->update(ctx, dupdate->last, dupdate->src.data, in do_update()
|
/optee_os-3.20.0/lib/libmbedtls/mbedtls/library/ |
A D | md4.c | 305 uint32_t last, padn; in mbedtls_md4_finish_ret() local 316 last = ctx->total[0] & 0x3F; in mbedtls_md4_finish_ret() 317 padn = ( last < 56 ) ? ( 56 - last ) : ( 120 - last ); in mbedtls_md4_finish_ret()
|
A D | ripemd160.c | 372 uint32_t last, padn; in mbedtls_ripemd160_finish_ret() local 383 last = ctx->total[0] & 0x3F; in mbedtls_ripemd160_finish_ret() 384 padn = ( last < 56 ) ? ( 56 - last ) : ( 120 - last ); in mbedtls_ripemd160_finish_ret()
|
/optee_os-3.20.0/core/lib/libfdt/ |
A D | fdt.c | 273 const char *last = strtab + tabsize - len; in fdt_find_string_() local 276 for (p = strtab; p <= last; p++) in fdt_find_string_()
|
/optee_os-3.20.0/core/include/mm/ |
A D | pgt_cache.h | 85 void pgt_flush_range(struct user_mode_ctx *uctx, vaddr_t begin, vaddr_t last);
|
/optee_os-3.20.0/core/drivers/crypto/stm32/ |
A D | cipher.c | 67 return stm32_cryp_update(&c->cryp, dupdate->last, in stm32_cipher_update()
|
/optee_os-3.20.0/core/drivers/crypto/crypto_api/cipher/ |
A D | cipher.c | 136 .last = last_block, in cipher_update()
|
/optee_os-3.20.0/core/kernel/ |
A D | tee_ta_manager.c | 634 struct tee_ta_session *last = NULL; in new_session_id() local 638 last = TAILQ_LAST(open_sessions, tee_ta_session_head); in new_session_id() 639 if (last) { in new_session_id() 641 id = last->id + 1; in new_session_id()
|
/optee_os-3.20.0/core/arch/arm/crypto/ |
A D | aes_modes_armv8a_ce_a32.S | 149 vld1.8 {q14}, [ip] @ load last round key 264 vmov q15, q14 @ preserve last round key 267 veor q14, q15, q6 @ combine prev ct with last key
|
/optee_os-3.20.0/core/arch/arm/kernel/ |
A D | secure_partition.c | 177 struct sp_session *last = NULL; in new_session_id() local 180 last = TAILQ_LAST(open_sessions, sp_sessions_head); in new_session_id() 181 if (last) in new_session_id() 182 id = last->endpoint_id + 1; in new_session_id()
|
/optee_os-3.20.0/ |
A D | MAINTAINERS | 26 3. The last entry ("THE REST") lists the overall maintainers (M:) and the
|