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

1 2 3 4 5

  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
syscalls_test.cc 106 // Test when resolved_path is allocated.
107 char* allocated = realpath("/tmp", NULL); local
108 EXPECT_STREQ("/tmp", allocated);
109 free(allocated);
  /external/strace/
scsi.c 42 int allocated, i; local
46 allocated = (len > max_strlen) ? max_strlen : len;
48 (buf = malloc(allocated)) == NULL ||
49 umoven(tcp, (unsigned long) addr, allocated, (char *) buf) < 0) {
55 for (i = 1; i < allocated; ++i)
58 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:__anon80737
  /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:__anon80860
  /external/chromium_org/third_party/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 */
  /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 (size_t i = 0; i < allocated.size(); i++) {
55 size_t num_bytes = allocated[i].first;
56 const char* p = allocated[i].second;
  /external/chromium_org/third_party/skia/src/core/
SkTObjectPool.h 18 * Constructors will be called on objects allocated by the pool at allocation
20 * All allocated objects will be destroyed and memory will be reclaimed when
37 * destroyed, at that point all memory allocated by grow will have been
73 * Returns the number of blocks of items the pool has allocated so far.
78 * Returns the number of items allocated by the pool in total.
80 int allocated() const { return fBlocks.getCount() * numItemsPerBlock; } function in class:SkTObjectPool
  /external/elfutils/0.153/libdw/
dwarf_getpubnames.c 67 size_t allocated = 0; local
78 if (cnt >= allocated)
80 allocated = MAX (10, 2 * allocated);
82 = (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 */
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/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 */
  /external/skia/src/core/
SkTObjectPool.h 18 * Constructors will be called on objects allocated by the pool at allocation
20 * All allocated objects will be destroyed and memory will be reclaimed when
37 * destroyed, at that point all memory allocated by grow will have been
73 * Returns the number of blocks of items the pool has allocated so far.
78 * Returns the number of items allocated by the pool in total.
80 int allocated() const { return fBlocks.getCount() * numItemsPerBlock; } function in class:SkTObjectPool
  /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;
  /art/compiler/utils/
scoped_arena_allocator.cc 84 // Update how many bytes we have allocated into the arena so that the arena pool knows how
87 size_t allocated = static_cast<size_t>(top_ptr_ - top_arena_->Begin()); local
88 if (top_arena_->bytes_allocated_ < allocated) {
89 top_arena_->bytes_allocated_ = allocated;
  /external/chromium_org/testing/gtest/samples/
sample10_unittest.cc 66 static int allocated() { return allocated_; } function in class:__anon14806::Water
82 initially_allocated_ = Water::allocated();
87 int difference = Water::allocated() - initially_allocated_;
  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 88 static uptr allocated; local
90 void *mem = (void*)&calloc_memory_for_dlsym[allocated];
91 allocated += size_in_words;
92 CHECK(allocated < kCallocPoolSize);
  /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/ltrace/
vect.h 37 size_t allocated; /* In elements. */ member in struct:vect
  /external/protobuf/gtest/samples/
sample10_unittest.cc 66 static int allocated() { return allocated_; } function in class:__anon32613::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:__anon43064::Water
82 initially_allocated_ = Water::allocated();
87 int difference = Water::allocated() - initially_allocated_;
  /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/compiler-rt/lib/lsan/
lsan_interceptors.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/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_libbacktrace.cc 43 uptr size, allocated; member in struct:__sanitizer::__anon23444::CplusV3DemangleData
50 if (needed > data->allocated) {
51 data->allocated *= 2;
52 if (needed > data->allocated)
53 data->allocated = needed;
54 char *buf = (char *)InternalAlloc(data->allocated);
71 data.allocated = 0;
74 if (data.size + 64 > data.allocated)
  /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) {

Completed in 1438 milliseconds

1 2 3 4 5