/ndk/sources/cxx-stl/gabi++/tests/ |
test_gabixx_exceptions.cpp | 25 throw "Memory allocation failure!";
|
/ndk/tests/device/test-basic-exceptions/jni/ |
test_basic_exceptions.cpp | 25 throw "Memory allocation failure!";
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
ImageFilterChanSat.java | 21 import android.support.v8.renderscript.Allocation; 74 int quality, Allocation in) { 131 private void runSelectiveAdjust(Allocation in, Allocation out) {
|
/developers/build/prebuilts/gradle/RenderScriptIntrinsic/RenderScriptIntrinsicSample/src/main/java/com/example/android/renderscriptintrinsic/ |
MainActivity.java | 44 private Allocation mInAllocation; 45 private Allocation[] mOutAllocations; 155 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn); 157 mOutAllocations = new Allocation[NUM_BITMAPS]; 159 mOutAllocations[i] = Allocation.createFromBitmap(mRS, mBitmapsOut[i]); 176 private void performFilter(Allocation inAllocation, 177 Allocation outAllocation, Bitmap bitmapOut, float value) { 351 Allocation inAllocation = Allocation.createFromBitmap(mRS, tempBitmap); 363 Allocation outAllocation = Allocation.createFromBitmap(mRS, destBitpmap) [all...] |
/developers/samples/android/renderScript/RenderScriptIntrinsic/RenderScriptIntrinsicSample/src/main/java/com/example/android/renderscriptintrinsic/ |
MainActivity.java | 44 private Allocation mInAllocation; 45 private Allocation[] mOutAllocations; 155 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn); 157 mOutAllocations = new Allocation[NUM_BITMAPS]; 159 mOutAllocations[i] = Allocation.createFromBitmap(mRS, mBitmapsOut[i]); 176 private void performFilter(Allocation inAllocation, 177 Allocation outAllocation, Bitmap bitmapOut, float value) { 351 Allocation inAllocation = Allocation.createFromBitmap(mRS, tempBitmap); 363 Allocation outAllocation = Allocation.createFromBitmap(mRS, destBitpmap) [all...] |
/external/chromium_org/chrome/browser/ui/gtk/ |
nine_box.cc | 124 GtkAllocation allocation; local 125 gtk_widget_get_allocation(dst, &allocation); 126 int w = allocation.width; 127 int h = allocation.height; 151 // For widgets that have their own window, the allocation (x,y) coordinates 156 cairo_translate(cr, allocation.x, allocation.y); 183 GtkAllocation allocation; local 184 gtk_widget_get_allocation(widget, &allocation); 185 int width = allocation.width [all...] |
/frameworks/base/graphics/java/android/renderscript/ |
Script.java | 130 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v) { 154 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v, LaunchOptions sc) { 188 public void bindAllocation(Allocation va, int slot) { 314 protected Allocation mAllocation; 317 mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT); 321 mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT | usages) [all...] |
/dalvik/vm/mterp/mips/ |
OP_NEW_ARRAY.S | 3 %verify "allocation fails" 25 * Finish allocation.
|
/external/chromium-trace/trace-viewer/src/tcmalloc/ |
tcmalloc_snapshot_view.css | 40 /* Allocation size in MB, right-aligned for easier comparison of columns. */ 48 /* Trace allocation count. */
|
/external/chromium_org/base/allocator/ |
win_allocator.cc | 52 // original allocation for use with win_heap_memalign_free() later. 60 // we need to NULL check to ensure the allocation succeeded.
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
FastMalloc.h | 29 // These functions crash safely if an allocation fails. 53 // size as the minimally aligned memory allocation.
|
/external/chromium_org/third_party/leveldatabase/src/util/ |
arena_test.cc | 44 // Fill the "i"th allocation with a known bit pattern 58 // Check the "i"th allocation for the known bit pattern
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrMemoryPool.h | 14 * Allocates memory in blocks and parcels out space in the blocks for allocation 61 intptr_t fPrevPtr; ///< ptr to the last allocation made
|
/external/chromium_org/v8/test/mjsunit/ |
transition-elements-kind.js | 28 // Flags: --allow-natives-syntax --track-allocation-sites 30 // Allocation site for empty double arrays.
|
/external/e2fsprogs/intl/ |
vasnwprintf.h | 1 /* vswprintf with automatic memory allocation. 36 if no dynamic memory allocation was necessary) and set *LENGTHP to the
|
/external/skia/src/gpu/ |
GrMemoryPool.h | 14 * Allocates memory in blocks and parcels out space in the blocks for allocation 61 intptr_t fPrevPtr; ///< ptr to the last allocation made
|
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/ |
Shader.java | 43 protected Allocation mConstantBuffer; 74 mConstantBuffer = Allocation.createTyped(rs, mPerShaderConstants);
|
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/ |
UT_foreach.java | 25 private Allocation A; 39 A = Allocation.createTyped(RS, typeBuilder.create());
|
UT_foreach_bounds.java | 25 private Allocation A; 39 A = Allocation.createTyped(RS, typeBuilder.create());
|
UT_kernel_struct.java | 26 private Allocation A; 27 private Allocation B;
|
UT_noroot.java | 25 private Allocation A; 39 A = Allocation.createTyped(RS, typeBuilder.create());
|
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
UT_foreach.java | 25 private Allocation A; 39 A = Allocation.createTyped(RS, typeBuilder.create());
|
UT_foreach_bounds.java | 25 private Allocation A; 43 A = Allocation.createTyped(RS, typeBuilder.create());
|
UT_kernel_struct.java | 26 private Allocation A; 27 private Allocation B;
|
/frameworks/rs/ |
rsScriptIntrinsic.h | 45 const Allocation * ain, 46 Allocation * aout,
|