HomeSort by relevance Sort by last modified time
    Searched refs:allocated (Results 1 - 25 of 328) 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...]
  /external/chromium_org/third_party/WebKit/public/web/
WebMemoryUsageInfo.h 34 WebMemoryUsageInfo(const WebString& allocator, size_t allocated)
36 , allocatedBytes(allocated)
  /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 86 std::vector<void *> allocated; local
103 allocated.push_back(x);
118 for (uptr i = 0; i < allocated.size(); i++) {
119 void *x = allocated[i];
125 allocated.clear();
165 void *allocated[kNumAllocs]; local
169 allocated[i] = x;
175 void *m = a->GetMetaData(allocated[idx]);
179 cache.Deallocate(a, 1 + i % 50, allocated[i]);
337 char *allocated[kNumAllocs] local
428 std::vector<void*> allocated; local
492 void *allocated[kNumAllocs]; local
653 std::vector<void *> allocated; local
701 char *allocated[kNumAllocs]; local
729 char *allocated[kNumAllocs]; local
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/util/
arena_test.cc 19 std::vector<std::pair<size_t, char*> > allocated; local
48 allocated.push_back(std::make_pair(s, r));
54 for (int i = 0; i < allocated.size(); i++) {
55 size_t num_bytes = allocated[i].first;
56 const char* p = allocated[i].second;
  /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
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
low_level_alloc_unittest.cc 76 // all remaining allocated blocks are freed.
83 AllocMap allocated; local
110 it = allocated.find(rnd);
111 if (it != allocated.end()) {
118 allocated[rnd] = block_desc;
122 it = allocated.begin();
123 if (it != allocated.end()) {
128 allocated.erase(it);
134 while ((it = allocated.begin()) != allocated.end())
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
low_level_alloc_unittest.cc 76 // all remaining allocated blocks are freed.
83 AllocMap allocated; local
110 it = allocated.find(rnd);
111 if (it != allocated.end()) {
118 allocated[rnd] = block_desc;
122 it = allocated.begin();
123 if (it != allocated.end()) {
128 allocated.erase(it);
134 while ((it = allocated.begin()) != allocated.end())
    [all...]
  /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/freetype/src/cff/
cf2arrst.c 67 arrstack->allocated = 0;
83 arrstack->allocated = 0;
115 arrstack->allocated = numElements;
145 if ( numElements > arrstack->allocated )
217 if ( arrstack->count == arrstack->allocated )
221 arrstack, arrstack->allocated + arrstack->chunk ) )
  /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_org/gpu/command_buffer/service/
gl_surface_mock.h 28 MOCK_METHOD1(SetBackbufferAllocation, bool(bool allocated));
29 MOCK_METHOD1(SetFrontbufferAllocation, void(bool allocated));
  /external/chromium_org/ui/gl/
gl_surface.h 79 virtual bool SetBackbufferAllocation(bool allocated);
80 virtual void SetFrontbufferAllocation(bool allocated);
143 virtual bool SetBackbufferAllocation(bool allocated) OVERRIDE;
144 virtual void SetFrontbufferAllocation(bool allocated) OVERRIDE;
gl_surface.cc 122 bool GLSurface::SetBackbufferAllocation(bool allocated) {
126 void GLSurface::SetFrontbufferAllocation(bool allocated) {
233 bool GLSurfaceAdapter::SetBackbufferAllocation(bool allocated) {
234 return surface_->SetBackbufferAllocation(allocated);
237 void GLSurfaceAdapter::SetFrontbufferAllocation(bool allocated) {
238 surface_->SetFrontbufferAllocation(allocated);
  /external/chromium/testing/gtest/samples/
sample10_unittest.cc 66 static int allocated() { return allocated_; } function in class:__anon5709::Water
82 initially_allocated_ = Water::allocated();
87 int difference = Water::allocated() - initially_allocated_;
  /external/chromium_org/testing/gtest/samples/
sample10_unittest.cc 66 static int allocated() { return allocated_; } function in class:__anon12497::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:__anon20298::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:__anon26249::Water
82 initially_allocated_ = Water::allocated();
87 int difference = Water::allocated() - initially_allocated_;
  /hardware/samsung_slsi/exynos5/libmemtrack/
mali.c 78 unsigned int allocated; local
83 &line_pid, &allocated, &unmapped);
86 records[0].size_in_bytes = (allocated - unmapped) * PAGE_SIZE;
  /ndk/sources/third_party/googletest/googletest/samples/
sample10_unittest.cc 66 static int allocated() { return allocated_; } function in class:__anon35081::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 83 static uptr allocated; local
85 void *mem = (void*)&calloc_memory_for_dlsym[allocated];
86 allocated += size_in_words;
87 CHECK(allocated < kCallocPoolSize);

Completed in 401 milliseconds

1 2 3 4 5 6 7 8 91011>>