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

1 2 3 4 5 6 7

  /art/openjdkjvmti/
ti_allocator.h 56 static std::atomic<jlong> allocated; member in class:openjdkjvmti::AllocUtil
ti_allocator.cc 48 std::atomic<jlong> AllocUtil::allocated; member in class:openjdkjvmti::AllocUtil
55 *allocated_ptr = allocated.load();
78 allocated += malloc_usable_size(ret);
90 allocated -= malloc_usable_size(mem);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
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:__anon4341
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
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:__anon4648
  /external/mesa3d/src/compiler/glsl/
blob.h 53 /** Number of bytes that have been allocated for \c data. */
54 size_t allocated; member in struct:blob
94 * Space will be allocated within the blob for these byes, but the bytes will
106 * \return A pointer to space allocated within \blob to which \to_write bytes
  /external/python/cpython2/Include/
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:__anon32589
  /external/strace/
dyxlat.c 31 size_t allocated; member in struct:dyxlat
47 dyxlat->allocated = nmemb;
48 dyxlat->xlat = xgrowarray(NULL, &dyxlat->allocated, sizeof(struct xlat));
93 if (dyxlat->used >= dyxlat->allocated)
94 dyxlat->xlat = xgrowarray(dyxlat->xlat, &dyxlat->allocated,
  /external/valgrind/coregrind/m_demangle/
dyn-string.h 31 int allocated; /* The amount of space allocated for the string. */ member in struct:dyn_string
  /prebuilts/gdb/darwin-x86/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:__anon66480
  /prebuilts/gdb/linux-x86/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:__anon66602
  /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:__anon995
  /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:__anon1118
  /toolchain/binutils/binutils-2.27/include/
dyn-string.h 31 int allocated; /* The amount of space allocated for the string. */ member in struct:dyn_string
  /toolchain/binutils/binutils-2.27/libiberty/
xmalloc.c 122 size_t allocated; local
125 allocated = (char *) sbrk (0) - first_break;
127 allocated = (char *) sbrk (0) - (char *) &environ;
131 (unsigned long) size, (unsigned long) allocated);
  /external/compiler-rt/test/asan/TestCases/Posix/
new_array_cookie_with_new_from_class.cc 15 static void *allocated; member in struct:Foo
17 assert(!allocated);
18 return allocated = ::new char[s];
23 void *Foo::allocated; member in class:Foo
32 fprintf(stderr, "alloc: %p\n", Foo::allocated);
34 reinterpret_cast<uintptr_t>(Foo::allocated) + sizeof(void*));
35 *reinterpret_cast<uintptr_t*>(Foo::allocated) = 42;
  /external/elfutils/libdw/
dwarf_getpubnames.c 46 size_t allocated = 0; local
57 if (cnt >= allocated)
59 allocated = MAX (10, 2 * allocated);
61 = (struct pubnames_s *) realloc (mem, allocated * entsize);
  /external/freetype/src/psaux/
psarrst.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/python/cpython3/Include/
listobject.h 28 /* ob_item contains space for 'allocated' elements. The number
31 * 0 <= ob_size <= allocated
33 * ob_item == NULL implies ob_size == allocated == 0
34 * list.sort() temporarily sets allocated to -1 to detect mutations.
39 Py_ssize_t allocated; member in struct:__anon33152
  /system/libhidl/transport/allocator/1.0/default/
AshmemAllocator.cpp 71 uint64_t allocated; local
72 for (allocated = 0; allocated < count; allocated++) {
73 batch[allocated] = allocateOne(size);
75 if (batch[allocated].handle() == nullptr) {
76 LOG(WARNING) << "batchAllocate(" << size << ", " << count << ") fails @ #" << allocated; local
81 // batch[i].handle() != nullptr for i in [0, allocated - 1].
82 // batch[i].handle() == nullptr for i in [allocated, count - 1].
84 if (allocated < count)
    [all...]
  /art/runtime/base/
scoped_arena_allocator.cc 82 // Update how many bytes we have allocated into the arena so that the arena pool knows how
85 size_t allocated = static_cast<size_t>(top_ptr_ - top_arena_->Begin()); local
86 if (top_arena_->bytes_allocated_ < allocated) {
87 top_arena_->bytes_allocated_ = allocated;
94 // mark only the actually allocated memory as defined. That leaves red zones
  /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/google-breakpad/src/testing/gtest/samples/
sample10_unittest.cc 66 static int allocated() { return allocated_; } function in class:__anon20915::Water
82 initially_allocated_ = Water::allocated();
87 int difference = Water::allocated() - initially_allocated_;
  /external/googletest/googletest/samples/
sample10_unittest.cc 63 static int allocated() { return allocated_; } function in class:__anon21054::Water
79 initially_allocated_ = Water::allocated();
84 int difference = Water::allocated() - initially_allocated_;
  /external/oj-libjdwp/src/share/back/
bag.c 34 int allocated; /* space reserved */ member in struct:bag
51 theBag->allocated = initialAllocation;
60 oldBag->allocated);
96 int allocated = theBag->allocated; local
102 if (theBag->used >= allocated) {
104 allocated *= 2;
105 new_items = jvmtiAllocate(allocated * itemSize);
112 theBag->allocated = allocated;
    [all...]
  /external/protobuf/gtest/samples/
sample10_unittest.cc 66 static int allocated() { return allocated_; } function in class:__anon32087::Water
82 initially_allocated_ = Water::allocated();
87 int difference = Water::allocated() - initially_allocated_;

Completed in 775 milliseconds

1 2 3 4 5 6 7