Home
last modified time | relevance | path

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

/external/skia/src/pathops/
DSkOpContour.cpp17 SkPoint* ptStorage = SkOpTAllocator<SkPoint>::AllocateArray(allocator, 2); in addCurve()
22 SkPoint* ptStorage = SkOpTAllocator<SkPoint>::AllocateArray(allocator, 3); in addCurve()
30 SkPoint* ptStorage = SkOpTAllocator<SkPoint>::AllocateArray(allocator, 4); in addCurve()
DSkOpTAllocator.h22 static T* AllocateArray(SkChunkAlloc* allocator, int count) { in AllocateArray() function
/external/google-breakpad/src/client/
Dminidump_file_writer-inl.h57 inline bool TypedMDRVA<MDType>::AllocateArray(size_t count) { in AllocateArray() function
Dminidump_file_writer_unittest.cc88 ASSERT_TRUE(array.AllocateArray(count)); in WriteFile()
Dminidump_file_writer.h238 bool AllocateArray(size_t count);
/external/protobuf/src/google/protobuf/
Ddescriptor.cc442 template<typename Type> Type* AllocateArray(int count);
842 Type* DescriptorPool::Tables::AllocateArray(int count) { in AllocateArray() function in google::protobuf::DescriptorPool::Tables
2441 inline void AllocateArray(int size, Type** output) { in AllocateArray() function in google::protobuf::DescriptorBuilder
2442 *output = tables_->AllocateArray<Type>(size); in AllocateArray()
3012 tables_->AllocateArray<EnumDescriptor>(1); in NewPlaceholder()
3026 placeholder_enum->values_ = tables_->AllocateArray<EnumValueDescriptor>(1); in NewPlaceholder()
3045 tables_->AllocateArray<Descriptor>(1); in NewPlaceholder()
3060 tables_->AllocateArray<Descriptor::ExtensionRange>(1); in NewPlaceholder()
3247 AllocateArray(INPUT.NAME##_size(), &OUTPUT->NAME##s_); \
3395 tables_->AllocateArray<const FileDescriptor*>(proto.dependency_size()); in BuildFile()
[all …]
/external/v8/src/compiler/
Djs-typed-lowering.cc57 void AllocateArray(int length, Handle<Map> map, in AllocateArray() function in v8::internal::compiler::__anond45f4ca70111::AllocationBuilder
1962 a.AllocateArray(context_length, factory()->function_context_map()); in ReduceJSCreateFunctionContext()
2006 a.AllocateArray(Context::MIN_CONTEXT_SLOTS, factory()->with_context_map()); in ReduceJSCreateWithContext()
2031 a.AllocateArray(Context::MIN_CONTEXT_SLOTS + 1, in ReduceJSCreateCatchContext()
2064 a.AllocateArray(context_length, factory()->block_context_map()); in ReduceJSCreateBlockContext()
2708 a.AllocateArray(argument_count, factory()->fixed_array_map()); in AllocateArguments()
2738 a.AllocateArray(num_elements, factory()->fixed_array_map()); in AllocateRestArguments()
2776 aa.AllocateArray(argument_count, factory()->fixed_array_map()); in AllocateAliasedArguments()
2787 a.AllocateArray(mapped_count + 2, factory()->sloppy_arguments_elements_map()); in AllocateAliasedArguments()
2817 a.AllocateArray(capacity, elements_map, pretenure); in AllocateElements()
/external/google-breakpad/src/client/linux/minidump_writer/
Dminidump_writer.cc177 if (!dir.AllocateArray(kNumWriters)) in Dump()
737 if (!linkmap.AllocateArray(dso_count)) in WriteDSODebugStream()
/external/google-breakpad/src/client/solaris/handler/
Dminidump_generator.cc723 if (!dir.AllocateArray(writer_count)) in Write()
/external/v8/src/crankshaft/
Dhydrogen.h1730 HAllocate* AllocateArray(HValue* capacity,
1737 HAllocate* AllocateArray(HValue* capacity,
1741 HAllocate* AllocateArray(HValue* capacity,
Dhydrogen.cc2658 return array_builder->AllocateArray(length_argument, in BuildAllocateArrayFromLength()
2692 return array_builder->AllocateArray(capacity, max_alloc_length, length); in BuildAllocateArrayFromLength()
3446 return AllocateArray(capacity, in AllocateEmptyArray()
3452 HAllocate* HGraphBuilder::JSArrayBuilder::AllocateArray( in AllocateArray() function in v8::internal::HGraphBuilder::JSArrayBuilder
3457 return AllocateArray(capacity, in AllocateArray()
3464 HAllocate* HGraphBuilder::JSArrayBuilder::AllocateArray( in AllocateArray() function in v8::internal::HGraphBuilder::JSArrayBuilder
3473 HAllocate* array = AllocateArray(capacity, length_field, fill_mode); in AllocateArray()
3481 HAllocate* HGraphBuilder::JSArrayBuilder::AllocateArray( in AllocateArray() function in v8::internal::HGraphBuilder::JSArrayBuilder
/external/google-breakpad/src/client/mac/handler/
Dminidump_generator.cc236 if (!dir.AllocateArray(writer_count)) in Write()
/external/v8/src/
Dcode-stubs-hydrogen.cc1314 HValue* new_object = array_builder->AllocateArray(checked_length, in BuildArrayNArgumentsConstructor()