Lines Matching refs:data_integer
55 data_integer *src = (data_integer *)s; in array_data_integer_copy()
56 data_integer *di = array_data_integer_init(); in array_data_integer_copy()
63 data_integer *di = (data_integer *)du; in array_data_integer_free()
69 data_integer *array_data_integer_init(void) { in array_data_integer_init()
75 data_integer *di = ck_calloc(1, sizeof(*di)); in array_data_integer_init()
370 static data_integer * array_insert_integer_at_pos(array * const a, const uint_fast32_t pos) { in array_insert_integer_at_pos()
372 data_integer *di = (data_integer *)array_get_unused_element(a,TYPE_INTEGER); in array_insert_integer_at_pos()
375 data_integer * const di = array_data_integer_init(); in array_insert_integer_at_pos()
377 return (data_integer *)array_insert_data_at_pos(a, (data_unset *)di, pos); in array_insert_integer_at_pos()
401 if (ipos >= 0) return &((data_integer *)a->sorted[ipos])->value; in array_get_int_ptr()
403 data_integer * const di =array_insert_integer_at_pos(a,(uint32_t)(-ipos-1)); in array_get_int_ptr()