Home
last modified time | relevance | path

Searched refs:ASSERT (Results 1 – 6 of 6) sorted by relevance

/optee_os/core/arch/arm/kernel/
H A Dkern.ld.S70 ASSERT(!(TEE_LOAD_ADDR & (SMALL_PAGE_SIZE - 1)),
212 ASSERT(!(ABSOLUTE(.) & (16 * 1024 - 1)), "align nozi to 16kB");
305 ASSERT(!(__flatmap_init_rx_start & (SMALL_PAGE_SIZE - 1)),
375 ASSERT(TEE_LOAD_ADDR >= TEE_RAM_START,
377 ASSERT(TEE_LOAD_ADDR < (TEE_RAM_START + TEE_RAM_PH_SIZE),
379 ASSERT((TEE_RAM_START + TEE_RAM_PH_SIZE - __init_end) >
393 ASSERT(. <= (TEE_RAM_START + (TEE_RAM_VA_SIZE * 8) / 9 - 8),
418 ASSERT(. <= (TEE_RAM_START + TEE_RAM_VA_SIZE),
448 ASSERT(SIZEOF(.rel) == 0, "Relocation entries not expected")
449 ASSERT(SIZEOF(.rela) == 0, "Relocation entries not expected")
[all …]
/optee_os/lib/libmbedtls/mbedtls/library/
H A Dchachapoly.c412 #undef ASSERT
414 #define ASSERT(cond, args) \ macro
443 ASSERT(0 == ret, ("setkey() error code: %i\n", ret)); in mbedtls_chachapoly_self_test()
454 ASSERT(0 == ret, ("crypt_and_tag() error code: %i\n", ret)); in mbedtls_chachapoly_self_test()
456 ASSERT(0 == memcmp(output, test_output[i], test_input_len[i]), in mbedtls_chachapoly_self_test()
459 ASSERT(0 == memcmp(mac, test_mac[i], 16U), in mbedtls_chachapoly_self_test()
H A Dchacha20.c445 #undef ASSERT
447 #define ASSERT(cond, args) \ macro
478 ASSERT(0 == ret, ("error code: %i\n", ret)); in mbedtls_chacha20_self_test()
480 ASSERT(0 == memcmp(output, test_output[i], test_lengths[i]), in mbedtls_chacha20_self_test()
H A Dpoly1305.c444 #undef ASSERT
446 #define ASSERT(cond, args) \ macro
474 ASSERT(0 == ret, ("error code: %i\n", ret)); in mbedtls_poly1305_self_test()
476 ASSERT(0 == memcmp(mac, test_mac[i], 16U), ("failed (mac)\n")); in mbedtls_poly1305_self_test()
/optee_os/core/arch/riscv/kernel/
H A Dkern.ld.S75 ASSERT(!(TEE_LOAD_ADDR & (SMALL_PAGE_SIZE - 1)),
243 ASSERT(. <= (TEE_RAM_START + TEE_RAM_VA_SIZE),
255 ASSERT(SIZEOF(.rel.dyn) == 0, "Relocation entries not expected")
256 ASSERT(SIZEOF(.rela.dyn) == 0, "Relocation entries not expected")
/optee_os/lib/libmbedtls/mbedtls/
H A DChangeLog2682 * Undefine the ASSERT macro before defining it locally, in case it is defined