Searched refs:allocated (Results 1 - 25 of 266) sorted by relevance

1234567891011

/external/e2fsprogs/e2fsck/
H A Dmtrace.awk5 $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[
[all...]
/external/chromium_org/third_party/WebKit/public/web/
H A DWebMemoryUsageInfo.h34 WebMemoryUsageInfo(const WebString& allocator, size_t allocated) argument
36 , allocatedBytes(allocated)
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dstandalone_malloc_test.cc21 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
[all...]
H A Dsanitizer_allocator_test.cc86 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[kNumAlloc 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/
H A Darena_test.cc19 std::vector<std::pair<size_t, char*> > allocated; local
48 allocated.push_back(std::make_pair(s, r));
54 for (size_t 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/
H A Dleak-pool.c17 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);
H A Dclireq_nofill.stderr.exp3 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/
H A Dlow_level_alloc_unittest.cc76 // 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
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dlow_level_alloc_unittest.cc76 // 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
[all...]
/external/bluetooth/bluedroid/stack/avct/
H A Davct_lcb.c200 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...]
H A Davct_ccb.c39 ** 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/chromium_org/third_party/freetype/src/cff/
H A Dcf2arrst.c67 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/freetype/src/cff/
H A Dcf2arrst.c67 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/
H A Dscsi.c19 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/
H A Dgl_surface_mock.h28 MOCK_METHOD1(SetBackbufferAllocation, bool(bool allocated));
29 MOCK_METHOD1(SetFrontbufferAllocation, void(bool allocated));
/external/chromium/testing/gtest/samples/
H A Dsample10_unittest.cc66 static int allocated() { return allocated_; } function in class:__anon3306::Water
82 initially_allocated_ = Water::allocated();
87 int difference = Water::allocated() - initially_allocated_;
/external/chromium_org/testing/gtest/samples/
H A Dsample10_unittest.cc66 static int allocated() { return allocated_; } function in class:__anon10824::Water
82 initially_allocated_ = Water::allocated();
87 int difference = Water::allocated() - initially_allocated_;
/external/gtest/samples/
H A Dsample10_unittest.cc66 static int allocated() { return allocated_; } function in class:__anon18815::Water
82 initially_allocated_ = Water::allocated();
87 int difference = Water::allocated() - initially_allocated_;
/external/protobuf/gtest/samples/
H A Dsample10_unittest.cc66 static int allocated() { return allocated_; } function in class:__anon24816::Water
82 initially_allocated_ = Water::allocated();
87 int difference = Water::allocated() - initially_allocated_;
/external/chromium_org/ui/gl/
H A Dgl_surface.cc122 bool GLSurface::SetBackbufferAllocation(bool allocated) { argument
126 void GLSurface::SetFrontbufferAllocation(bool allocated) { argument
233 bool GLSurfaceAdapter::SetBackbufferAllocation(bool allocated) { argument
234 return surface_->SetBackbufferAllocation(allocated);
237 void GLSurfaceAdapter::SetFrontbufferAllocation(bool allocated) { argument
238 surface_->SetFrontbufferAllocation(allocated);
H A Dgl_surface.h79 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;
/external/chromium/third_party/libjingle/source/talk/base/
H A Dasyncudpsocket.cc65 SocketAddress AsyncUDPSocket::GetLocalAddress(bool* allocated) const {
66 if (allocated)
67 *allocated = true;
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dudpport.cc63 bool allocated; local
64 talk_base::SocketAddress address = socket_->GetLocalAddress(&allocated);
65 if (allocated) {
/external/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cc83 static uptr allocated; local
85 void *mem = (void*)&calloc_memory_for_dlsym[allocated];
86 allocated += size_in_words;
87 CHECK(allocated < kCallocPoolSize);
/external/chromium_org/chrome/common/extensions/docs/examples/api/processes/process_monitor/
H A Dpopup.js66 var allocated = process.jsMemoryAllocated / 1024;
68 table += "<td>" + allocated.toFixed(2) + "K (" + used.toFixed(2) +

Completed in 2580 milliseconds

1234567891011