HomeSort by relevance Sort by last modified time
    Searched full:arena (Results 201 - 225 of 579) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/skia/src/core/
SkArenaAlloc.h 31 // SkArenaAlloc arena(block, almostAllCasesSize);
36 // SkArenaAlloc arena(block.get(), mostCasesSize, almostAllCasesSize);
40 // SkArenaAlloc arena(nullptr, 0, almostAllCasesSize);
47 // SkArenaAlloc arena (storage, almostAllCasesSize);
106 // The arena takes a ref for itself to account for the destructor. The sk_sp count can't
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
duration.pb.h 22 #include <google/protobuf/arena.h>
65 Duration* New(::google::protobuf::Arena* arena) const;
86 inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
87 return _internal_metadata_.arena();
source_context.pb.h 22 #include <google/protobuf/arena.h>
65 SourceContext* New(::google::protobuf::Arena* arena) const;
86 inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
87 return _internal_metadata_.arena();
map_field_inl.h 177 Arena* arena)
178 : TypeDefinedMapFieldBase<Key, T>(arena),
180 arena),
196 Arena* arena, const Message* default_entry)
197 : TypeDefinedMapFieldBase<Key, T>(arena),
199 arena),
400 Arena::CreateMessage<RepeatedPtrField<Message> >(
  /external/jemalloc/doc/
jemalloc.xml.in 301 <listitem><para>Use the arena specified by the index
303 were allocated via an arena other than the one specified. This
305 arena index in the valid range.</para></listitem>
430 omit merged arena and per arena statistics, respectively;
503 a small fixed per-arena overhead, and additionally, arenas manage memory
569 linkend="arena.i.chunk_hooks"><mallctl>arena.&lt;i&gt;.chunk_hooks</mallctl></link>).
    [all...]
  /external/protobuf/src/google/protobuf/
map_field_inl.h 177 Arena* arena)
178 : TypeDefinedMapFieldBase<Key, T>(arena),
180 arena),
196 Arena* arena, const Message* default_entry)
197 : TypeDefinedMapFieldBase<Key, T>(arena),
199 arena),
400 Arena::CreateMessage<RepeatedPtrField<Message> >(
extension_set_unittest.cc 40 #include <google/protobuf/arena.h>
325 ::google::protobuf::Arena arena1;
327 ::google::protobuf::Arena::CreateMessage<unittest::TestAllExtensions>(&arena1);
333 ::google::protobuf::Arena arena1;
335 ::google::protobuf::Arena::CreateMessage<unittest::TestAllExtensions>(&arena1);
343 ::google::protobuf::Arena arena1;
345 ::google::protobuf::Arena::CreateMessage<unittest::TestAllExtensions>(&arena1);
354 ::google::protobuf::Arena arena; local
356 ::google::protobuf::Arena::CreateMessage<unittest::TestAllExtensions>(&arena)
    [all...]
  /external/jemalloc/test/integration/
chunk.c 146 assert_d_eq(mallctlnametomib("arena.0.chunk_hooks", hooks_mib,
183 assert_d_eq(mallctlnametomib("arena.0.purge", purge_mib, &purge_miblen),
196 0, "Unexpected arena.%u.purge error", arena_ind);
217 0, "Unexpected arena.%u.purge error", arena_ind);
249 0, "Unexpected arena.%u.purge error", arena_ind);
254 0, "Unexpected arena.%u.purge error", arena_ind);
  /external/jemalloc/test/unit/
