Searched refs:at_least_space_for (Results 1 – 6 of 6) sorted by relevance
/external/v8/src/ |
D | factory.h | 668 Handle<MapCache> NewMapCache(int at_least_space_for);
|
D | factory.cc | 1561 int at_least_space_for = map->NumberOfOwnDescriptors() * 2 + initial_size; in NewGlobalObject() local 1563 NameDictionary::New(isolate(), at_least_space_for); in NewGlobalObject()
|
D | objects.cc | 13732 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()
|
D | objects.h | 3239 int at_least_space_for, 3245 static int ComputeCapacity(int at_least_space_for); 3556 int at_least_space_for,
|
D | objects-inl.h | 3099 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()
|
D | runtime.cc | 10700 uint32_t at_least_space_for = estimate_nof_elements + in RUNTIME_FUNCTION() local 10703 SeededNumberDictionary::New(isolate, at_least_space_for)); in RUNTIME_FUNCTION()
|