/optee_os/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/core/arch/arm/mm/ |
A D | pgt_cache.c | 331 vaddr_t last) in pgt_entry_matches() argument 337 if (last <= begin) in pgt_entry_matches() 340 last - begin)) in pgt_entry_matches() 347 vaddr_t begin, vaddr_t last) in flush_ctx_range_from_list() argument 357 while (pgt_entry_matches(p, ctx, begin, last)) { in flush_ctx_range_from_list() 379 if (pgt_entry_matches(next_p, ctx, begin, last)) { in flush_ctx_range_from_list() 391 vaddr_t begin, vaddr_t last) in pgt_flush_ctx_range() argument 396 flush_ctx_range_from_list(pgt_cache, ctx, begin, last); in pgt_flush_ctx_range() 474 vaddr_t begin, vaddr_t last) in pgt_alloc_unlocked() argument 501 vaddr_t begin, vaddr_t last) in pgt_alloc() argument [all …]
|
A D | core_mmu.c | 578 if (n == *last) in add_phys_mem() 599 (*last)++; in add_phys_mem() 617 if (n == *last) in add_va_space() 626 (*last)++; in add_va_space() 795 size_t *last) in add_pager_vaspace() argument 821 assert(pos <= *last); in add_pager_vaspace() 824 (*last)++; in add_pager_vaspace() 848 size_t last = 0; in collect_mem_ranges() local 876 return last; in collect_mem_ranges() 1090 (*last)++; in mem_map_add_id_map() [all …]
|
/optee_os/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/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; 856 if (state->last) { 862 state->last = BITS(1); 1068 last = here; 1071 (BITS(last.bits + last.op) >> last.bits)]; 1075 DROPBITS(last.bits); 1076 state->back += last.bits; 1120 last = here; 1123 (BITS(last.bits + last.op) >> last.bits)]; 1127 DROPBITS(last.bits); [all …]
|
A D | inflate.h | 86 int last; /* true if processing last block */ member
|
/optee_os/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/core/arch/arm/include/mm/ |
A D | pgt_cache.h | 61 vaddr_t begin, vaddr_t last); 68 vaddr_t begin, vaddr_t last); 73 vaddr_t last __unused) in pgt_flush_ctx_range()
|
/optee_os/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/core/crypto/ |
A D | sm3.c | 200 uint32_t last, padn; in sm3_final() local 210 last = ctx->total[0] & 0x3F; in sm3_final() 211 padn = (last < 56) ? (56 - last) : (120 - last); in sm3_final()
|
/optee_os/core/arch/arm/kernel/ |
A D | secure_partition.c | 155 struct sp_session *last = NULL; in new_session_id() local 158 last = TAILQ_LAST(open_sessions, sp_sessions_head); in new_session_id() 159 if (last) in new_session_id() 160 id = last->endpoint_id + 1; in new_session_id()
|
/optee_os/lib/libmbedtls/mbedtls/library/ |
A D | md4.c | 328 uint32_t last, padn; in mbedtls_md4_finish_ret() local 339 last = ctx->total[0] & 0x3F; in mbedtls_md4_finish_ret() 340 padn = ( last < 56 ) ? ( 56 - last ) : ( 120 - last ); in mbedtls_md4_finish_ret()
|
A D | ripemd160.c | 395 uint32_t last, padn; in mbedtls_ripemd160_finish_ret() local 406 last = ctx->total[0] & 0x3F; in mbedtls_ripemd160_finish_ret() 407 padn = ( last < 56 ) ? ( 56 - last ) : ( 120 - last ); in mbedtls_ripemd160_finish_ret()
|
/optee_os/core/drivers/crypto/crypto_api/include/ |
A D | drvcrypt_cipher.h | 39 bool last; /* Last block to handle */ member
|
/optee_os/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/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/core/kernel/ |
A D | tee_ta_manager.c | 617 struct tee_ta_session *last = NULL; in new_session_id() local 621 last = TAILQ_LAST(open_sessions, tee_ta_session_head); in new_session_id() 622 if (last) { in new_session_id() 624 id = last->id + 1; in new_session_id()
|
/optee_os/core/drivers/crypto/stm32/ |
A D | cipher.c | 67 return stm32_cryp_update(&c->cryp, dupdate->last, in stm32_cipher_update()
|
/optee_os/core/drivers/crypto/crypto_api/cipher/ |
A D | cipher.c | 137 .last = last_block, in cipher_update()
|
/optee_os/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/core/mm/ |
A D | vm.c | 171 vaddr_t last = ROUNDUP(r->va + r->size, CORE_MMU_PGDIR_SIZE); in rem_um_region() local 188 last = MIN(last, ROUNDDOWN(r2->va, CORE_MMU_PGDIR_SIZE)); in rem_um_region() 196 if (begin >= last) in rem_um_region()
|
/optee_os/out/arm/ldelf/ |
A D | ldelf.dmp | 5541 36c0: 9a9f3084 csel x4, x4, xzr, cc // cc = lo, ul, last 5590 3740: 9a9f3084 csel x4, x4, xzr, cc // cc = lo, ul, last 5699 3860: 9a9f3093 csel x19, x4, xzr, cc // cc = lo, ul, last 5753 38d8: 9a9f3093 csel x19, x4, xzr, cc // cc = lo, ul, last 6082 3c5c: 9a9f3346 csel x6, x26, xzr, cc // cc = lo, ul, last 6140 3d00: 9a9f3323 csel x3, x25, xzr, cc // cc = lo, ul, last 6346 3f44: 9a9f3000 csel x0, x0, xzr, cc // cc = lo, ul, last 6472 40b8: 9a9f32a2 csel x2, x21, xzr, cc // cc = lo, ul, last 6535 4178: 9a9f3323 csel x3, x25, xzr, cc // cc = lo, ul, last 6677 432c: 9a9f3000 csel x0, x0, xzr, cc // cc = lo, ul, last [all …]
|
/optee_os/ |
A D | MAINTAINERS | 26 3. The last entry ("THE REST") lists the overall maintainers (M:) and the
|
/optee_os/lib/libutils/isoc/ |
A D | bget.doc | 108 and bgetr() (the last two permit the allocation of buffers initialised
|