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

1 2 3 4 5 6

  /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/valgrind/main/coregrind/m_demangle/
dyn-string.h 32 int allocated; /* The amount of space allocated for the string. */ member in struct:dyn_string
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
listobject.h 27 /* ob_item contains space for 'allocated' elements. The number
30 * 0 <= ob_size <= allocated
32 * ob_item == NULL implies ob_size == allocated == 0
33 * list.sort() temporarily sets allocated to -1 to detect mutations.
38 Py_ssize_t allocated; member in struct:__anon62271
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
listobject.h 27 /* ob_item contains space for 'allocated' elements. The number
30 * 0 <= ob_size <= allocated
32 * ob_item == NULL implies ob_size == allocated == 0
33 * list.sort() temporarily sets allocated to -1 to detect mutations.
38 Py_ssize_t allocated; member in struct:__anon62394
  /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) {
stunserver.cc 101 // allocated yet.
102 bool allocated; local
103 talk_base::SocketAddress local_addr = socket_->GetLocalAddress(&allocated);
104 ASSERT(allocated);
tcpport.cc 101 bool allocated; local
102 talk_base::SocketAddress address = socket_->GetLocalAddress(&allocated);
103 if (allocated) {
  /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/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);
  /external/elfutils/libdw/
dwarf_getpubnames.c 70 size_t allocated = 0; local
81 if (cnt >= allocated)
83 allocated = MAX (10, 2 * allocated);
85 = (struct pubnames_s *) realloc (mem, allocated * entsize);
  /external/freetype/src/cff/
cf2arrst.h 49 /* need to define the struct here (not opaque) so it can be allocated by */
57 size_t allocated; /* items allocated */ member in struct:CF2_ArrStackRec_
59 size_t count; /* number of elements allocated */
60 size_t totalSize; /* total bytes 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;
  /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/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...]
  /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_;
  /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_;
  /dalvik/vm/native/
java_lang_Runtime.cpp 137 size_t allocated = dvmGetHeapDebugInfo(kVirtualHeapAllocated); local
138 long long result = size - allocated;
  /external/chromium_org/third_party/jemalloc/chromium/
jemalloc.h 60 jemalloc_bool opt_junk; /* Fill allocated/free memory with 0xa5/0x5a? */
64 jemalloc_bool opt_zero; /* Fill allocated memory with 0x0? */
80 size_t allocated; /* Bytes allocted (in use by application). */ member in struct:__anon13638
  /external/chromium_org/third_party/jemalloc/vendor/
jemalloc.h 60 jemalloc_bool opt_junk; /* Fill allocated/free memory with 0xa5/0x5a? */
64 jemalloc_bool opt_zero; /* Fill allocated memory with 0x0? */
80 size_t allocated; /* Bytes allocted (in use by application). */ member in struct:__anon13644
  /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/e2fsprogs/e2fsck/
region.c 31 struct region_el *allocated; member in struct:region_struct
51 for (r = region->allocated; r; r = next) {
72 * conflicts witih something that's already allocated, return
77 for (r = region->allocated, prev=NULL; r; prev = r, r = r->next) {
115 region->allocated = new_region;
163 for (r = region->allocated; r; r = r->next) {
  /external/expat/tests/
minicheck.h 61 int allocated; member in struct:TCase

Completed in 1168 milliseconds

1 2 3 4 5 6