Lines Matching refs:std_r
1085 struct rte_ring *std_r = NULL, *exact_sz_r = NULL; in test_ring_with_exact_size() local
1097 std_r = test_ring_create("std", esize[i], ring_sz, in test_ring_with_exact_size()
1100 if (std_r == NULL) { in test_ring_with_exact_size()
1134 TEST_RING_VERIFY(rte_ring_get_size(std_r) <= in test_ring_with_exact_size()
1136 std_r, goto test_fail); in test_ring_with_exact_size()
1143 ret = test_ring_enqueue(std_r, cur_src, esize[i], 1, in test_ring_with_exact_size()
1145 TEST_RING_VERIFY(ret == 0, std_r, goto test_fail); in test_ring_with_exact_size()
1151 ret = test_ring_enqueue(std_r, cur_src, esize[i], 1, in test_ring_with_exact_size()
1153 TEST_RING_VERIFY(ret == -ENOBUFS, std_r, goto test_fail); in test_ring_with_exact_size()
1175 rte_ring_free(std_r); in test_ring_with_exact_size()
1179 std_r = NULL; in test_ring_with_exact_size()
1188 rte_ring_free(std_r); in test_ring_with_exact_size()