Lines Matching refs:data
36 int *values = heap->data; in pop_verify_heap()
67 .data = values, in test_heapify_all()
96 const int data[] = { 3, 1, 2, 4, 0x80000000, 0x7FFFFFFF, 0, in test_heap_push() local
98 int values[ARRAY_SIZE(data)]; in test_heap_push()
100 .data = values, in test_heap_push()
112 for (i = 0; i < ARRAY_SIZE(data); i++) in test_heap_push()
113 min_heap_push(&heap, &data[i], &funcs); in test_heap_push()
129 const int data[] = { 3, 1, 2, 4, 0x80000000, 0x7FFFFFFF, 0, in test_heap_pop_push() local
131 int values[ARRAY_SIZE(data)]; in test_heap_pop_push()
133 .data = values, in test_heap_pop_push()
146 for (i = 0; i < ARRAY_SIZE(data); i++) in test_heap_pop_push()
150 for (i = 0; i < ARRAY_SIZE(data); i++) in test_heap_pop_push()
151 min_heap_pop_push(&heap, &data[i], &funcs); in test_heap_pop_push()
156 for (i = 0; i < ARRAY_SIZE(data); i++) in test_heap_pop_push()
160 for (i = 0; i < ARRAY_SIZE(data); i++) { in test_heap_pop_push()