decay.c 240 assert_d_eq(mallctl("arena.0.purge", NULL, NULL, NULL, 0), 0,
266 assert_d_eq(mallctl("arena.0.decay", NULL, NULL, NULL, 0), 0,
267 "Unexpected arena.0.decay failure");
319 assert_d_eq(mallctl("arena.0.purge", NULL, NULL, NULL, 0), 0,
345 assert_d_eq(mallctl("arena.0.decay", NULL, NULL, NULL, 0), 0,
346 "Unexpected arena.0.decay failure");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
obmalloc.c 296 /* The address of the arena, as returned by malloc. Note that 0
299 * allocated arena.
306 /* The number of available pools in the arena: free pools + never-
311 /* The total number of pools in the arena, whether or not available. */
318 * arena, the nextarena member is used to link all unassociated
322 * When this arena_object is associated with an allocated arena
327 * Else this arena_object is associated with an allocated arena
366 Pools are carved off an arena's highwater mark (an arena_object's pool_address
410 pymalloc strives at all levels (arena, pool, and block) never to touch a piece
486 Arena management.
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
obmalloc.c 266 /* The address of the arena, as returned by malloc. Note that 0
269 * allocated arena.
276 /* The number of available pools in the arena: free pools + never-
281 /* The total number of pools in the arena, whether or not available. */
288 * arena, the nextarena member is used to link all unassociated
292 * When this arena_object is associated with an allocated arena
297 * Else this arena_object is associated with an allocated arena
336 Pools are carved off an arena's highwater mark (an arena_object's pool_address
380 pymalloc strives at all levels (arena, pool, and block) never to touch a piece
453 Arena management.
    [all...]
  /art/compiler/optimizing/
scheduler.h 155 SchedulingNode(HInstruction* instr, ArenaAllocator* arena, bool is_scheduling_barrier)
161 data_predecessors_(arena->Adapter(kArenaAllocScheduler)),
162 other_predecessors_(arena->Adapter(kArenaAllocScheduler)),
244 SchedulingGraph(const HScheduler* scheduler, ArenaAllocator* arena)
246 arena_(arena),
411 HScheduler(ArenaAllocator* arena,
414 : arena_(arena),
418 scheduling_graph_(this, arena),
  /art/compiler/utils/arm64/
assembler_arm64.h 64 explicit Arm64Assembler(ArenaAllocator* arena) : Assembler(arena) {}
  /external/jemalloc/include/jemalloc/internal/
stats.h 68 * the arena. Note that tcache may allocate an object, then recycle it
92 * the arena.
  /external/jemalloc/src/
android_je_mallinfo.c 17 /* This is an implementation that uses the same arena access pattern found
18 * in the arena_stats_merge function from src/arena.c.
  /external/ltp/testcases/kernel/syscalls/mallopt/
mallopt01.c 136 fprintf(stderr, "mallinfo.arena = %d\n", info.arena);
  /art/runtime/verifier/
reg_type_cache.h 42 // Use 8 bytes since that is the default arena allocator alignment.
47 explicit RegTypeCache(bool can_load_classes, ScopedArenaAllocator& arena);
171 // Add a string piece to the arena allocator so that it stays live for the lifetime of the
204 // Arena allocator.
  /development/ndk/platforms/android-21/include/
malloc.h 41 size_t arena; /* Total number of non-mmapped bytes currently allocated from OS. */ member in struct:mallinfo
  /external/libchrome/base/trace_event/
malloc_dump_provider.cc 134 DCHECK_GE(info.arena + info.hblkhd, info.uordblks);
136 // In case of Android's jemalloc |arena| is 0 and the outer pages size is
138 // |arena| + |hblkhd|. For more details see link: http://goo.gl/fMR8lF.
139 total_virtual_size = info.arena + info.hblkhd;
  /prebuilts/go/darwin-x86/src/runtime/
mem_darwin.go 61 throw("runtime: cannot map pages in arena address space")
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue13160.go 29 // Arena where we read and write pointers like crazy.
  /prebuilts/go/linux-x86/src/runtime/
mem_darwin.go 61 throw("runtime: cannot map pages in arena address space")
  /prebuilts/go/linux-x86/test/fixedbugs/
issue13160.go 29 // Arena where we read and write pointers like crazy.
  /prebuilts/ndk/r10/platforms/android-21/arch-arm/usr/include/
malloc.h 41 size_t arena; /* Total number of non-mmapped bytes currently allocated from OS. */ member in struct:mallinfo
  /prebuilts/ndk/r10/platforms/android-21/arch-arm64/usr/include/
malloc.h 41 size_t arena; /* Total number of non-mmapped bytes currently allocated from OS. */ member in struct:mallinfo

Completed in 1018 milliseconds

1 2 3 4 5 6 7 891011>>