HomeSort by relevance Sort by last modified time
    Searched refs:allocated (Results 1 - 25 of 690) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/e2fsck/
mtrace.awk 5 $1 == "+" { if (allocated[$2] != "")
6 print "+", $2, "Alloc", NR, "duplicate:", allocated[$2];
8 allocated[$2] = $3;
10 $1 == "-" { if (allocated[$2] != "") {
11 allocated[$2] = "";
12 if (allocated[$2] != "")
13 print "DELETE FAILED", $2, allocated[$2];
17 $1 == "<" { if (allocated[$2] != "")
18 allocated[$2] = "";
22 $1 == ">" { if (allocated[$2] != ""
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-i386/
alloc.d 1 #name: Invalid allocated section
4 #warning: .*section `.foo' can't be allocated in segment 0.*
  /external/compiler-rt/test/asan/TestCases/Posix/
new_array_cookie_with_new_from_class.cc 15 static void *allocated; member in struct:Foo
17 assert(!allocated);
18 return allocated = ::new char[s];
23 void *Foo::allocated; member in class:Foo
32 fprintf(stderr, "alloc: %p\n", Foo::allocated);
34 reinterpret_cast<uintptr_t>(Foo::allocated) + sizeof(void*));
35 *reinterpret_cast<uintptr_t*>(Foo::allocated) = 42;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
basep-1b.d 2 #as: -linker-allocated-gregs
5 # Check that this test isn't mistreated with -linker-allocated-gregs.
basep-2b.d 2 #as: --no-predefined-syms -linker-allocated-gregs
5 # Check that this test isn't mistreated with -linker-allocated-gregs.
basep-3b.d 2 #as: -linker-allocated-gregs
5 # Check that this test isn't mistreated with -linker-allocated-gregs.
basep-4.d 2 #as: -linker-allocated-gregs
5 # The -linker-allocated-gregs option validates omissions of GREG.
basep-6.d 2 #as: -linker-allocated-gregs
5 # The -linker-allocated-gregs option validates omissions of GREG.
err-bpo4.s 3 # Base-plus-offset without -linker-allocated-gregs.
  /system/libhidl/transport/allocator/1.0/default/
AshmemAllocator.cpp 71 uint64_t allocated; local
72 for (allocated = 0; allocated < count; allocated++) {
73 batch[allocated] = allocateOne(size);
75 if (batch[allocated].handle() == nullptr) {
76 LOG(WARNING) << "batchAllocate(" << size << ", " << count << ") fails @ #" << allocated; local
81 // batch[i].handle() != nullptr for i in [0, allocated - 1].
82 // batch[i].handle() == nullptr for i in [allocated, count - 1].
84 if (allocated < count)
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
standalone_malloc_test.cc 21 vector<pair<char *, size_t> > allocated; local
22 allocated.reserve(kNumIters);
36 allocated.push_back(make_pair(x, size));
39 if (allocated.empty()) continue;
40 size_t slot = i % allocated.size();
41 char *p = allocated[slot].first;
43 size_t size = allocated[slot].second;
45 swap(allocated[slot], allocated.back());
46 allocated.pop_back()
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
gregldo1.s 1 # Use a symbolic register areg, presumably allocated by greg in another file.
bpo-19m.d 3 #as: -linker-allocated-gregs
7 # 223 (max) linker-allocated GREGs, four relocs merged for each register
8 # allocated.
bpo-15.d 3 #as: -linker-allocated-gregs
bpo-15m.d 3 #as: -linker-allocated-gregs
bpo-21.d 4 #as: -linker-allocated-gregs
bpo-21m.d 4 #as: -linker-allocated-gregs
bpo-7.d 4 #as: -linker-allocated-gregs
bpo-7m.d 4 #as: -linker-allocated-gregs
bpo-8.d 5 #as: -linker-allocated-gregs
bpo-8m.d 5 #as: -linker-allocated-gregs
  /external/oj-libjdwp/src/share/back/
bag.c 34 int allocated; /* space reserved */ member in struct:bag
51 theBag->allocated = initialAllocation;
60 oldBag->allocated);
96 int allocated = theBag->allocated; local
102 if (theBag->used >= allocated) {
104 allocated *= 2;
105 new_items = jvmtiAllocate(allocated * itemSize);
112 theBag->allocated = allocated;
    [all...]
  /external/valgrind/memcheck/tests/
leak-pool.c 17 size_t allocated; member in struct:pool
26 assert(p->used + n < p->allocated);
37 p->allocated = 4096;
39 p->buf = malloc(p->allocated);
41 memset(p->buf, 0, p->allocated);
43 (void) VALGRIND_MAKE_MEM_NOACCESS(p->buf, p->allocated);
  /external/jemalloc/include/jemalloc/internal/
base.h 13 void base_stats_get(tsdn_t *tsdn, size_t *allocated, size_t *resident,
  /art/openjdkjvmti/
ti_allocator.cc 48 std::atomic<jlong> AllocUtil::allocated; member in class:openjdkjvmti::AllocUtil
55 *allocated_ptr = allocated.load();
78 allocated += malloc_usable_size(ret);
90 allocated -= malloc_usable_size(mem);

Completed in 739 milliseconds

1 2 3 4 5 6 7 8 91011>>