Home
last modified time | relevance | path

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

/external/v8/src/
Dfactory.h668 Handle<MapCache> NewMapCache(int at_least_space_for);
Dfactory.cc1561 int at_least_space_for = map->NumberOfOwnDescriptors() * 2 + initial_size; in NewGlobalObject() local
1563 NameDictionary::New(isolate(), at_least_space_for); in NewGlobalObject()
Dobjects.cc13732 int at_least_space_for, in New() argument
13735 DCHECK(0 <= at_least_space_for); in New()
13736 DCHECK(!capacity_option || base::bits::IsPowerOfTwo32(at_least_space_for)); in New()
13738 ? at_least_space_for in New()
13739 : ComputeCapacity(at_least_space_for); in New()
14010 New(Isolate*, int at_least_space_for, PretenureFlag pretenure);
14014 New(Isolate*, int at_least_space_for, PretenureFlag pretenure);
14874 int at_least_space_for, in New() argument
14876 DCHECK(0 <= at_least_space_for); in New()
14878 at_least_space_for, in New()
Dobjects.h3239 int at_least_space_for,
3245 static int ComputeCapacity(int at_least_space_for);
3556 int at_least_space_for,
Dobjects-inl.h3099 int HashTable<Derived, Shape, Key>::ComputeCapacity(int at_least_space_for) { in ComputeCapacity() argument
3101 int capacity = base::bits::RoundUpToPowerOfTwo32(at_least_space_for * 2); in ComputeCapacity()
Druntime.cc10700 uint32_t at_least_space_for = estimate_nof_elements + in RUNTIME_FUNCTION() local
10703 SeededNumberDictionary::New(isolate, at_least_space_for)); in RUNTIME_FUNCTION()