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

1 2 3 4

  /external/e2fsprogs/e2fsck/
mtrace.awk 5 $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[$2] != ""
    [all...]
region.c 28 struct region_el *allocated; member in struct:region_struct
48 for (r = region->allocated; r; r = next) {
69 * conflicts witih something that's already allocated, return
74 for (r = region->allocated, prev=NULL; r; prev = r, r = r->next) {
112 region->allocated = new_region;
160 for (r = region->allocated; r; r = r->next) {
  /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);
  /bionic/linker/
ba.h 33 unsigned allocated:1; /* 1 if allocated, 0 if free */ member in struct:ba_bits
48 /* the bitmap for the region indicating which entries are allocated
ba.c 36 #define BA_IS_FREE(index) (!(ba->bitmap[index].allocated))
67 ba->bitmap[curr].allocated = 0;
144 ba->bitmap[best_fit].allocated = 1;
  /external/dbus/dbus/
dbus-string-private.h 48 int allocated; /**< Allocated size of data */ member in struct:__anon3405
78 #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/protobuf/gtest/samples/
sample10_unittest.cc 66 static int allocated() { return allocated_; } function in class:__anon5689::Water
82 initially_allocated_ = Water::allocated();
87 int difference = Water::allocated() - initially_allocated_;
  /external/v8/test/cctest/
test-spaces.cc 107 int allocated; local
110 MemoryAllocator::AllocatePages(requested, &allocated, &faked_space);
112 CHECK(allocated > 0 && allocated <= 2);
113 total_pages += allocated;
123 MemoryAllocator::AllocatePages(requested, &allocated, &faked_space);
125 CHECK(allocated > 0 && allocated <= 2);
126 total_pages += allocated;
test-alloc.cc 172 // Plain old data class. Represents a block of allocated memory.
196 size_t allocated = 0; local
197 void* base = CodeRange::AllocateRawMemory(requested, &allocated);
198 blocks.Add(Block(base, static_cast<int>(allocated)));
199 current_allocated += static_cast<int>(allocated);
200 total_allocated += static_cast<int>(allocated);
  /external/bluetooth/glib/glib/gnulib/
vasnprintf.c 280 size_t allocated; local
286 allocated = *lengthp;
291 allocated = 0;
295 result is either == resultbuf or == NULL or malloc-allocated.
299 if ((needed) > allocated) \
303 allocated = (allocated > 0 ? 2 * allocated : 12); \
304 if ((needed) > allocated) \
305 allocated = (needed);
    [all...]
  /external/elfutils/libdw/
dwarf_getpubnames.c 30 size_t allocated = 0; local
41 if (cnt >= allocated)
43 allocated = MAX (10, 2 * allocated);
45 = (struct pubnames_s *) realloc (mem, allocated * entsize);
  /external/srec/portable/src/
pmemfixed.c 50 How is the memory space allocated to the fixed block pools?
62 How is the large memory block from the system allocated?
63 It can be allocated in one of three ways depending on compile time definitions. If you define
64 STATIC_MEMORY_POOL, it's allocated as a static array. If you define RTXC_PARTITION_MEMORY,
65 it's allocated from the HEAP_MAP memory partition. If you don't define anything, it's allocated
140 unsigned int allocated; member in struct:__anon7544
311 /* pHead has already been allocated, statically. Don't need to do anything. */
486 memStats[ii].allocated++;
493 if (memStats[ii].allocated > memStats[ii].max_alloc
    [all...]
  /external/e2fsprogs/intl/
vasnprintf.c 142 size_t allocated; local
170 allocated = *lengthp;
175 allocated = 0;
179 result is either == resultbuf or == NULL or malloc-allocated.
182 /* Ensures that allocated >= needed. Aborts through a jump to
185 if ((needed) > allocated) \
190 allocated = (allocated > 0 ? xtimes (allocated, 2) : 12); \
191 if ((needed) > allocated) \
    [all...]
  /external/skia/src/core/
SkWriter32.cpp 107 size_t allocated = block->fAllocated; local
108 memcpy(dst, block->base(), allocated);
109 dst = (char*)dst + allocated;
112 SkDEBUGCODE(total += allocated;)
  /external/dbus/tools/
dbus-cleanup-sockets.c 161 int allocated; local
164 allocated = 2;
165 entries = xmalloc (sizeof (SocketEntry*) * allocated);
184 if (n_entries == allocated)
186 allocated *= 2;
187 entries = xrealloc (entries, sizeof (SocketEntry*) * allocated);
  /external/qemu/slirp/
bootp.c 35 uint8_t allocated; member in struct:__anon6547
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:__anon6555
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/expat/tests/
minicheck.c 60 if (tc->allocated == tc->ntests) {
61 int nalloc = tc->allocated + 100;
69 tc->allocated = nalloc;
minicheck.h 60 int allocated; member in struct:TCase
  /external/bluetooth/glib/glib/
goption.c 66 } allocated; member in struct:__anon2147
579 * Returns: A newly allocated string containing the help text
1014 g_free (change->allocated.str);
1017 change->allocated.str = data;
1034 if (change->allocated.array.len == 0)
1037 change->allocated.array.data = g_new (gchar *, 2);
1040 change->allocated.array.data =
1041 g_renew (gchar *, change->allocated.array.data,
1042 change->allocated.array.len + 2);
1044 change->allocated.array.data[change->allocated.array.len] = data
    [all...]
  /external/qemu/hw/
smc91c111.c 33 /* Bitmask of allocated packets. */
34 int allocated; member in struct:__anon6494
98 if (s->allocated == (1 << NUM_PACKETS) - 1) {
103 if ((s->allocated & (1 << i)) == 0)
106 s->allocated |= 1 << i;
149 /* Release the memory allocated to a packet. */
152 s->allocated &= ~(1 << packet);
231 s->allocated = 0;
327 s->allocated = 0;
456 if (s->allocated & (1 << i)
    [all...]
  /external/bluetooth/glib/tests/
memchunks.c 91 gulong allocated; /* the number of atoms allocated from this area */ member in struct:_GMemArea
93 gchar mem[MEM_AREA_SIZE]; /* the mem array from which atoms get allocated
247 /* Determine which area this piece of memory is allocated from */
297 /* Update the number of allocated atoms count.
299 temp_area->allocated += 1;
345 mem_chunk->mem_area->allocated = 0;
354 mem_chunk->mem_area->allocated += 1;
407 temp_area->allocated -= 1;
409 if (temp_area->allocated == 0
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
line-map.h 77 unsigned int allocated; local
  /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
  /system/core/toolbox/
schedtop.c 25 size_t allocated; member in struct:thread_table
49 size_t size = table->allocated;
62 table->allocated = size;
67 if (table->active >= table->allocated)

Completed in 474 milliseconds

1 2 3 4