HomeSort by relevance Sort by last modified time
    Searched full:allocation (Results 476 - 500 of 5153) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/angle_dx11/src/compiler/
PoolAlloc.h 22 // * Makes each individual allocation much more efficient; the
23 // typical allocation is trivial.
39 // allocation. If we aren't using guard blocks, these
86 unsigned char* mem; // beginning of our allocation (pts to header)
87 TAllocation* prevAlloc; // prior allocation in the chain
108 // of each allocation obtained from the underlying OS. Multi-page allocations
133 // or if no last call to push, frees all memory since first allocation.
197 size_t pageSize; // granularity of allocation from the OS
229 // It will use the pools for allocation, and not
  /system/extras/ext4_utils/
indirect.c 28 /* Creates data buffers for the first backing_len bytes of a block allocation
166 /* Given an allocation, attach as many blocks as possible to direct inode
187 /* Given an allocation, attach as many blocks as possible to indirect blocks,
190 as part of the allocation */
219 /* Given an allocation, attach as many blocks as possible to doubly indirect
222 blocks were included as part of the allocation */
251 /* Given an allocation, attach as many blocks as possible to triply indirect
254 triply indirect blocks were included as part of the allocation */
380 error("blocks left after triply-indirect allocation");
  /external/chromium_org/third_party/sqlite/src/src/
