Lines Matching refs:place
107 int *place = dynarray_int_emplace (&dyn); in test_int() local
108 TEST_VERIFY_EXIT (place != NULL); in test_int()
109 *place = base + i; in test_int()
235 char **place = dynarray_str_emplace (&dyn); in test_str() local
236 TEST_VERIFY_EXIT (place != NULL); in test_str()
237 TEST_VERIFY_EXIT (*place == NULL); in test_str()
238 *place = item; in test_str()
376 long *place = dynarray_long_emplace (&dyn); in test_long_init() local
377 TEST_VERIFY_EXIT (place != NULL); in test_long_init()
378 TEST_VERIFY (*place == 17); in test_long_init()
418 long *place = dynarray_long_noscratch_emplace (&dyn); in test_long_init() local
419 TEST_VERIFY_EXIT (place != NULL); in test_long_init()
420 TEST_VERIFY (*place == 23); in test_long_init()
432 long *place = dynarray_long_noscratch_emplace (&dyn); in test_long_init() local
433 TEST_VERIFY_EXIT (place != NULL); in test_long_init()
434 TEST_VERIFY (*place == 23); in test_long_init()
436 *place = 29; in test_long_init()