/external/libchrome/crypto/third_party/nss/ |
chromium-nss.h | 73 CRYPTO_EXPORT SECStatus DerSignData(PLArenaPool *arena,
|
/external/protobuf/src/google/protobuf/ |
arena_nc_test.py | 33 """Negative compilation unit tests for arena API."""
|
dynamic_message_unittest.cc | 249 TEST_F(DynamicMessageTest, Arena) { 250 Arena arena; local 251 Message* message = prototype_->New(&arena);
|
map.h | 41 #include <google/protobuf/arena.h> 494 friend class ::google::protobuf::Arena; 529 explicit Map(Arena* arena, bool old_style = true) 530 : arena_(arena), 564 deprecated_elements_ = Arena::Create<DeprecatedInnerMap>( 569 Arena::Create<InnerMap>(arena_, 0, hasher(), Allocator(arena_)); 572 // re-implement std::allocator to use arena allocator for memory allocation. 587 explicit MapAllocator(Arena* arena) : arena_(arena) { [all...] |
dynamic_message.cc | 262 Message* New(::google::protobuf::Arena* arena) const; 263 ::google::protobuf::Arena* GetArena() const { return NULL; }; 283 DynamicMessage(const TypeInfo* type_info, ::google::protobuf::Arena* arena); 312 ::google::protobuf::Arena* arena) 576 Message* DynamicMessage::New(::google::protobuf::Arena* arena) const { 577 if (arena != NULL) [all...] |
map_field.cc | 127 repeated_field_ = Arena::CreateMessage<RepeatedPtrField<Message> >(arena_); 155 Arena* arena) 156 : TypeDefinedMapFieldBase<MapKey, MapValueRef>(arena), 273 Arena::CreateMessage<RepeatedPtrField<Message> >(
|
api.pb.h | 22 #include <google/protobuf/arena.h> 69 Api* New(::google::protobuf::Arena* arena) const; 90 inline ::google::protobuf::Arena* GetArenaNoVirtual() const { 91 return _internal_metadata_.arena(); 220 Method* New(::google::protobuf::Arena* arena) const; 241 inline ::google::protobuf::Arena* GetArenaNoVirtual() const { 242 return _internal_metadata_.arena(); 361 Mixin* New(::google::protobuf::Arena* arena) const [all...] |
/external/regex-re2/ |
Android.mk | 11 util/arena.cc \
|
/external/regex-re2/util/ |
arena.cc | 12 // Destroying the arena automatically calls Reset() 41 // Clears all the memory an arena is using. 98 // allocation -- this is equivalent to not using the arena at all. 110 // then it gets its own block in the arena
|
/external/syslinux/dos/ |
malloc.c | 88 /* Add the obligatory arena header, and round up */
|
/external/valgrind/helgrind/tests/ |
free_is_write.stderr.exp | 26 Address 0x........ is 5 bytes inside an unallocated block of size 16 in arena "client"
|
/frameworks/compile/mclinker/lib/Support/ |
Demangle.cpp | 44 arena<bs> a;
|
/art/compiler/optimizing/ |
intrinsics_x86.cc | 178 static void CreateFPToIntLocations(ArenaAllocator* arena, HInvoke* invoke, bool is64bit) { 179 LocationSummary* locations = new (arena) LocationSummary(invoke, 189 static void CreateIntToFPLocations(ArenaAllocator* arena, HInvoke* invoke, bool is64bit) { 190 LocationSummary* locations = new (arena) LocationSummary(invoke, 260 static void CreateIntToIntLocations(ArenaAllocator* arena, HInvoke* invoke) { 261 LocationSummary* locations = new (arena) LocationSummary(invoke, 268 static void CreateLongToIntLocations(ArenaAllocator* arena, HInvoke* invoke) { 269 LocationSummary* locations = new (arena) LocationSummary(invoke, 276 static void CreateLongToLongLocations(ArenaAllocator* arena, HInvoke* invoke) { 277 LocationSummary* locations = new (arena) LocationSummary(invoke [all...] |
code_generator_vector_x86.cc | 118 static void CreateVecUnOpLocations(ArenaAllocator* arena, HVecUnaryOperation* instruction) { 119 LocationSummary* locations = new (arena) LocationSummary(instruction); 291 static void CreateVecBinOpLocations(ArenaAllocator* arena, HVecBinaryOperation* instruction) { 292 LocationSummary* locations = new (arena) LocationSummary(instruction); 633 static void CreateVecShiftLocations(ArenaAllocator* arena, HVecBinaryOperation* instruction) { 634 LocationSummary* locations = new (arena) LocationSummary(instruction); 742 static void CreateVecMemLocations(ArenaAllocator* arena, 745 LocationSummary* locations = new (arena) LocationSummary(instruction);
|
code_generator_vector_x86_64.cc | 111 static void CreateVecUnOpLocations(ArenaAllocator* arena, HVecUnaryOperation* instruction) { 112 LocationSummary* locations = new (arena) LocationSummary(instruction); 284 static void CreateVecBinOpLocations(ArenaAllocator* arena, HVecBinaryOperation* instruction) { 285 LocationSummary* locations = new (arena) LocationSummary(instruction); 622 static void CreateVecShiftLocations(ArenaAllocator* arena, HVecBinaryOperation* instruction) { 623 LocationSummary* locations = new (arena) LocationSummary(instruction); 731 static void CreateVecMemLocations(ArenaAllocator* arena, 734 LocationSummary* locations = new (arena) LocationSummary(instruction);
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_message.cc | [all...] |
/art/compiler/linker/arm/ |
relative_patcher_thumb2.cc | 104 ArenaAllocator arena(&pool); 105 arm::Thumb2Assembler assembler(&arena);
|
/art/compiler/utils/x86/ |
jni_macro_assembler_x86.h | 37 explicit X86JNIMacroAssembler(ArenaAllocator* arena) : JNIMacroAssemblerFwd(arena) {}
|
/art/compiler/utils/x86_64/ |
jni_macro_assembler_x86_64.h | 37 explicit X86_64JNIMacroAssembler(ArenaAllocator* arena) 38 : JNIMacroAssemblerFwd<X86_64Assembler, PointerSize::k64>(arena) {}
|
/art/runtime/verifier/ |
reg_type-inl.h | 199 inline void* RegType::operator new(size_t size, ScopedArenaAllocator* arena) { 200 return arena->Alloc(size, kArenaAllocMisc);
|
/external/syslinux/core/mem/ |
free.c | 82 dprintf("invalid arena type: %d\n", ARENA_TYPE_GET(ah->a.attrs)); 104 * free list. Only the a.size field of the arena header is assumed
|
/external/protobuf/ |
CHANGES.txt | 17 - Several inlined methods in Arena were moved to out-of-line to improve 235 * Performance optimization of arena construction and destruction. 236 * Bug fixes for arena and maps support. 552 * Added arena allocation support (for both proto2 and proto3). 555 fraction of CPU-time spent in protobuf code and arena allocation is a 556 technique introduced to reduce this cost. With arena allocation, new 561 To enable arena support, add the following option to your .proto file: 571 To actually take advantage of arena allocation, you need to use the arena 572 APIs when creating messages. A quick example of using the arena API [all...] |
/external/protobuf/util/ |
CHANGES.txt | 17 - Several inlined methods in Arena were moved to out-of-line to improve 235 * Performance optimization of arena construction and destruction. 236 * Bug fixes for arena and maps support. 552 * Added arena allocation support (for both proto2 and proto3). 555 fraction of CPU-time spent in protobuf code and arena allocation is a 556 technique introduced to reduce this cost. With arena allocation, new 561 To enable arena support, add the following option to your .proto file: 571 To actually take advantage of arena allocation, you need to use the arena 572 APIs when creating messages. A quick example of using the arena API [all...] |
/external/protobuf/src/google/protobuf/compiler/ |
plugin.pb.h | 22 #include <google/protobuf/arena.h> 77 CodeGeneratorRequest* New(::google::protobuf::Arena* arena) const; 98 inline ::google::protobuf::Arena* GetArenaNoVirtual() const { 99 return _internal_metadata_.arena(); 201 CodeGeneratorResponse_File* New(::google::protobuf::Arena* arena) const; 222 inline ::google::protobuf::Arena* GetArenaNoVirtual() const { 223 return _internal_metadata_.arena(); 325 CodeGeneratorResponse* New(::google::protobuf::Arena* arena) const [all...] |
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/ |
api.pb.h | 22 #include <google/protobuf/arena.h> 69 Api* New(::google::protobuf::Arena* arena) const; 90 inline ::google::protobuf::Arena* GetArenaNoVirtual() const { 91 return _internal_metadata_.arena(); 220 Method* New(::google::protobuf::Arena* arena) const; 241 inline ::google::protobuf::Arena* GetArenaNoVirtual() const { 242 return _internal_metadata_.arena(); 361 Mixin* New(::google::protobuf::Arena* arena) const [all...] |