Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dnode-cache.cc19 enum { kInitialSize = 16u, kLinearProbe = 5u }; enumerator
69 size_t num_entries = kInitialSize + kLinearProbe; in Find()
71 size_ = kInitialSize; in Find()
73 Entry* entry = &entries_[hash & (kInitialSize - 1)]; in Find()
/external/v8/src/wasm/
Dwasm-module-builder.h23 static const uint32_t kInitialSize = 4096;
24 explicit ZoneBuffer(Zone* zone, size_t initial = kInitialSize)
/external/v8/src/crankshaft/
Dhydrogen-gvn.cc24 ResizeLists(kInitialSize, zone); in HInstructionMap()
25 Resize(kInitialSize, zone); in HInstructionMap()
52 static const int kInitialSize = 16; member in v8::internal::HInstructionMap
/external/protobuf/ruby/ext/google/protobuf_c/
Drepeated_field.c185 static int kInitialSize = 8; variable
194 self->capacity = kInitialSize; in RepeatedField_reserve()
/external/protobuf/src/google/protobuf/
Drepeated_field.h232 static const int kInitialSize = 0;
507 static const int kInitialSize = 0;
/external/v8/src/
Dfactory.cc2683 static const int kInitialSize = RegExpMatchInfo::kFirstCaptureIndex + in NewRegExpMatchInfo() local
2686 Handle<FixedArray> elems = NewFixedArray(kInitialSize); in NewRegExpMatchInfo()