Home
last modified time | relevance | path

Searched refs:AllocateArray (Results 1 – 5 of 5) sorted by relevance

/third_party/node/deps/v8/src/compiler/
Dallocation-builder.h51 inline void AllocateArray(int length, MapRef map,
Djs-create-lowering.cc414 ab.AllocateArray(length, fixed_array_map); in ReduceJSCreateGeneratorObject()
785 ab.AllocateArray(register_count, fixed_array_map); in ReduceJSCreateAsyncFunctionObject()
898 ab.AllocateArray(arity, fixed_array_map); in ReduceJSCreateBoundFunction()
1048 aa.AllocateArray(2, MakeRef(broker(), factory()->fixed_array_map())); in ReduceJSCreateKeyValueArray()
1444 ab.AllocateArray(argument_count, fixed_array_map); in TryAllocateArguments()
1475 ab.AllocateArray(num_elements, fixed_array_map); in TryAllocateRestArguments()
1529 ab.AllocateArray(argument_count, fixed_array_map); in TryAllocateAliasedArguments()
1633 a.AllocateArray(capacity, MakeRef(broker(), elements_map), allocation); in AllocateElements()
1658 a.AllocateArray(capacity, MakeRef(broker(), elements_map), allocation); in AllocateElements()
1902 ab.AllocateArray(elements_length, elements_map, allocation); in TryAllocateFastLiteralElements()
Dallocation-builder-inl.h53 void AllocationBuilder::AllocateArray(int length, MapRef map, in AllocateArray() function
/third_party/protobuf/src/google/protobuf/
Ddescriptor.cc618 Type* AllocateArray(int count);
1180 Type* DescriptorPool::Tables::AllocateArray(int count) { in AllocateArray() function in google::protobuf::DescriptorPool::Tables
3282 inline void AllocateArray(int size, Type** output) { in AllocateArray() function in google::protobuf::DescriptorBuilder
3283 *output = tables_->AllocateArray<Type>(size); in AllocateArray()
3932 placeholder_file->enum_types_ = tables_->AllocateArray<EnumDescriptor>(1); in NewPlaceholderWithMutexHeld()
3946 placeholder_enum->values_ = tables_->AllocateArray<EnumValueDescriptor>(1); in NewPlaceholderWithMutexHeld()
3967 placeholder_file->message_types_ = tables_->AllocateArray<Descriptor>(1); in NewPlaceholderWithMutexHeld()
3983 tables_->AllocateArray<Descriptor::ExtensionRange>(1); in NewPlaceholderWithMutexHeld()
4215 AllocateArray(INPUT.NAME##_size(), &OUTPUT->NAME##s_); \
4414 tables_->AllocateArray<const FileDescriptor*>(proto.dependency_size()); in BuildFileImpl()
[all …]
/third_party/skia/third_party/externals/d3d12allocator/src/
DD3D12MemAlloc.cpp131 static T* AllocateArray(const ALLOCATION_CALLBACKS& allocs, size_t count) in AllocateArray() function
137 #define D3D12MA_NEW_ARRAY(allocs, type, count) new(D3D12MA::AllocateArray<type>((allocs), (count)))…
769 m_pArray(count ? AllocateArray<T>(allocationCallbacks, count) : NULL), in Vector()
777 m_pArray(src.m_Count ? AllocateArray<T>(src.m_AllocationCallbacks, src.m_Count) : NULL), in Vector()
853 … T* const newArray = newCapacity ? AllocateArray<T>(m_AllocationCallbacks, newCapacity) : NULL; in reserve()
878 … T* const newArray = newCapacity ? AllocateArray<T>(m_AllocationCallbacks, newCapacity) : NULL; in resize()
5131 WCHAR* result = AllocateArray<WCHAR>(GetAllocs(), length + 1); in BuildStatsString()
5724 WCHAR* result = AllocateArray<WCHAR>(m_Pimpl->m_AllocationCallbacks, length + 1); in BuildStatsString()