Lines Matching defs:nof
10996 int nof = NumberOfElements() + n;
11001 if (nod <= (capacity - nof) >> 1) {
11002 int needed_free = nof >> 1;
11003 if (nof + needed_free <= capacity) return this;
11011 Allocate(nof * 2, pretenure ? TENURED : NOT_TENURED);
11022 int nof = NumberOfElements();
11026 if (nof > (capacity >> 2)) return this;
11031 int at_least_room_for = nof;