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

1 2 3 4 5 6 7 8 9

  /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...]
  /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...]
sanitizer_allocator_test.cc 73 std::vector<void *> allocated; local
90 allocated.push_back(x);
105 for (uptr i = 0; i < allocated.size(); i++) {
106 void *x = allocated[i];
112 allocated.clear();
153 void *allocated[kNumAllocs]; local
156 allocated[i] = x;
160 sink = a->GetMetaData(allocated[i % kNumAllocs]);
163 cache.Deallocate(a, 1 + i % 50, allocated[i]);
281 char *allocated[kNumAllocs] local
364 std::vector<void*> allocated; local
428 void *allocated[kNumAllocs]; local
591 std::vector<void *> allocated; local
640 char *allocated[kNumAllocs]; local
    [all...]
  /external/valgrind/main/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 VALGRIND_MAKE_MEM_NOACCESS(p->buf, p->allocated);
clireq_nofill.stderr.exp 3 Address 0x........ is 0 bytes inside a recently re-allocated block of size 40 alloc'd
9 Address 0x........ is 0 bytes inside a recently re-allocated block of size 40 alloc'd
accounting.stderr.exp 6 total heap usage: 1 allocs, 1 frees, 1 bytes allocated
brk2.stderr.exp 5 total heap usage: ... allocs, ... frees, ... bytes allocated
bug287260.stderr.exp 6 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
erringfds.stderr.exp 6 total heap usage: ... allocs, ... frees, ... bytes allocated
leak-pool-0.stderr.exp 5 total heap usage: ... allocs, ... frees, ... bytes allocated
leak-pool-1.stderr.exp 5 total heap usage: ... allocs, ... frees, ... bytes allocated
leak-pool-2.stderr.exp 5 total heap usage: ... allocs, ... frees, ... bytes allocated
leak-pool-3.stderr.exp 5 total heap usage: ... allocs, ... frees, ... bytes allocated
  /external/bluetooth/bluedroid/stack/avct/
avct_lcb.c 200 AVCT_TRACE_EVENT3("LCB lcb=%d event=%s state=%s", p_lcb->allocated, avct_lcb_evt_str[event], avct_lcb_st_str[p_lcb->state]);
202 AVCT_TRACE_EVENT3("LCB lcb=%d event=%d state=%d", p_lcb->allocated, event, p_lcb->state);
243 AVCT_TRACE_EVENT3("BCB lcb=%d event=%s state=%s", p_bcb->allocated, avct_lcb_evt_str[event], avct_lcb_st_str[p_bcb->state]);
245 AVCT_TRACE_EVENT3("BCB lcb=%d event=%d state=%d", p_bcb->allocated, event, p_bcb->state);
286 /* if allocated lcb has matching lcb */
287 if (p_lcb->allocated && (!memcmp(p_lcb->peer_addr, bd_addr, BD_ADDR_LEN)))
311 ** Returns pointer to the lcb, or NULL if none could be allocated.
321 if (!p_lcb->allocated)
323 p_lcb->allocated = (UINT8)(i + 1);
325 AVCT_TRACE_DEBUG1("avct_lcb_alloc %d", p_lcb->allocated);
    [all...]
avct_ccb.c 39 ** Returns pointer to the ccb, or NULL if none could be allocated.
49 if (!p_ccb->allocated)
51 p_ccb->allocated = AVCT_ALOC_LCB;
137 /* verify ccb is allocated */
138 if (!p_ccb->allocated)
141 AVCT_TRACE_WARNING1("ccb %d not allocated", idx);
  /external/strace/
scsi.c 19 int allocated, i; local
23 allocated = (len > max_strlen) ? max_strlen : len;
25 (buf = malloc(allocated)) == NULL ||
26 umoven(tcp, (unsigned long) addr, allocated, (char *) buf) < 0) {
32 for (i = 1; i < allocated; ++i)
35 if (allocated != len)
  /external/chromium/testing/gtest/samples/
sample10_unittest.cc 66 static int allocated() { return allocated_; } function in class:__anon5244::Water
82 initially_allocated_ = Water::allocated();
87 int difference = Water::allocated() - initially_allocated_;
  /external/gtest/samples/
sample10_unittest.cc 66 static int allocated() { return allocated_; } function in class:__anon8282::Water
82 initially_allocated_ = Water::allocated();
87 int difference = Water::allocated() - initially_allocated_;
  /external/libvpx/libvpx/third_party/googletest/src/samples/
sample10_unittest.cc 66 static int allocated() { return allocated_; } function in class:__anon10906::Water
82 initially_allocated_ = Water::allocated();
87 int difference = Water::allocated() - initially_allocated_;
  /external/protobuf/gtest/samples/
sample10_unittest.cc 66 static int allocated() { return allocated_; } function in class:__anon12811::Water
82 initially_allocated_ = Water::allocated();
87 int difference = Water::allocated() - initially_allocated_;
  /external/chromium/third_party/libjingle/source/talk/base/
asyncudpsocket.cc 65 SocketAddress AsyncUDPSocket::GetLocalAddress(bool* allocated) const {
66 if (allocated)
67 *allocated = true;
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
udpport.cc 63 bool allocated; local
64 talk_base::SocketAddress address = socket_->GetLocalAddress(&allocated);
65 if (allocated) {
  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 82 static uptr allocated; local
84 void *mem = (void*)&calloc_memory_for_dlsym[allocated];
85 allocated += size_in_words;
86 CHECK(allocated < kCallocPoolSize);
  /external/valgrind/main/gdbserver_tests/
mcclean_after_fork.stderr.exp 10 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
mcmain_pic.stderr.exp 8 total heap usage: 1 allocs, 0 frees, 16 bytes allocated

Completed in 409 milliseconds

1 2 3 4 5 6 7 8 9