Home | History | Annotate | Download | only in src

Lines Matching defs:nof

4892   int nof = map->NumberOfOwnDescriptors();
4896 nof = AppendUniqueCallbacks<DescriptorArrayAppender>(&callbacks, array, nof);
4897 map->SetNumberOfOwnDescriptors(nof);
9412 int nof = map->NumberOfOwnDescriptors();
9414 DescriptorArray::CopyUpTo(descriptors, nof, 1);
9419 ? LayoutDescriptor::New(map, new_descriptors, nof + 1)
11544 int nof = Min(NumberOfOwnDescriptors(), other->NumberOfOwnDescriptors());
11546 nof);
16347 int nof = table->NumberOfElements() + n;
16357 nof * 2,
16369 int nof = NumberOfElements() + number_of_additional_elements;
16374 if ((nof < capacity) && ((nod <= (capacity - nof) >> 1))) {
16375 int needed_free = nof >> 1;
16376 if (nof + needed_free <= capacity) return true;
16386 int nof = table->NumberOfElements();
16390 if (nof > (capacity >> 2)) return table;
16395 int at_least_room_for = nof;
17728 int nof = table->NumberOfElements() + 1;
17729 int capacity = ObjectHashTable::ComputeCapacity(nof * 2);
17868 int nof = table->NumberOfElements();
17871 if ((nof + nod) < capacity) return table;
17884 int nof = table->NumberOfElements();
17886 if (nof >= (capacity >> 2)) return table;
17940 int nof = table->NumberOfElements();
17942 int new_entry = nof + table->NumberOfDeletedElements();
17948 table->SetNumberOfElements(nof + 1);
17982 int nof = table->NumberOfElements();
17989 for (int old_entry = 0; old_entry < (nof + nod); ++old_entry) {
18012 new_table->SetNumberOfElements(nof);