| /external/chromium_org/v8/test/mjsunit/ |
| allocation-folding.js | 49 // Test allocation folding of doubles. 65 // Test allocation folding of doubles into non-doubles. 81 // Test allocation folding over a branch.
|
| binary-op-newspace.js | 31 // allocation still works. 47 // allocation still works.
|
| allocation-site-info.js | 130 // Case: [1,2,3] as allocation site 140 // don't have allocation site information attached. 199 // Case: new Array() as allocation site, smi->double 213 // Case: new Array() as allocation site, smi->fast 227 // Case: new Array(length) as allocation site 249 // Case: new Array(<length>) as allocation site, smi->fast 381 // Case: make sure nested arrays benefit from allocation site feedback as 419 // that allocation mementos provide.
|
| fast-literal.js | 28 // Flags: --allow-natives-syntax --no-inline-new --nouse-allocation-folding
|
| /cts/tests/tests/renderscript/src/android/renderscript/cts/ |
| ClearObjectTest.java | 19 import android.renderscript.Allocation; 42 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException { 64 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); 65 Allocation mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); 80 Allocation mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); 81 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum) 98 Allocation allocation = Allocation.createTyped(mRS, mIn.getType()); local [all...] |
| /external/chromium_org/content/common/gpu/client/ |
| context_provider_command_buffer.cc | 179 const gpu::MemoryAllocation& allocation) { 185 memory_policy_changed_callback_.Run(cc::ManagedMemoryPolicy(allocation));
|
| /external/chromium_org/tools/memory_inspector/memory_inspector/data/ |
| serialization.py | 42 if isinstance(obj, native_heap.Allocation): 108 allocation = native_heap.Allocation(alloc_dict['size'], 111 nh.Add(allocation)
|
| /external/valgrind/main/massif/tests/ |
| ignored.post.exp | 42 100.00% (800B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
|
| long-time.post.exp | 40 100.00% (2,300,000B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. 56 100.00% (900,000B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. 85 00.00% (0B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. 96 00.00% (0B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. 107 100.00% (2,300,000B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. 122 100.00% (1,900,000B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. 137 00.00% (0B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. 151 100.00% (900,000B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. 169 100.00% (1,100,000B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. 187 100.00% (900,000B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc [all...] |
| /frameworks/rs/driver/runtime/ |
| Android.mk | 33 ll32/allocation.ll 36 ll64/allocation.ll
|
| /frameworks/rs/java/tests/Balls/src/com/example/android/rs/balls/ |
| BallsRS.java | 39 private Allocation mGridCache; 43 Allocation.USAGE_SCRIPT | 44 Allocation.USAGE_GRAPHICS_CONSTANTS); 72 private Allocation loadTexture(int id) { 73 final Allocation allocation = local 74 Allocation.createFromBitmapResource(mRS, mRes, 75 id, Allocation.MipmapControl.MIPMAP_NONE, 76 Allocation.USAGE_GRAPHICS_TEXTURE); 77 return allocation; [all...] |
| /frameworks/rs/ |
| rsProgramFragment.cpp | 49 ALOGE("Unable to set fixed function emulation color because allocation is missing"); 50 rsc->setError(RS_ERROR_BAD_SHADER, "Unable to set fixed function emulation color because allocation is missing"); 57 void *p = rsc->mHal.funcs.allocation.lock1D(rsc, mHal.state.constants[0]); 60 rsc->mHal.funcs.allocation.unlock1D(rsc, mHal.state.constants[0]); 118 Allocation *constAlloc = Allocation::createAllocation(rsc, inputType.get(),
|
| rsScriptC_LibGL.cpp | 49 void rsrBindTexture(Context *rsc, ProgramFragment *pf, uint32_t slot, Allocation *a) { 55 void rsrBindConstant(Context *rsc, ProgramFragment *pf, uint32_t slot, Allocation *a) { 61 void rsrBindConstant(Context *rsc, ProgramVertex *pv, uint32_t slot, Allocation *a) { 93 void rsrBindFrameBufferObjectColorTarget(Context *rsc, Allocation *a, uint32_t slot) { 99 void rsrBindFrameBufferObjectDepthTarget(Context *rsc, Allocation *a) { 221 void rsrDrawTextAlloc(Context *rsc, Allocation *a, int x, int y) { 222 const char *text = (const char *)rsc->mHal.funcs.allocation.lock1D(rsc, a); 225 rsc->mHal.funcs.allocation.unlock1D(rsc, a); 249 void rsrMeasureTextAlloc(Context *rsc, Allocation *a, 252 const char *text = (const char *)rsc->mHal.funcs.allocation.lock1D(rsc, a) [all...] |
| rsMesh.cpp | 45 mHal.state.indexBuffers = new Allocation *[mHal.state.indexBuffersCount]; 53 mHal.state.vertexBuffers = new Allocation *[mHal.state.vertexBuffersCount]; 58 mVertexBuffers = new ObjectBaseRef<Allocation>[mHal.state.vertexBuffersCount]; 59 mIndexBuffers = new ObjectBaseRef<Allocation>[mHal.state.primitivesCount]; 117 ObjectBaseRef<Allocation> *vertexBuffers = NULL; 119 vertexBuffers = new ObjectBaseRef<Allocation>[vertexBuffersCount]; 122 Allocation *vertexAlloc = Allocation::createFromStream(rsc, stream); 128 ObjectBaseRef<Allocation> *indexBuffers = NULL; 131 indexBuffers = new ObjectBaseRef<Allocation>[primitivesCount] [all...] |
| /external/nanopb-c/generator/ |
| nanopb_generator.py | 199 # Check if the field can be implemented with static allocation 219 self.allocation = 'STATIC' 221 self.allocation = 'POINTER' 223 self.allocation = 'CALLBACK' 239 if self.allocation == 'STATIC': 245 if self.allocation == 'STATIC': 248 elif self.allocation == 'POINTER': 262 if self.allocation == 'POINTER': 274 elif self.allocation == 'CALLBACK': 277 if self.rules == 'OPTIONAL' and self.allocation == 'STATIC' [all...] |
| /external/nanopb-c/ |
| pb.h | 175 /**** Field allocation types ****/ 350 /* Memory allocation functions to use. You can define pb_realloc and 471 * - Allocation: STATIC or CALLBACK 478 #define PB_FIELD(tag, type, rules, allocation, message, field, prevfield, ptr) \ 479 PB_ ## rules ## _ ## allocation(tag, message, field, \ 490 #define PB_FIELD2(tag, type, rules, allocation, placement, message, field, prevfield, ptr) \ 491 PB_ ## rules ## _ ## allocation(tag, message, field, \
|
| /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
| BackingStore.java | 20 import android.renderscript.Allocation; 45 /** Access mode Allocation: Frame data will be accessed as a RenderScript Allocation. */ 533 Allocation allocation = (Allocation) backing.lock(ACCESS_ALLOCATION); local 534 allocation.copyTo(mBitmap); 626 Allocation allocation = (Allocation) backing.lock(ACCESS_ALLOCATION) local 748 Allocation allocation = (Allocation) backing.lock(ACCESS_ALLOCATION); local [all...] |
| /external/chromium_org/third_party/webrtc/modules/bitrate_controller/ |
| bitrate_controller_impl.cc | 358 uint32_t allocation = std::min(remainder, it->second->min_bitrate_); local 359 it->first->OnNetworkChanged(allocation, fraction_loss, rtt); 360 remainder -= allocation;
|
| /external/chromium_org/content/common/gpu/ |
| gpu_memory_manager_unittest.cc | 48 MemoryAllocation allocation; member in struct:content::ClientAssignmentCollector::ClientMemoryStat 60 const MemoryAllocation& allocation) { 62 client_memory_stats_for_last_manage_[client].allocation = allocation; 208 // Expect memory allocation to set suggest_have_frontbuffer/backbuffer 210 // Expect memory allocation to be shared according to share groups for stubs 238 // Expect memory allocation to set suggest_have_frontbuffer/backbuffer 240 // Expect memory allocation to be shared according to share groups for stubs 360 // Expect memory allocation of the stubs without surface to share memory 361 // allocation with the most visible stub in share group [all...] |
| /external/chromium_org/v8/test/mjsunit/compiler/ |
| dead-loops.js | 69 new Object(); // Have to prove the allocation doesn't escape. 75 var x = {}; // Have to prove the allocation doesn't escape.
|
| alloc-number-debug.js | 30 // Try to get a GC because of a heap number allocation while we
|
| alloc-number.js | 29 // Try to get a GC because of a heap number allocation while we
|
| /external/chromium_org/tools/traceline/traceline/scripts/ |
| heap.js | 55 // Find the largest allocation.
|
| /external/chromium_org/v8/test/mjsunit/regress/ |
| regress-x87.js | 30 // Regression for register allocation.
|
| /external/chromium_org/v8/test/webkit/ |
| dfg-array-dead.js | 25 "Tests that an array being dead does not result in register allocation failures."
|