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

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

Completed in 37 milliseconds