HomeSort by relevance Sort by last modified time
    Searched refs:allocated (Results 76 - 100 of 328) sorted by null

1 2 34 5 6 7 8 91011>>

  /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 );
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
compute_memory_pool.c 253 int64_t allocated = 0; local
292 allocated += item->size_in_dw;
296 if (pool->size_in_dw < allocated+unallocated) {
297 compute_memory_grow_pool(pool, pipe, allocated+unallocated);
308 (pool->size_in_dw - allocated);
346 allocated += item->size_in_dw;
  /external/mesa3d/src/gallium/drivers/r600/
compute_memory_pool.c 253 int64_t allocated = 0; local
292 allocated += item->size_in_dw;
296 if (pool->size_in_dw < allocated+unallocated) {
297 compute_memory_grow_pool(pool, pipe, allocated+unallocated);
308 (pool->size_in_dw - allocated);
346 allocated += item->size_in_dw;
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
multisect1.asm 23 ; at run-time to memory dynamically allocated with
  /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/valgrind/main/gdbserver_tests/
mcsignopass.stderr.exp 17 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
mcsigpass.stderr.exp 17 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
mcwatchpoints.stderr.exp 22 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
  /external/valgrind/main/memcheck/tests/
partiallydefinedeq.stderr.exp 13 total heap usage: ... allocs, ... frees, ... bytes allocated
  /external/qemu/hw/
smc91c111.c 35 /* Bitmask of allocated packets. */
36 int allocated; member in struct:__anon27235
74 qemu_put_be32(f, s->allocated);
110 s->allocated = qemu_get_be32(f);
175 if (s->allocated == (1 << NUM_PACKETS) - 1) {
180 if ((s->allocated & (1 << i)) == 0)
183 s->allocated |= 1 << i;
226 /* Release the memory allocated to a packet. */
229 s->allocated &= ~(1 << packet);
308 s->allocated = 0
    [all...]
  /external/bluetooth/bluedroid/stack/avct/
avct_int.h 66 UINT8 allocated; /* 0, not allocated. index+1, otherwise. */ member in struct:__anon3473
77 UINT8 allocated; /* 0, not allocated. index+1, otherwise. */ member in struct:__anon3474
93 UINT8 allocated; /* 0, not allocated. index+1, otherwise. */ member in struct:__anon3475
109 UINT8 allocated; /* Whether LCB/BCB is allocated */ member in struct:__anon3476
  /external/chromium/chrome/browser/resources/net_internals/
socketsview.js 9 * - For each pool with allocated sockets or connect jobs, shows all its
10 * groups with any allocated sockets.
  /external/chromium/third_party/libjingle/source/talk/base/
asynctcpsocket.h 46 virtual SocketAddress GetLocalAddress(bool* allocated) const;
  /external/chromium_org/chrome/common/extensions/docs/examples/api/processes/process_monitor/
popup.js 66 var allocated = process.jsMemoryAllocated / 1024;
68 table += "<td>" + allocated.toFixed(2) + "K (" + used.toFixed(2) +
  /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/third_party/skia/src/core/
SkWriter32.cpp 152 size_t allocated = block->fAllocatedSoFar; local
153 memcpy(dst, block->base(), allocated);
154 dst = (char*)dst + allocated;
157 SkDEBUGCODE(total += allocated;)
  /external/expat/tests/
minicheck.h 61 int allocated; member in struct:TCase
  /external/harfbuzz/src/
harfbuzz-buffer.h 66 HB_UInt allocated; member in struct:HB_BufferRec_
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-buffer.h 66 HB_UInt allocated; member in struct:HB_BufferRec_
  /external/libvorbis/vq/
vqgen.h 35 long allocated; member in struct:vqgen
  /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/skia/src/core/
SkWriter32.cpp 152 size_t allocated = block->fAllocatedSoFar; local
153 memcpy(dst, block->base(), allocated);
154 dst = (char*)dst + allocated;
157 SkDEBUGCODE(total += allocated;)
  /ndk/tests/device/test-stlport_shared-exception/jni/
unroll1.cpp 350 Node(const Interval &owned, const Interval &allocated)
351 : domain_m(owned), allocated_m(allocated) {}
353 const Interval &allocated() const { return allocated_m; } function in class:Node
367 return node_m.allocated();
  /ndk/tests/device/test-stlport_static-exception/jni/
unroll1.cpp 350 Node(const Interval &owned, const Interval &allocated)
351 : domain_m(owned), allocated_m(allocated) {}
353 const Interval &allocated() const { return allocated_m; } function in class:Node
367 return node_m.allocated();
  /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:__anon62271

Completed in 1207 milliseconds

1 2 34 5 6 7 8 91011>>