Lines Matching full:act
53 uint32_t act; in check_crc32c() local
57 act = sse42_crc32c(crc32c, buffer, length); in check_crc32c()
58 ATF_CHECK_EQ_MSG(expected, act, in check_crc32c()
59 "sse42_crc32c expected 0x%08x, got 0x%08x", expected, act); in check_crc32c()
62 act = armv8_crc32c(crc32c, buffer, length); in check_crc32c()
63 ATF_CHECK_EQ_MSG(expected, act, in check_crc32c()
64 "armv8_crc32c expected 0x%08x, got 0x%08x", expected, act); in check_crc32c()
66 act = singletable_crc32c(crc32c, buffer, length); in check_crc32c()
67 ATF_CHECK_EQ_MSG(expected, act, in check_crc32c()
68 "singletable_crc32c expected 0x%08x, got 0x%08x", expected, act); in check_crc32c()
69 act = multitable_crc32c(crc32c, buffer, length); in check_crc32c()
70 ATF_CHECK_EQ_MSG(expected, act, in check_crc32c()
71 "multitable_crc32c expected 0x%08x, got 0x%08x", expected, act); in check_crc32c()