Lines Matching refs:data
30 int *values = heap->data; in pop_verify_heap()
61 .data = values, in test_heapify_all()
89 const int data[] = { 3, 1, 2, 4, 0x80000000, 0x7FFFFFFF, 0, in test_heap_push() local
91 int values[ARRAY_SIZE(data)]; in test_heap_push()
93 .data = values, in test_heap_push()
104 for (i = 0; i < ARRAY_SIZE(data); i++) in test_heap_push()
105 min_heap_push_inline(&heap, &data[i], &funcs, NULL); in test_heap_push()
121 const int data[] = { 3, 1, 2, 4, 0x80000000, 0x7FFFFFFF, 0, in test_heap_pop_push() local
123 int values[ARRAY_SIZE(data)]; in test_heap_pop_push()
125 .data = values, in test_heap_pop_push()
137 for (i = 0; i < ARRAY_SIZE(data); i++) in test_heap_pop_push()
141 for (i = 0; i < ARRAY_SIZE(data); i++) in test_heap_pop_push()
142 min_heap_pop_push_inline(&heap, &data[i], &funcs, NULL); in test_heap_pop_push()
147 for (i = 0; i < ARRAY_SIZE(data); i++) in test_heap_pop_push()
151 for (i = 0; i < ARRAY_SIZE(data); i++) { in test_heap_pop_push()