Searched refs:at_least_space_for (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/ |
D | factory.cc | 1547 int at_least_space_for = map->NumberOfOwnDescriptors() * 2 + initial_size; in NewJSGlobalObject() local 1549 GlobalDictionary::New(isolate(), at_least_space_for); in NewJSGlobalObject()
|
D | objects.cc | 17056 int at_least_space_for, in New() argument 17059 DCHECK(0 <= at_least_space_for); in New() 17060 DCHECK(!capacity_option || base::bits::IsPowerOfTwo32(at_least_space_for)); in New() 17063 ? at_least_space_for in New() 17064 : ComputeCapacity(at_least_space_for); in New() 17347 New(Isolate*, int at_least_space_for, PretenureFlag pretenure); 17351 New(Isolate*, int at_least_space_for, PretenureFlag pretenure); 18096 int at_least_space_for, in New() argument 18098 DCHECK(0 <= at_least_space_for); in New() 18100 at_least_space_for, in New()
|
D | builtins.cc | 1358 uint32_t at_least_space_for = in Slow_ArrayConcat() local 1361 SeededNumberDictionary::New(isolate, at_least_space_for)); in Slow_ArrayConcat()
|
D | objects.h | 3109 static inline int ComputeCapacity(int at_least_space_for); 3174 Isolate* isolate, int at_least_space_for, 3423 int at_least_space_for,
|
D | objects-inl.h | 3103 int HashTableBase::ComputeCapacity(int at_least_space_for) { in ComputeCapacity() argument 3105 int capacity = base::bits::RoundUpToPowerOfTwo32(at_least_space_for * 2); in ComputeCapacity()
|