Searched refs:test3 (Results 1 – 2 of 2) sorted by relevance
| /Zephyr-4.2.1/tests/unit/crc/ |
| D | main.c | 22 uint8_t test3[] = "Zephyr"; in ZTEST() local 28 zassert_equal(crc32_k_4_2_update(0xFFFFFFFF, test3, sizeof(test3) - 1), 0xacf334b2); in ZTEST() 43 uint8_t test3[] = { 'Z', 'e', 'p', 'h', 'y', 'r' }; in ZTEST() local 50 zassert_equal(crc32_c(0, test3, sizeof(test3), true, true), in ZTEST() 62 zassert_equal(crc32_c(0xB2983B83, test3, sizeof(test3), false, true), in ZTEST() 70 uint8_t test3[] = { 'Z', 'e', 'p', 'h', 'y', 'r' }; in ZTEST() local 74 zassert_equal(crc32_ieee(test3, sizeof(test3)), 0x20089AA4); in ZTEST() 81 uint8_t test3[] = { 'Z', 'e', 'p', 'h', 'y', 'r' }; in ZTEST() local 85 zassert_equal(crc24_pgp(test3, sizeof(test3)), 0x004662E9); in ZTEST() 140 uint8_t test3[] = { 'Z', 'e', 'p', 'h', 'y', 'r', 0, 0 }; in ZTEST() local [all …]
|
| /Zephyr-4.2.1/tests/crypto/crypto_hash/src/ |
| D | main.c | 32 uint8_t test3[] = {0x5f, 0xd4}; variable 286 static const uint8_t *inputs[] = {test1, test2, test3, test4, test5, test6, test7}; 287 static const size_t in_lens[] = {sizeof(test1), sizeof(test2), sizeof(test3), sizeof(test4),
|