/optee_os-3.20.0/lib/libutils/ext/ |
A D | fault_mitigation.c | 26 if (check->steps != steps) in ___ftmn_return_res() 38 if (check->steps != steps) in ___ftmn_expect_state() 40 check->steps += incr; in ___ftmn_expect_state() 82 struct ftmn_check *check, in ___ftmn_callee_done_check() argument 88 if (check->steps != steps) in ___ftmn_callee_done_check() 91 check->steps += incr; in ___ftmn_callee_done_check() 115 check->res = res ^ FTMN_DEFAULT_HASH; in ___ftmn_copy_linked_call_res() 116 check->steps += incr; in ___ftmn_copy_linked_call_res() 122 check->steps += incr; in ___ftmn_set_check_res() 132 check->steps += incr; in ___ftmn_set_check_res_not_zero() [all …]
|
/optee_os-3.20.0/lib/libutils/ext/include/ |
A D | fault_mitigation.h | 105 struct ftmn_check check; member 227 struct ftmn_check *check, enum ftmn_incr incr, 350 &ftmn->check, incr, steps, res); in __ftmn_callee_done_check() 364 ___ftmn_set_check_res(&ftmn->check, incr, res); in __ftmn_set_check_res() 596 ___ftmn_set_check_res_memcmp(&ftmn->check, incr, res, in ftmn_set_check_res_memcmp() 630 ftmn->check.steps += incr; in ftmn_checkpoint() 651 assert((ftmn->check.res ^ FTMN_DEFAULT_HASH) == res); in ftmn_expect_state() 652 assert(ftmn->check.steps == steps); in ftmn_expect_state() 654 ___ftmn_expect_state(&ftmn->check, incr, steps, res); in ftmn_expect_state() 681 assert(ftmn->check.steps == steps); in ftmn_return_res() [all …]
|
/optee_os-3.20.0/core/lib/zlib/ |
A D | inflate.c | 453 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len)) 455 # define UPDATE_CHECK(check, buf, len) adler32(check, buf, len) argument 460 # define CRC2(check, word) \ argument 464 check = crc32(check, hbuf, 2); \ 467 # define CRC4(check, word) \ argument 473 check = crc32(check, hbuf, 4); \ 775 state->check = crc32(state->check, next, copy); 797 state->check = crc32(state->check, next, copy); 819 state->check = crc32(state->check, next, copy); 1560 int check; [all …]
|
A D | inflate.h | 93 unsigned long check; /* protected copy of check value */ member
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/ecc/ |
A D | ecc_import_pkcs8.c | 20 static int s_der_flexi_sequence_cmp(const ltc_asn1_list *flexi, der_flexi_check *check) in s_der_flexi_sequence_cmp() argument 27 while(check->t != LTC_ASN1_EOL) { in s_der_flexi_sequence_cmp() 28 if (!LTC_ASN1_IS_TYPE(cur, check->t)) { in s_der_flexi_sequence_cmp() 31 if (check->pp != NULL) *check->pp = (ltc_asn1_list*)cur; in s_der_flexi_sequence_cmp() 33 check++; in s_der_flexi_sequence_cmp()
|
/optee_os-3.20.0/mk/ |
A D | checkconf.mk | 14 define check-conf-h 29 define check-conf-cmake 42 define check-conf-mk 171 cfg-check-value = \
|
A D | compile.mk | 85 check-cmd-$2 = $(CHECK) $$(comp-cppflags-$2) $$< 86 echo-check-$2 := $(cmd-echo-silent) 87 echo-check-cmd-$2 = $(cmd-echo) $$(subst \",\\\",$$(check-cmd-$2))
|
A D | config.mk | 586 $(call cfg-check-value,FTRACE_BUF_WHEN_FULL,shift stop wrap)
|
/optee_os-3.20.0/core/drivers/ |
A D | tzc380.c | 301 uint32_t check = 0; in tzc_regions_lockdown() local 305 check = io_read32(tzc.base + LOCKDOWN_RANGE_OFF); in tzc_regions_lockdown() 306 if (check != val) in tzc_regions_lockdown() 311 check = io_read32(tzc.base + LOCKDOWN_SELECT_OFF); in tzc_regions_lockdown() 312 if (check != val) in tzc_regions_lockdown()
|
/optee_os-3.20.0/core/ |
A D | core.mk | 93 $(call check-conf-h) 96 $(call check-conf-mk) 99 $(call check-conf-cmake)
|
/optee_os-3.20.0/core/arch/arm/kernel/ |
A D | link.mk | 63 ldargs-all_objs := -T $(link-script-dummy) --no-check-sections \ 77 unpaged-ldargs := -T $(link-script-dummy) --no-check-sections --gc-sections \ 106 init-ldargs := -T $(link-script-dummy) --no-check-sections --gc-sections \ 179 define check-link-objs 183 $(eval $(call check-link-objs))
|
/optee_os-3.20.0/core/arch/riscv/kernel/ |
A D | link.mk | 36 ldargs-all_objs := -T $(link-script) --no-check-sections \ 91 define check-link-objs
|
/optee_os-3.20.0/lib/libmbedtls/mbedtls/ |
A D | README.md | 64 make check 80 …lease check the Makefiles in `library/`, `programs/` and `tests/` for options to manually add or r… 113 …check for memory errors. (This includes LeakSanitizer, with recent version of gcc and clang.) (Wit… 115 - `MemSan`. This instruments the code with MemorySanitizer to check for uninitialised memory read…
|
A D | ChangeLog | 32 and possibly up to 571 bytes with a custom cookie check function. 336 * Remove outdated check-config.h check that prevented implementing the 397 double-check that custom session cache implementations return 1709 check in parsing the CertificateRequest message, 3376 * Use UTC time to check certificate validity. 3736 * Use UTC time to check certificate validity. 3946 * Added max length check for rsa_pkcs1_sign with PKCS#1 v2.1 3980 * AES code only check for Padlock once 4073 * Added max length check for rsa_pkcs1_sign with PKCS#1 v2.1 4294 the existing date check [all …]
|
/optee_os-3.20.0/core/drivers/pm/sam/ |
A D | at91_pm.c | 27 #error Invalid suspend mode, please check CFG_ATMEL_PM_SUSPEND_MODE
|
/optee_os-3.20.0/core/arch/arm/mm/ |
A D | core_mmu_lpae.c | 229 #error MAX_XLAT_TABLES is suspiciously large, please check
|
/optee_os-3.20.0/lib/libmbedtls/mbedtls/library/ |
A D | ssl_msg.c | 1546 volatile unsigned char* const check = data; in mbedtls_ssl_decrypt_buf() local 1561 const size_t equal = mbedtls_ct_size_bool_eq( check[idx], in mbedtls_ssl_decrypt_buf()
|
/optee_os-3.20.0/ |
A D | CHANGELOG.md | 734 * Make alignment check configurable ([#1586])
|