/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 | 25 int allocated; /* The amount of space allocated for the string. */ member in struct:dyn_string
|
/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/compiler-rt/lib/asan/ |
asan_malloc_linux.cc | 77 static size_t allocated; local 79 void *mem = (void*)&calloc_memory_for_dlsym[allocated]; 80 allocated += size_in_words; 81 CHECK(allocated < kCallocPoolSize);
|
asan_malloc_mac.cc | 98 static size_t allocated; local 100 void *mem = (void*)&calloc_memory_for_dlsym[allocated]; 101 allocated += size_in_words; 102 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);
|
/dalvik/vm/native/ |
java_lang_Runtime.cpp | 123 size_t allocated = dvmGetHeapDebugInfo(kVirtualHeapAllocated); local 124 long long result = size - allocated;
|
/external/chromium/testing/gtest/samples/ |
sample10_unittest.cc | 66 static int allocated() { return allocated_; } function in class:__anon4290::Water 82 initially_allocated_ = Water::allocated(); 87 int difference = Water::allocated() - initially_allocated_;
|
/external/dbus/dbus/ |
dbus-string-private.h | 46 int allocated; /**< Allocated size of data */ member in struct:__anon6057 76 #define DBUS_GENERIC_STRING_PREAMBLE(real) _dbus_assert ((real) != NULL); _dbus_assert (!(real)->invalid); _dbus_assert ((real)->len >= 0); _dbus_assert ((real)->allocated >= 0); _dbus_assert ((real)->max_length >= 0); _dbus_assert ((real)->len <= ((real)->allocated - _DBUS_STRING_ALLOCATION_PADDING)); _dbus_assert ((real)->len <= (real)->max_length)
|
/external/gtest/samples/ |
sample10_unittest.cc | 66 static int allocated() { return allocated_; } function in class:__anon6634::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:__anon10232::Water 82 initially_allocated_ = Water::allocated(); 87 int difference = Water::allocated() - initially_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) {
|
/external/expat/tests/ |
minicheck.h | 60 int allocated; member in struct:TCase
|
/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);
|
/bootable/bootloader/legacy/arch_msm7k/ |
smem.c | 39 unsigned allocated; member in struct:smem_heap_entry 88 if(he->allocated) { 90 n, he->allocated, he->offset, he->size);
|
/external/harfbuzz/src/ |
harfbuzz-buffer.h | 66 HB_UInt allocated; member in struct:HB_BufferRec_
|
/external/icu4c/common/ |
uhash.h | 187 UBool allocated; /* Was this UHashtable allocated? */ member in struct:UHashtable 716 * Deleter for any key or value allocated using uprv_malloc. Calls
|
/external/openssl/crypto/dso/ |
dso_lib.c | 197 int allocated = 0; local 207 allocated = 1; 250 if(allocated)
|
/external/qemu/slirp/ |
bootp.c | 35 uint8_t allocated; member in struct:__anon11268 60 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6)) 66 bc->allocated = 1; 81 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6)) { 82 bc->allocated = 1; 101 bc->allocated = 1;
|
/external/qemu/slirp-android/ |
bootp.c | 36 uint8_t allocated; member in struct:__anon11276 61 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6)) 67 bc->allocated = 1; 84 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6)) { 85 bc->allocated = 1; 104 bc->allocated = 1;
|
/external/skia/src/core/ |
SkWriter32.cpp | 125 size_t allocated = block->fAllocated; local 126 memcpy(dst, block->base(), allocated); 127 dst = (char*)dst + allocated; 130 SkDEBUGCODE(total += allocated;)
|
/external/v8/test/cctest/ |
test-alloc.cc | 193 // Plain old data class. Represents a block of allocated memory. 224 size_t allocated = 0; local 225 Address base = code_range->AllocateRawMemory(requested, &allocated); 227 blocks.Add(Block(base, static_cast<int>(allocated))); 228 current_allocated += static_cast<int>(allocated); 229 total_allocated += static_cast<int>(allocated);
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/ |
line-map.h | 77 unsigned int allocated; local
|