Lines Matching refs:spsc
18 ZTEST(spsc, test_produce_consume_size1) in ZTEST() argument
75 ZTEST(spsc, test_produce_consume_wrap_around) in ZTEST() argument
109 ZTEST(spsc, test_int_wrap_around) in ZTEST() argument
139 SPSC_DEFINE(spsc, uint32_t, 4);
211 ZTEST(spsc, test_spsc_threaded) in ZTEST() argument
217 &spsc, NULL, NULL, in ZTEST()
223 &spsc, NULL, NULL, in ZTEST()
233 ZTEST(spsc, test_spsc_throughput) in ZTEST() argument
247 x = spsc_acquire(&spsc); in ZTEST()
249 spsc_produce(&spsc); in ZTEST()
251 y = spsc_consume(&spsc); in ZTEST()
252 spsc_release(&spsc); in ZTEST()
270 spsc_reset(&spsc); in spsc_before()
273 ZTEST_SUITE(spsc, NULL, NULL, spsc_before, NULL, NULL);