Searched refs:getType (Results 51 - 75 of 595) sorted by last modified time

1234567891011>>

/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
H A DImageProcessingActivityJB.java229 mOutDisplayAllocation = Allocation.createTyped(mRS, mInPixelsAllocation.getType(),
237 mOutPixelsAllocation = Allocation.createTyped(mRS, mInPixelsAllocation.getType(),
H A DMandelbrot.java82 int width = mOutPixelsAllocation.getType().getX();
83 int height = mOutPixelsAllocation.getType().getY();
H A DResize.java45 mWidth = mInPixelsAllocation.getType().getX();
46 mHeight = mInPixelsAllocation.getType().getY();
H A DVignette.java102 mInPixelsAllocation.getType().getX(),
103 mInPixelsAllocation.getType().getY(), center_x,
107 mInPixelsAllocation.getType().getX(),
108 mInPixelsAllocation.getType().getY(), center_x,
112 mInPixelsAllocation.getType().getX(),
113 mInPixelsAllocation.getType().getY(), center_x, center_y,
117 mInPixelsAllocation.getType().getX(),
118 mInPixelsAllocation.getType().getY(), center_x, center_y,
/frameworks/rs/tests/java_api/RSTest_CompatLib/src/com/android/rs/test/
H A DUT_blur_validation.java61 output1D = Allocation.createTyped(RS, input1D.getType());
H A DUT_single_source_script.java57 testAllocation1.getType().destroy();
59 testAllocation2.getType().destroy();
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
H A DMainActivity.java40 String s = intent.getType();
/frameworks/rs/tests/java_api/RsTest/src/com/android/rs/test/
H A DUT_blur_validation.java60 output1D = Allocation.createTyped(RS, input1D.getType());
H A DUT_foreach.java57 A.getType().destroy();
H A DUT_foreach_bounds.java71 A.getType().destroy();
H A DUT_noroot.java55 A.getType().destroy();
H A DUT_reduce.java65 inputCells = (myInputs.length > 0) ? myInputs[0].getType().getCount() : 0;
/frameworks/rs/tests/java_api/SSHealingBrush/src/rs/example/android/com/healingbrush/
H A DHealing.java195 int w = mask.getType().getX();
196 int h = mask.getType().getY();
H A DMainActivity.java228 String s = intent.getType();
/frameworks/rs/tests/java_api/ScriptGroupTest/src/com/android/rs/sgtest/
H A DFilters.java259 mInPixelsAllocation.getType().getX(),
260 mInPixelsAllocation.getType().getY(), center_x,
266 mInPixelsAllocation.getType().getX(),
267 mInPixelsAllocation.getType().getY(),
351 mWidth = mInPixelsAllocation.getType().getX();
352 mHeight = mInPixelsAllocation.getType().getY();
374 b.addConnection(mOutPixelsAllocation.getType(),
396 mOutPixelsAllocation.getType(),
H A DScriptGroupTestActivity.java193 mBitmapOut = Bitmap.createBitmap(mInPixelsAllocation.getType().getX(),
194 mInPixelsAllocation.getType().getY(),
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
H A DVrState.java65 || mScrAllocation.getType().getX() != w
66 || mScrAllocation.getType().getY() != h) {
83 || mzRangeFullAllocation.getType().getX() != w
84 || mzRangeFullAllocation.getType().getY() != h) {
/frameworks/rs/cpp/
H A DScriptIntrinsicBLAS.cpp185 int M = A->getType()->getY();
186 int N = A->getType()->getX();
187 if (!A->getType()->getElement()->isCompatible(e) ||
188 !X->getType()->getElement()->isCompatible(e) ||
189 !Y->getType()->getElement()->isCompatible(e)) {
192 if (X->getType()->getY() > 1 || Y->getType()->getY() > 1) {
207 if ((int)X->getType()->getX() != expectedXDim ||
208 (int)Y->getType()->getX() != expectedYDim) {
216 int M = A->getType()
[all...]
H A DScriptIntrinsics.cpp59 if (ain->getType()->getElement()->isCompatible(mElement) == false ||
60 aout->getType()->getElement()->isCompatible(mElement) == false) {
67 sp<const Type> t = lut->getType();
93 if (in->getType()->getElement()->isCompatible(mElement) == false ||
94 out->getType()->getElement()->isCompatible(mElement) == false) {
101 if (in->getType()->getElement()->isCompatible(mElement) == false ||
102 out->getType()->getElement()->isCompatible(mElement) == false) {
109 if (in->getType()->getElement()->isCompatible(mElement) == false ||
110 out->getType()->getElement()->isCompatible(mElement) == false) {
117 if (in->getType()
[all...]
H A DrsCppStructs.h621 sp<const Type> getType() const { function in class:android::RSC::Allocation
1744 sp<const Type> getType() { function in class:android::RSC::Script::FieldBase
1745 return mAllocation->getType();
/frameworks/rs/cpu_ref/
H A DrsCpuCore.cpp878 if ((mtls->aout[0] != nullptr) && mtls->aout[0]->getType()->getElementSizeBytes()) {
879 s2 = targetByteChunk / mtls->aout[0]->getType()->getElementSizeBytes();
881 s2 = targetByteChunk / mtls->ains[0]->getType()->getElementSizeBytes();
H A DrsCpuIntrinsicBLAS.cpp106 elementBytes = ain[0]->getType()->getElement()->getSizeBytes();
H A DrsCpuIntrinsicBlur.cpp443 if (e->getType() == RS_TYPE_UNSIGNED_8) {
H A DrsCpuIntrinsicColorMatrix.cpp213 if (ein->getType() == RS_TYPE_FLOAT_32) {
218 if (eout->getType() == RS_TYPE_FLOAT_32) {
953 if (ein->getType() == eout->getType()) {
954 if (eout->getType() == RS_TYPE_UNSIGNED_8) {
960 if (eout->getType() == RS_TYPE_UNSIGNED_8) {
H A DrsCpuIntrinsicConvolve3x3.cpp454 if (e->getType() == RS_TYPE_FLOAT_32) {

Completed in 263 milliseconds

1234567891011>>