Searched refs:buf3 (Results 1 – 2 of 2) sorted by relevance
| /spdk/test/unit/lib/util/crc16.c/ |
| H A D | crc16_ut.c | 40 char *buf3 = calloc(1, strlen(buf1) + strlen(buf2) + 1); in test_crc16_t10dif_copy() local 41 SPDK_CU_ASSERT_FATAL(buf3 != NULL); in test_crc16_t10dif_copy() 43 crc1 = spdk_crc16_t10dif_copy(crc1, buf3, buf1, strlen(buf1)); in test_crc16_t10dif_copy() 44 crc1 = spdk_crc16_t10dif_copy(crc1, buf3 + strlen(buf1), buf2, strlen(buf2)); in test_crc16_t10dif_copy() 47 crc2 = spdk_crc16_t10dif(0, buf3, strlen(buf3)); in test_crc16_t10dif_copy() 50 free(buf3); in test_crc16_t10dif_copy()
|
| /spdk/test/env/mem_callbacks/ |
| H A D | mem_callbacks.c | 90 void *buf1, *buf2, *buf3, *buf4; in test() local 120 buf3 = rte_malloc(NULL, len3, 0); in test() 121 verify_buffer(buf3, len3); in test() 133 printf("free %p %ju\n", buf3, len3); in test() 134 rte_free(buf3); in test()
|