Home
last modified time | relevance | path

Searched refs:MAX (Results 1 – 8 of 8) sorted by relevance

/openthread-latest/third_party/mbedtls/repo/tests/include/test/
Dmacros.h248 #define MAX(x, y) ((x) > (y) ? (x) : (y))
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_psa_crypto_entropy.function11 #define MBEDTLS_PSA_INJECT_ENTROPY_MIN_SIZE MAX(MBEDTLS_ENTROPY_MIN_PLATFORM, \
Dtest_suite_psa_crypto_init.function12 MAX(MBEDTLS_ENTROPY_MIN_PLATFORM, MBEDTLS_ENTROPY_BLOCK_SIZE)
Dtest_suite_psa_its.function125 TEST_CALLOC(buffer, MAX(data1->len, data2->len));
Dtest_suite_ctr_drbg.function317 /* Call update with too much data (sizeof(entropy) > MAX(_SEED)_INPUT).
Dtest_suite_bignum_core.function641 size_t limbs = MAX(A.n, B.n);
754 size_t limbs = MAX(A.n, B.n);
Dtest_suite_psa_crypto.function9954 TEST_CALLOC(actual_output, MAX(expected_output1->len,
/openthread-latest/third_party/jlink/SEGGER_RTT_V640/RTT/
DSEGGER_RTT.c155 #ifndef MAX
156 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) macro