Home
last modified time | relevance | path

Searched refs:at_least_space_for (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/
Dfactory.cc1547 int at_least_space_for = map->NumberOfOwnDescriptors() * 2 + initial_size; in NewJSGlobalObject() local
1549 GlobalDictionary::New(isolate(), at_least_space_for); in NewJSGlobalObject()
Dobjects.cc17056 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()
Dbuiltins.cc1358 uint32_t at_least_space_for = in Slow_ArrayConcat() local
1361 SeededNumberDictionary::New(isolate, at_least_space_for)); in Slow_ArrayConcat()
Dobjects.h3109 static inline int ComputeCapacity(int at_least_space_for);
3174 Isolate* isolate, int at_least_space_for,
3423 int at_least_space_for,
Dobjects-inl.h3103 int HashTableBase::ComputeCapacity(int at_least_space_for) { in ComputeCapacity() argument
3105 int capacity = base::bits::RoundUpToPowerOfTwo32(at_least_space_for * 2); in ComputeCapacity()