Home | History | Annotate | Download | only in vm

Lines Matching full:alloc

25     u2          alloc;
65 pSet->alloc = initialSize;
125 if (pSet->count == pSet->alloc) {
129 if (pSet->alloc == 0)
130 pSet->alloc = 4;
132 pSet->alloc *= 2;
133 LOGVV("expanding %p to %d", pSet, pSet->alloc);
134 newList = (const void**)realloc(pSet->list, pSet->alloc * sizeof(void*));
136 ALOGE("Failed expanding ptr set (alloc=%d)", pSet->alloc);