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

/external/chromium_org/v8/src/
H A Dfactory.h668 Handle<MapCache> NewMapCache(int at_least_space_for);
H A Dfactory.cc1561 int at_least_space_for = map->NumberOfOwnDescriptors() * 2 + initial_size; local
1563 NameDictionary::New(isolate(), at_least_space_for);
H A Dobjects.cc13732 int at_least_space_for,
13735 DCHECK(0 <= at_least_space_for);
13736 DCHECK(!capacity_option || base::bits::IsPowerOfTwo32(at_least_space_for));
13738 ? at_least_space_for
13739 : ComputeCapacity(at_least_space_for);
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,
14876 DCHECK(0 <= at_least_space_for);
14878 at_least_space_for,
13730 New( Isolate* isolate, int at_least_space_for, MinimumCapacity capacity_option, PretenureFlag pretenure) argument
14872 New( Isolate* isolate, int at_least_space_for, PretenureFlag pretenure) argument
[all...]
H A Dobjects.h3239 int at_least_space_for,
3245 static int ComputeCapacity(int at_least_space_for);
3556 int at_least_space_for,
H A Dobjects-inl.h3099 int HashTable<Derived, Shape, Key>::ComputeCapacity(int at_least_space_for) { argument
3101 int capacity = base::bits::RoundUpToPowerOfTwo32(at_least_space_for * 2);
H A Druntime.cc10700 uint32_t at_least_space_for = estimate_nof_elements +
10703 SeededNumberDictionary::New(isolate, at_least_space_for));

Completed in 349 milliseconds