Searched defs:at_least_space_for (Results 1 - 4 of 4) sorted by relevance

/external/v8/src/builtins/
H A Dbuiltins-array.cc1093 uint32_t at_least_space_for = local
1095 storage = SeededNumberDictionary::New(isolate, at_least_space_for);
/external/v8/src/
H A Dfactory.cc1685 int at_least_space_for = map->NumberOfOwnDescriptors() * 2 + initial_size; local
1687 GlobalDictionary::New(isolate(), at_least_space_for);
H A Dcode-stub-assembler.cc1716 Node* CodeStubAssembler::AllocateNameDictionary(int at_least_space_for) { argument
1717 return AllocateNameDictionary(IntPtrConstant(at_least_space_for));
1720 Node* CodeStubAssembler::AllocateNameDictionary(Node* at_least_space_for) { argument
1722 at_least_space_for,
1725 Node* capacity = HashTableComputeCapacity(at_least_space_for);
4071 Node* CodeStubAssembler::HashTableComputeCapacity(Node* at_least_space_for) { argument
4073 WordShl(at_least_space_for, IntPtrConstant(1)));
H A Dobjects.cc16848 int at_least_space_for,
16851 DCHECK(0 <= at_least_space_for);
16853 base::bits::IsPowerOfTwo32(at_least_space_for));
16856 ? at_least_space_for
16857 : ComputeCapacity(at_least_space_for);
17145 Isolate*, int at_least_space_for, PretenureFlag pretenure,
17150 uint32_t>::New(Isolate*, int at_least_space_for,
17954 Isolate* isolate, int at_least_space_for, PretenureFlag pretenure,
17956 DCHECK(0 <= at_least_space_for);
17957 Handle<Derived> dict = DerivedHashTable::New(isolate, at_least_space_for,
16846 New( Isolate* isolate, int at_least_space_for, MinimumCapacity capacity_option, PretenureFlag pretenure) argument
17953 New( Isolate* isolate, int at_least_space_for, PretenureFlag pretenure, MinimumCapacity capacity_option) argument
[all...]

Completed in 820 milliseconds