HomeSort by relevance Sort by last modified time
    Searched defs:mInPixelsAllocation (Results 1 - 8 of 8) sorted by null

  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
TestBase.java 40 protected Allocation mInPixelsAllocation;
95 mInPixelsAllocation = ipact.mInPixelsAllocation;
ImageProcessingActivity2.java 53 Allocation mInPixelsAllocation;
388 mInPixelsAllocation = Allocation.createFromBitmap(mRS, mBitmapIn);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
TestBase.java 34 protected Allocation mInPixelsAllocation;
91 mInPixelsAllocation = ipact.mProcessor.mInPixelsAllocation;
ImageProcessingActivityJB.java 149 Allocation mInPixelsAllocation;
198 mInPixelsAllocation = Allocation.createFromBitmapResource(
204 mInPixelsAllocation = Allocation.createFromBitmapResource(
210 mInPixelsAllocation = Allocation.createFromBitmapResource(
216 mInPixelsAllocation = Allocation.createFromBitmapResource(
225 mOutDisplayAllocation = Allocation.createTyped(mRS, mInPixelsAllocation.getType(),
233 mOutPixelsAllocation = Allocation.createTyped(mRS, mInPixelsAllocation.getType(),
460 mInPixelsAllocation.destroy();
473 mInPixelsAllocation = null;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
CachingPipeline.java 59 protected volatile Allocation mInPixelsAllocation;
129 if (mInPixelsAllocation != null) {
130 mInPixelsAllocation.destroy();
131 mInPixelsAllocation = null;
447 if (mOutPixelsAllocation == null || mInPixelsAllocation == null ||
456 mInPixelsAllocation = Allocation.createTyped(RS,
461 mInPixelsAllocation.copyFrom(bitmap);
476 return mInPixelsAllocation;
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
TestBase.java 43 protected Allocation mInPixelsAllocation;
110 mInPixelsAllocation = ipact.mInPixelsAllocation;
ImageProcessingActivity.java 54 Allocation mInPixelsAllocation;
408 mInPixelsAllocation = Allocation.createFromBitmapResource(
412 mBitmapOut = Bitmap.createBitmap(mInPixelsAllocation.getType().getX(),
413 mInPixelsAllocation.getType().getY(),
465 mInPixelsAllocation = null;
  /development/samples/RenderScript/Levels/src/com/android/rs/levels/
LevelsRSActivity.java 63 private Allocation mInPixelsAllocation;
171 mInPixelsAllocation = Allocation.createFromBitmap(mRS, mBitmapIn,
174 mOutPixelsAllocation = Allocation.createTyped(mRS, mInPixelsAllocation.getType(),
198 mScript.forEach_root(mInPixelsAllocation, mOutPixelsAllocation);

Completed in 3261 milliseconds