Searched refs:test_data_simple (Results 1 – 1 of 1) sorted by relevance
/aosp_15_r20/external/coreboot/tests/commonlib/bsd/ |
H A D | ipchksum-test.c | 9 static const uint8_t test_data_simple[] = { variable 13 static const size_t test_data_simple_sz = ARRAY_SIZE(test_data_simple); 29 uint16_t res = ipchksum(test_data_simple, 0); in test_ipchksum_zero_length() 52 res = ipchksum(test_data_simple, test_data_simple_sz); in test_ipchksum_simple_data() 57 memcpy(helper_buffer, test_data_simple, test_data_simple_sz); in test_ipchksum_simple_data() 77 memcpy(buffer + 0x6789, test_data_simple, test_data_simple_sz); in test_ipchksum_80kff() 96 uint16_t res_1 = ipchksum(test_data_simple, test_data_simple_sz / 2); in test_ipchksum_add() 97 uint16_t res_2 = ipchksum(test_data_simple + test_data_simple_sz / 2, in test_ipchksum_add() 106 res_1 = ipchksum(test_data_simple, 17); in test_ipchksum_add() 107 res_2 = ipchksum(test_data_simple + 17, test_data_simple_sz - 17); in test_ipchksum_add()
|