Home
last modified time | relevance | path

Searched refs:nof (Results 1 – 21 of 21) sorted by relevance

/third_party/node/deps/v8/src/objects/
Dordered-hash-table.cc71 int nof = table->NumberOfElements(); in EnsureGrowable() local
74 if ((nof + nod) < capacity) return table; in EnsureGrowable()
97 int nof = table->NumberOfElements(); in Shrink() local
99 if (nof >= (capacity >> 2)) return table; in Shrink()
190 int nof = table->NumberOfElements(); in Add() local
192 int new_entry = nof + table->NumberOfDeletedElements(); in Add()
198 table->SetNumberOfElements(nof + 1); in Add()
342 int nof = table.NumberOfElements(); in Delete() local
351 table.SetNumberOfElements(nof - 1); in Delete()
396 int nof = table->NumberOfElements(); in Add() local
[all …]
Dswiss-name-dictionary.cc27 int nof = table->NumberOfElements(); in DeleteEntry() local
28 table->SetNumberOfElements(nof - 1); in DeleteEntry()
189 int nof = table->NumberOfElements(); in Shrink() local
191 if (nof >= (capacity >> 2)) return table; in Shrink()
Dstring-table.cc37 int nof = number_of_elements + number_of_additional_elements; in StringTableHasSufficientCapacityToAdd() local
41 if ((nof < capacity) && in StringTableHasSufficientCapacityToAdd()
42 ((number_of_deleted_elements <= (capacity - nof) / 2))) { in StringTableHasSufficientCapacityToAdd()
43 int needed_free = nof / 2; in StringTableHasSufficientCapacityToAdd()
44 if (nof + needed_free <= capacity) return true; in StringTableHasSufficientCapacityToAdd()
Dswiss-name-dictionary-inl.h516 int nof = table->NumberOfElements(); in Add() local
518 int new_enum_index = nof + nod; in Add()
522 table->SetNumberOfElements(nof + 1); in Add()
Dhash-table-inl.h125 void HashTableBase::SetNumberOfElements(int nof) { in SetNumberOfElements() argument
126 set(kNumberOfElementsIndex, Smi::FromInt(nof)); in SetNumberOfElements()
Dtransitions.cc534 int nof = in EnsureHasFullTransitionArray() local
536 Handle<TransitionArray> result = isolate->factory()->NewTransitionArray(nof); in EnsureHasFullTransitionArray()
539 if (nof == 1) { in EnsureHasFullTransitionArray()
Dmap.cc2030 int nof = map->NumberOfOwnDescriptors(); in CopyAddDescriptor() local
2032 DescriptorArray::CopyUpTo(isolate, descriptors, nof, 1); in CopyAddDescriptor()
2125 int nof = in EquivalentToForTransition() local
2133 return this_descriptors.IsEqualUpTo(that_descriptors, nof); in EquivalentToForTransition()
Dhash-table.h106 inline void SetNumberOfElements(int nof); in NON_EXPORTED_BASE()
Dobjects.cc5883 int nof = number_of_elements + number_of_additional_elements; in HasSufficientCapacityToAdd() local
5887 if ((nof < capacity) && in HasSufficientCapacityToAdd()
5888 ((number_of_deleted_elements <= (capacity - nof) / 2))) { in HasSufficientCapacityToAdd()
5889 int needed_free = nof / 2; in HasSufficientCapacityToAdd()
5890 if (nof + needed_free <= capacity) return true; in HasSufficientCapacityToAdd()
6396 int nof = table->NumberOfElements() + 1; in Put() local
6397 int capacity = ObjectHashTable::ComputeCapacity(nof * 2); in Put()
/third_party/node/deps/v8/src/runtime/
Druntime-object.cc175 int nof = receiver_map->NumberOfOwnDescriptors(); in DeleteObjectPropertyFast() local
176 if (nof == 0) return false; in DeleteObjectPropertyFast()
177 InternalIndex descriptor(nof - 1); in DeleteObjectPropertyFast()
190 if (parent_map->NumberOfOwnDescriptors() != nof - 1) return false; in DeleteObjectPropertyFast()
/third_party/node/deps/v8/src/builtins/
Dbuiltins-internal-gen.cc617 TNode<Smi> nof = GetNumberOfElements<NameDictionary>(properties); in DictionarySpecificDelete() local
618 TNode<Smi> new_nof = SmiSub(nof, SmiConstant(1)); in DictionarySpecificDelete()
/third_party/node/deps/v8/tools/
Dparse-processor.mjs537 // Stores the nof bytes per function nesting level.
539 // Max nof bytes encountered at any nesting level.
/third_party/node/deps/v8/src/codegen/
Dcode-stub-assembler.cc8774 TNode<Smi> nof = GetNumberOfElements<Dictionary>(dictionary); in Add() local
8775 TNode<Smi> new_nof = SmiAdd(nof, SmiConstant(1)); in Add()
9361 TNode<Uint32T> nof = in DescriptorLookup() local
9363 Lookup<DescriptorArray>(unique_name, descriptors, nof, if_found, in DescriptorLookup()
15356 TVARIABLE(Uint32T, nof, Uint32Constant(0)); in LoadSwissNameDictionaryNumberOfElements()
15358 nof = mta.Load(meta_table, in LoadSwissNameDictionaryNumberOfElements()
15363 return ChangeInt32ToIntPtr(nof.value()); in LoadSwissNameDictionaryNumberOfElements()
15404 TNode<Uint32T> nof = mta.Load( in SwissNameDictionaryIncreaseElementCountOrBailout() local
15409 TNode<Uint32T> used = Uint32Add(nof, nod); in SwissNameDictionaryIncreaseElementCountOrBailout()
15411 TNode<Uint32T> inc_nof = Uint32Add(nof, Uint32Constant(1)); in SwissNameDictionaryIncreaseElementCountOrBailout()
[all …]
/third_party/pcre2/pcre2/
DRunGrepTest.bat171 (pushd %srcdir% & %pcre2grep% -Mixn "complete pair\nof lines" ./testdata/grepinputx & popd) >>testt…
/third_party/node/deps/v8/src/ic/
Daccessor-assembler.cc1438 TNode<UintPtrT> nof = in HandleStoreICTransitionMapHandlerCase() local
1440 CSA_DCHECK(this, WordNotEqual(nof, IntPtrConstant(0))); in HandleStoreICTransitionMapHandlerCase()
1445 IntPtrConstant(DescriptorArray::ToKeyIndex(-1)), IntPtrMul(nof, factor))); in HandleStoreICTransitionMapHandlerCase()
/third_party/typescript/tests/baselines/reference/
DcompletionsCommentsClass.baseline1846 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
DcompletionsCommentsFunctionDeclaration.baseline1720 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
6167 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
10106 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
DcompletionsCommentsFunctionExpression.baseline1807 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
6181 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
11033 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
15191 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
DcompletionsCommentsClassMembers.baseline2875 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
10216 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
15310 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
22651 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
26996 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
32605 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
36904 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
42467 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
48076 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
53685 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
[all …]
DcompletionsCommentsCommentParsing.baseline4200 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
10706 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
17753 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
24031 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
30689 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
37195 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
44144 …float values. The contents are initialized to 0. If the requested number\r\nof bytes could not be …
/third_party/astc-encoder/Test/Images/HDRIHaven/HDR-RGB/
Dhdr-rgb-canarywharf.hdr521 …Gzz�o}||~��������~|�ttqrqrw�����}~~~����}�~���||{zxl�wvtuvuuj�up�onof�p�q�sr��d\VQ���_�}x…