malloc.c 13 ** Memory allocation functions used throughout sqlite.
44 ** State information local to the memory allocation subsystem.
61 ** (so that a range test can be used to determine if an allocation
80 ** total memory allocation is about to exceed the soft heap
154 ** Initialize the memory allocation subsystem.
205 ** Deinitialize the memory allocation subsystem.
258 ** Do a memory allocation with statistics and alarms. Assume the
301 /* A memory allocation of a number of bytes which is near the maximum
319 ** This version of the memory allocation is for use by the application.
321 ** allocation
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
system-alloc_unittest.cc 101 // An allocation size that is likely to trigger the system allocator.
123 // Check with the allocator still works after a failed allocation.
131 // the first allocation here might succeed but the second allocation must
134 // If the second allocation succeeds, you will have to rewrite or
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
system-alloc_unittest.cc 101 // An allocation size that is likely to trigger the system allocator.
123 // Check with the allocator still works after a failed allocation.
131 // the first allocation here might succeed but the second allocation must
134 // If the second allocation succeeds, you will have to rewrite or
  /external/libvpx/libvpx/vpx_mem/include/
vpx_mem_tracker.h 71 to the memory tracker allocation table
83 Removes the specified address from the memory tracker's allocation
87 -1: if memory allocation table's mutex could not be locked
95 allocation table
105 tracker allocation table
  /external/llvm/tools/lli/
RecordingMemoryManager.cpp 11 // allocation. Iterators are provided for all data and code allocations.
19 for (SmallVectorImpl<Allocation>::iterator
23 for (SmallVectorImpl<Allocation>::iterator
36 AllocatedCodeMem.push_back(Allocation(Block, Alignment));
48 AllocatedDataMem.push_back(Allocation(Block, Alignment));
  /external/qemu/elff/
elf_alloc.h 44 * For better allocation performance, ElfAllocator keeps its list of
45 * allocated chunks in reverse order (relatively to the chunk allocation
72 * for DWARF object allocation implementation. See DwarfAllocBase for more
99 * in reverse order (relatively to the chunk allocation sequence).
121 * Implements allocation of objects of derived classes from elf's "chunked"
  /external/valgrind/main/exp-dhat/docs/
dh-manual.xml 25 collected and presented per allocation point (allocation
29 <listitem><para>Total allocation (number of bytes and
36 between allocation and freeing)</para></listitem>
41 <listitem><para>for allocation points which always allocate blocks
47 <para>Using these statistics it is possible to identify allocation
111 <para>Over the entire run of the program, this stack (allocation
161 transient allocation-free spike -- rather, it is spread out over a
173 <sect3><title>A fairly harmless allocation point record</title></sect3>
228 simply leaked. So, here is 180k of completely useless allocation tha
    [all...]
  /external/valgrind/main/memcheck/tests/
origin3-no.stderr.exp 6 Uninitialised value was created by a heap allocation
16 Uninitialised value was created by a stack allocation
24 Uninitialised value was created by a heap allocation
34 Uninitialised value was created by a heap allocation
44 Uninitialised value was created by a heap allocation
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
Renderable.java 31 import android.renderscript.Allocation;
178 Allocation pvParams = null, vertexConstants = null;
181 vertexConstants = Allocation.createTyped(rs, pv.getObjectConstants());
191 Allocation pfParams = null, fragmentConstants = null;
194 fragmentConstants = Allocation.createTyped(rs, pf.getObjectConstants());
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Blend.java 22 import android.renderscript.Allocation;
46 private Allocation image1;
47 private Allocation image2;
70 image1 = Allocation.createTyped(mRS, mInPixelsAllocation.getType());
71 image2 = Allocation.createTyped(mRS, mInPixelsAllocation2.getType());
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Blend.java 22 import android.renderscript.Allocation;
47 private Allocation image1;
48 private Allocation image2;
71 image1 = Allocation.createTyped(mRS, mInPixelsAllocation.getType());
72 image2 = Allocation.createTyped(mRS, mInPixelsAllocation2.getType());
  /ndk/sources/host-tools/ndk-stack/elff/
elf_alloc.h 44 * For better allocation performance, ElfAllocator keeps its list of
45 * allocated chunks in reverse order (relatively to the chunk allocation
72 * for DWARF object allocation implementation. See DwarfAllocBase for more
99 * in reverse order (relatively to the chunk allocation sequence).
121 * Implements allocation of objects of derived classes from elf's "chunked"
  /frameworks/rs/driver/
rsdRuntimeStubs.cpp 101 // Allocation
105 static void SC_AllocationSyncAll2(Allocation *a, RsAllocationUsageType source) {
110 static void SC_AllocationSyncAll(Allocation *a) {
115 static void SC_AllocationCopy1DRange(Allocation *dstAlloc,
119 Allocation *srcAlloc,
126 static void SC_AllocationCopy2DRange(Allocation *dstAlloc,
130 Allocation *srcAlloc,
142 static void SC_AllocationIoSend(Allocation *alloc) {
148 static void SC_AllocationIoReceive(Allocation *alloc) {
159 static void SC_BindTexture(ProgramFragment *pf, uint32_t slot, Allocation *a)
    [all...]
  /dalvik/vm/oo/
Array.h 42 * Returns NULL with an exception raised if allocation fails.
54 * Returns NULL with an exception raised if allocation fails.
64 * Returns NULL with an exception raised if allocation fails.
  /external/chromium_org/content/browser/loader/
resource_buffer.cc 97 // This is the first allocation.
102 // Append the next allocation if it fits. Otherwise, wraparound.
104 // NOTE: We could look to see if a larger allocation is possible by
  /external/chromium_org/third_party/usrsctp/overrides/usrsctplib/netinet/
sctp_os.h 42 * General kernel memory allocation:
45 * Kernel memory allocation for "soname"- memory must be zeroed.
51 * Zone(pool) allocation routines: MUST be defined for each OS.
  /external/chromium_org/tools/memory_watcher/
memory_hook.h 17 // gets tracked, and it becomes an infinite loop (allocation() calls
18 // MemoryHook() which calls allocation(), etc).
101 // Register a class to receive memory allocation & deallocation
  /external/icu4c/common/
cmemory.c 9 * File cmemory.c ICU Heap allocation.
10 * All ICU heap allocation, both for C and C++ new of ICU
13 * If you have a need to replace ICU allocation, this is the
  /external/qemu/docs/
ANDROID-MEMCHECK.TXT 21 libc.so hooks up every memory allocation call (malloc, free, calloc, realloc,
23 emulator, providing an allocation descriptor that contains information about
24 allocation block and operation that is being performed on this block. Emulator
  /frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_Memory.c 27 /* This function is used for memory allocation and free. It can be called in */
34 /* When this function is called for memory allocation (hInstance=NULL) the memory */
163 /* Read back memory allocation table */
  /frameworks/base/libs/hwui/
PathTessellator.h 43 allocate space within the first allocation (useful if you want to eventually allocate
52 // not first re-allocation, leave space for degenerate triangles to separate strips
98 void* mReallocBuffer; // used for multi-allocation
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
TestBase.java 40 protected Allocation mInPixelsAllocation;
41 protected Allocation mInPixelsAllocation2;
42 protected Allocation mOutPixelsAllocation;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
FilterEnvironment.java 21 import android.support.v8.renderscript.Allocation;
111 Allocation in, Allocation out) {

Completed in 1565 milliseconds

<<11121314151617181920>>