Home
last modified time | relevance | path

Searched refs:test3 (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/tests/unit/crc/
Dmain.c20 uint8_t test3[] = { 'Z', 'e', 'p', 'h', 'y', 'r' }; in ZTEST() local
27 zassert_equal(crc32_c(0, test3, sizeof(test3), true, true), in ZTEST()
39 zassert_equal(crc32_c(0xB2983B83, test3, sizeof(test3), false, true), in ZTEST()
47 uint8_t test3[] = { 'Z', 'e', 'p', 'h', 'y', 'r' }; in ZTEST() local
51 zassert_equal(crc32_ieee(test3, sizeof(test3)), 0x20089AA4); in ZTEST()
58 uint8_t test3[] = { 'Z', 'e', 'p', 'h', 'y', 'r' }; in ZTEST() local
62 zassert_equal(crc24_pgp(test3, sizeof(test3)), 0x004662E9); in ZTEST()
108 uint8_t test3[] = { 'Z', 'e', 'p', 'h', 'y', 'r', 0, 0 }; in ZTEST() local
128 crc = crc16_ccitt(0, test3, sizeof(test3) - sizeof(uint16_t)); in ZTEST()
129 test3[sizeof(test3)-2] = (uint8_t)(crc >> 0); in ZTEST()
[all …]
/Zephyr-latest/tests/crypto/crypto_hash/src/
Dmain.c24 uint8_t test3[] = {0x5f, 0xd4}; variable