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

/external/v8/src/
H A Dfactory.cc72 Handle<StringDictionary> Factory::NewStringDictionary(int at_least_space_for) { argument
73 ASSERT(0 <= at_least_space_for);
75 StringDictionary::Allocate(at_least_space_for),
81 int at_least_space_for) {
82 ASSERT(0 <= at_least_space_for);
84 SeededNumberDictionary::Allocate(at_least_space_for),
90 int at_least_space_for) {
91 ASSERT(0 <= at_least_space_for);
93 UnseededNumberDictionary::Allocate(at_least_space_for),
98 Handle<ObjectHashSet> Factory::NewObjectHashSet(int at_least_space_for) { argument
80 NewSeededNumberDictionary( int at_least_space_for) argument
89 NewUnseededNumberDictionary( int at_least_space_for) argument
106 NewObjectHashTable(int at_least_space_for) argument
1318 NewMapCache(int at_least_space_for) argument
[all...]
H A Dfactory.h58 int at_least_space_for);
61 int at_least_space_for);
63 Handle<StringDictionary> NewStringDictionary(int at_least_space_for);
65 Handle<ObjectHashSet> NewObjectHashSet(int at_least_space_for);
67 Handle<ObjectHashTable> NewObjectHashTable(int at_least_space_for);
501 Handle<MapCache> NewMapCache(int at_least_space_for);
H A Dobjects.h2755 int at_least_space_for,
2760 static int ComputeCapacity(int at_least_space_for);
3041 MUST_USE_RESULT static MaybeObject* Allocate(int at_least_space_for);
H A Dobjects-inl.h2058 int HashTable<Shape, Key>::ComputeCapacity(int at_least_space_for) { argument
2060 int capacity = RoundUpToPowerOf2(at_least_space_for * 2);
H A Dobjects.cc10868 MaybeObject* HashTable<Shape, Key>::Allocate(int at_least_space_for, argument
10870 int capacity = ComputeCapacity(at_least_space_for);
11075 Allocate(int at_least_space_for);
11078 Allocate(int at_least_space_for);
11951 MaybeObject* Dictionary<Shape, Key>::Allocate(int at_least_space_for) { argument
11954 HashTable<Shape, Key>::Allocate(at_least_space_for);
H A Druntime.cc9831 uint32_t at_least_space_for = estimate_nof_elements +
9834 isolate->factory()->NewSeededNumberDictionary(at_least_space_for));

Completed in 139 milliseconds