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

1 23 4 5 6

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_mm.c 32 uint64_t allocated; member in struct:nouveau_mman
146 cache->allocated += size;
150 cache->allocated / 1024);
155 /* @return token to identify slab or NULL if we just allocated a new bo */
248 cache->allocated = 0;
  /external/chromium_org/v8/src/x64/
codegen-x64.cc 173 // Argument backing space is allocated on the stack above
292 Label allocated, new_backing_store, only_change_map, done; local
326 __ bind(&allocated);
367 __ jmp(&allocated);
  /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/mesa3d/src/gallium/drivers/nouveau/
nouveau_mm.c 32 uint64_t allocated; member in struct:nouveau_mman
146 cache->allocated += size;
150 cache->allocated / 1024);
155 /* @return token to identify slab or NULL if we just allocated a new bo */
248 cache->allocated = 0;
  /external/v8/src/x64/
codegen-x64.cc 142 // Argument backing space is allocated on the stack above
254 Label allocated, new_backing_store, only_change_map, done; local
283 __ bind(&allocated);
324 __ jmp(&allocated);
  /ndk/sources/host-tools/sed-4.2.1/sed/
utils.c 519 size_t allocated;
531 b->allocated = MIN_ALLOCATE;
557 size_t alen = b->allocated;
569 b->allocated = alen;
580 if (b->allocated - b->length < n)
601 if (b->allocated - b->length < 1)
515 size_t allocated; member in struct:buffer
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
interaction_based.hpp 114 virtual void allocated( const_string /*file*/, function in class:boost::itest::manager
214 ::boost::itest::manager::instance().allocated( l.m_file_name, l.m_line_num, res, s );
229 ::boost::itest::manager::instance().allocated( l.m_file_name, l.m_line_num, res, s );
  /system/core/cpio/
mkbootfs.c 281 int allocated = 8; local
285 (struct fs_config_entry*)malloc(allocated * sizeof(struct fs_config_entry));
293 if (used >= allocated) {
294 allocated *= 2;
296 canned_config, allocated * sizeof(struct fs_config_entry));
312 if (used >= allocated) {
313 ++allocated;
315 canned_config, allocated * sizeof(struct fs_config_entry));
  /system/core/toolbox/
schedtop.c 27 size_t allocated; member in struct:thread_table
51 size_t size = table->allocated;
64 table->allocated = size;
69 if (table->active >= table->allocated)
  /bootable/recovery/applypatch/
imgdiff.c 435 size_t allocated = 32768; local
437 curr->data = malloc(allocated);
453 strm.avail_out = allocated - curr->len;
456 curr->len = allocated - strm.avail_out;
458 allocated *= 2;
459 curr->data = realloc(curr->data, allocated);
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
relayserver.cc 199 bool allocated; local
201 remote_addr, socket->GetLocalAddress(&allocated));
202 ASSERT(allocated);
246 bool allocated; local
248 remote_addr, socket->GetLocalAddress(&allocated));
249 ASSERT(allocated);
446 bool allocated; local
448 external_sockets_[index]->GetLocalAddress(&allocated);
449 ASSERT(allocated);
495 bool allocated; local
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 86 std::vector<void *> allocated; local
103 allocated.push_back(x);
118 for (uptr i = 0; i < allocated.size(); i++) {
119 void *x = allocated[i];
125 allocated.clear();
165 void *allocated[kNumAllocs]; local
169 allocated[i] = x;
175 void *m = a->GetMetaData(allocated[idx]);
179 cache.Deallocate(a, 1 + i % 50, allocated[i]);
337 char *allocated[kNumAllocs] local
428 std::vector<void*> allocated; local
492 void *allocated[kNumAllocs]; local
653 std::vector<void *> allocated; local
701 char *allocated[kNumAllocs]; local
729 char *allocated[kNumAllocs]; local
    [all...]
  /external/llvm/unittests/IR/
PassManagerTest.cpp 113 int allocated; member in struct:llvm::__anon24221::PassTestBase
117 EXPECT_EQ(0, allocated);
118 allocated++;
129 PassTestBase() : P(ID), allocated(0) {
137 EXPECT_GT(allocated, 0);
138 allocated--;
161 EXPECT_EQ(0, PassTestBase<P>::allocated);
259 EXPECT_EQ(0, allocated);
  /external/qemu/
qemu-option.c 368 * Returns a pointer to the first element of dest (or the newly allocated copy)
408 * Returns a pointer to the first element of dest (or the newly allocated copy)
414 QEMUOptionParameter *allocated = NULL; local
425 dest = allocated = append_option_parameters(NULL, list);
458 // Only free the list if it was newly allocated
459 free_option_parameters(allocated);
  /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:__anon28245
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...]
  /hardware/ti/omap3/dspbridge/inc/
qosregistry.h 215 UINT allocated; /* size of heap in use (not free) */ member in struct:QOSRESOURCE_MEMORY
  /hardware/ti/omap3/dspbridge/libbridge/inc/
qosregistry.h 209 UINT allocated; /* size of heap in use (not free) */ member in struct:QOSRESOURCE_MEMORY
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
BinPacker.java 313 char allocated = 'A'; local
321 g.drawString("" + (allocated++),
  /sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
GLEScontext.h 90 allocated(false){};
95 bool allocated; member in struct:ArrayData
  /external/bluetooth/bluedroid/bta/ag/
bta_ag_main.c 305 ** Returns pointer to the scb, or NULL if none could be allocated.
352 BOOLEAN allocated = FALSE; local
373 allocated = TRUE;
378 if (!allocated)
409 ** Returns Pointer to scb or NULL if not allocated.
423 APPL_TRACE_WARNING1("ag scb idx %d not allocated", idx);
    [all...]
  /external/checkpolicy/
module_compiler.c 812 int allocated = 0; local
832 allocated = 1;
856 /* Update number of primitives if we allocated one. */
857 if (allocated)
    [all...]
  /external/chromium_org/cc/resources/
resource_provider.h 363 bool allocated; member in struct:cc::ResourceProvider::Resource
  /external/chromium_org/third_party/libxml/src/
triostr.c 96 size_t allocated; member in struct:_trio_string_t
1275 self->allocated = 0;
1298 ? ( (self->allocated == 0) ? 1 : self->allocated * 2 )
1299 : self->allocated + delta;
1305 self->allocated = new_size;
1327 return (self->allocated < length)
1328 ? TrioStringGrow(self, length - self->allocated)
1339 @return Newly allocated dynamic string, or NULL if memory allocation failed.
1355 self->allocated = initial_size
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkGlyphCache.cpp 646 size_t allocated = globals.fTotalMemoryUsed + cache->fMemoryUsed; local
648 if (allocated > budgeted) {
649 (void)InternalFreeCache(&globals, allocated - budgeted);
  /external/chromium_org/v8/src/arm/
builtins-arm.cc 386 Label rt_call, allocated; local
442 // Allocated the JSObject, now initialize the fields. Map is set to
471 // r0: offset of first field after pre-allocated fields
489 // allocated object if not fall through to runtime call if it is.
494 // The field instance sizes contains both pre-allocated property fields
504 // Done if no extra properties are to be allocated.
505 __ b(eq, &allocated);
568 // Continue with JSObject being successfully allocated
571 __ jmp(&allocated);
575 // allocated objects unused properties
    [all...]

Completed in 537 milliseconds

1 23 4 5 6