Lines Matching refs:size_t
28 static size_t heapify_down (void **, size_t, size_t,
30 static void heapify_up (void **, size_t,
36 size_t capacity; /* Array size */
37 size_t count; /* Used as index to last element. Also is num of items. */
44 heap_alloc (int (*compare) (void const *, void const *), size_t n_reserve) in heap_alloc()
110 static size_t
111 heapify_down (void **array, size_t count, size_t initial, in heapify_down()
116 size_t parent = initial; in heapify_down()
119 size_t child = 2 * parent; in heapify_down()
138 heapify_up (void **array, size_t count, in heapify_up()
141 size_t k = count; in heapify_up()