/third_party/node/deps/v8/src/wasm/ |
D | struct-types.h | 93 buffer_(zone->NewArray<ValueType>(static_cast<int>(field_count))), in Builder() 94 mutabilities_(zone->NewArray<bool>(static_cast<int>(field_count))) {} in Builder() 104 uint32_t* offsets = zone_->NewArray<uint32_t>(field_count_); in Build()
|
D | local-decl-encoder.cc | 21 byte* buffer = zone->NewArray<byte, LocalDeclEncoderBuffer>(Size() + size); in Prepend()
|
/third_party/node/deps/v8/src/utils/ |
D | allocation.h | 42 T* NewArray(size_t size) { in NewArray() function 54 T* NewArray(size_t size, T default_val) { in NewArray() function 55 T* result = reinterpret_cast<T*>(NewArray<uint8_t>(sizeof(T) * size)); in NewArray() 84 V8_INLINE T* NewArray(size_t length) { in NewArray() function
|
D | bit-vector.h | 104 data_.ptr_ = zone->NewArray<uintptr_t>(data_length_); in BitVector() 115 data_.ptr_ = zone->NewArray<uintptr_t>(data_length_); in BitVector() 153 data_.ptr_ = zone->NewArray<uintptr_t>(new_data_length); in Resize()
|
D | utils.cc | 94 result = NewArray<char>(len + 1); in ReadLine() 98 char* new_result = NewArray<char>(new_len); in ReadLine()
|
/third_party/node/deps/v8/src/zone/ |
D | zone.h | 118 T* NewArray(size_t length) { in NewArray() function 297 V8_INLINE T* NewArray(size_t length) { in NewArray() function 298 return zone()->NewArray<T, TypeTag>(length); in NewArray()
|
D | zone-utils.h | 22 T* data = zone->NewArray<T>(length); in CloneVector()
|
D | zone-allocator.h | 60 T* allocate(size_t length) { return zone_->NewArray<T>(length); } in allocate()
|
/third_party/node/deps/v8/src/codegen/ |
D | interface-descriptors.cc | 54 NewArray<MachineType>(types_length, MachineType::AnyTagged()); in InitializeTypes() 57 machine_types_ = NewArray<MachineType>(types_length); in InitializeTypes()
|
/third_party/node/deps/v8/src/compiler/ |
D | value-numbering-reducer.cc | 36 entries_ = temp_zone()->NewArray<Node*>(kInitialCapacity); in Reduce() 156 entries_ = temp_zone()->NewArray<Node*>(capacity_); in Grow()
|
D | loop-unrolling.cc | 104 Node** merge_inputs = tmp_zone->NewArray<Node*>(iteration_count); in UnrollLoop() 127 tmp_zone->NewArray<Node*>(iteration_count + 1); in UnrollLoop()
|
/third_party/node/deps/v8/src/profiler/ |
D | strings-storage.cc | 91 auto str_result = NewArray<char>(str_length); in GetSymbol() 123 char* cons_result = NewArray<char>(cons_length); in GetConsName()
|
/third_party/node/deps/v8/src/snapshot/ |
D | snapshot-data.cc | 15 data_ = NewArray<byte>(size); in AllocateData()
|
/third_party/node/deps/v8/src/strings/ |
D | string-stream.cc | 22 space_ = NewArray<char>(bytes); in allocate() 225 char* str = NewArray<char>(length_ + 1); in ToCString() 460 char* new_space = NewArray<char>(new_bytes); in grow()
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
D | uobject.h | 120 static void * NewArray(int size, int count);
|
/third_party/icu/icu4c/source/common/unicode/ |
D | uobject.h | 120 static void * NewArray(int size, int count);
|
/third_party/node/deps/icu-small/source/common/unicode/ |
D | uobject.h | 120 static void * NewArray(int size, int count);
|
/third_party/node/deps/v8/src/compiler-dispatcher/ |
D | optimizing-compile-dispatcher.h | 35 input_queue_ = NewArray<TurbofanCompilationJob*>(input_queue_capacity_); in OptimizingCompileDispatcher()
|
/third_party/node/deps/v8/src/maglev/ |
D | maglev-interpreter-frame-state.h | 80 info.zone()->NewArray<ValueNode*>(SizeFor(info, liveness))), in CompactInterpreterFrameState() 253 predecessors_(info.zone()->NewArray<BasicBlock*>(predecessor_count)), in MergePointInterpreterFrameState() 264 predecessors_(info.zone()->NewArray<BasicBlock*>(predecessor_count)), in MergePointInterpreterFrameState()
|
D | maglev-register-frame-array.h | 33 info.zone()->NewArray<T>(last_local.index() - last_param.index() + 1); in RegisterFrameArray()
|
/third_party/node/deps/v8/src/regexp/ |
D | regexp-stack.cc | 77 byte* new_memory = NewArray<byte>(size); in EnsureCapacity()
|
/third_party/node/deps/v8/src/handles/ |
D | local-handles.cc | 81 Address* block = NewArray<Address>(kHandleBlockSize); in AddBlock()
|
/third_party/node/deps/v8/src/regexp/experimental/ |
D | experimental.cc | 233 output_registers = NewArray<int32_t>(output_register_count); in Exec() 298 output_registers = NewArray<int32_t>(output_register_count); in OneshotExec()
|
/third_party/node/deps/v8/src/base/ |
D | hashmap.h | 25 V8_INLINE T* NewArray(size_t length) { in NewArray() function 200 impl_.map_ = impl_.allocator().template NewArray<Entry>(capacity()); in TemplateHashMapImpl() 401 impl_.map_ = impl_.allocator().template NewArray<Entry>(capacity); in Initialize()
|
/third_party/node/deps/v8/src/compiler/backend/ |
D | spill-placer.cc | 215 zone_->NewArray<Entry>(data()->code()->instruction_blocks().size()); in GetOrCreateIndexForLatestVreg() 219 vreg_numbers_ = zone_->NewArray<int>(kValueIndicesPerEntry); in GetOrCreateIndexForLatestVreg()
|