Home
last modified time | relevance | path

Searched refs:item_max (Results 1 – 3 of 3) sorted by relevance

/haiku/headers/private/media/
H A DTList.h10 : item_max(INIT_COUNT), in List()
33 item_max = other.item_max;
35 items = (value **)malloc(sizeof(value *) * item_max);
46 if (item_count == item_max) { in Insert()
47 item_max *= 2; in Insert()
48 items = (value **)realloc(items, sizeof(value *) * item_max); in Insert()
123 int item_max; variable
H A DTMap.h11 : item_max(INIT_COUNT), in Map()
34 item_max = other.item_max;
36 items = (ent **)malloc(sizeof(ent *) * item_max);
48 if (item_count == item_max) { in Insert()
49 item_max *= 2; in Insert()
50 items = (ent **)realloc(items, sizeof(ent *) * item_max); in Insert()
161 int item_max; variable
/haiku/src/add-ons/media/media-add-ons/mixer/
H A DRtList.h25 item_max(INIT_COUNT), in RtList()
38 if (item_count == item_max) { in Create()
39 item_max += INC_COUNT; in Create()
40 rtm_realloc((void**)&items, sizeof(value) * item_max); in Create()
67 int item_max; variable