Home | History | Annotate | Download | only in src

Lines Matching defs:nof

10989   int nof = NumberOfElements() + n;
10994 if (nod <= (capacity - nof) >> 1) {
10995 int needed_free = nof >> 1;
10996 if (nof + needed_free <= capacity) return this;
11004 Allocate(nof * 2, pretenure ? TENURED : NOT_TENURED);
11015 int nof = NumberOfElements();
11019 if (nof > (capacity >> 2)) return this;
11024 int at_least_room_for = nof;