Home | History | Annotate | Download | only in renderscript

Lines Matching refs:mAdaptedAllocation

28         mAdaptedAllocation = alloc;
44 int tx = mAdaptedAllocation.mType.getX();
45 int ty = mAdaptedAllocation.mType.getY();
46 int tz = mAdaptedAllocation.mType.getZ();
104 if (!mAdaptedAllocation.getType().hasMipmaps()) {
123 if (!mAdaptedAllocation.getType().hasFaces()) {
146 if (mAdaptedAllocation.getType().getX() <= x) {
149 if (mWindow.getX() == mAdaptedAllocation.getType().getX()) {
152 if ((mWindow.getX() + x) >= mAdaptedAllocation.getType().getX()) {
168 if (mAdaptedAllocation.getType().getY() == 0) {
171 if (mAdaptedAllocation.getType().getY() <= y) {
174 if (mWindow.getY() == mAdaptedAllocation.getType().getY()) {
177 if ((mWindow.getY() + y) >= mAdaptedAllocation.getType().getY()) {
193 if (mAdaptedAllocation.getType().getZ() == 0) {
196 if (mAdaptedAllocation.getType().getZ() <= z) {
199 if (mWindow.getZ() == mAdaptedAllocation.getType().getZ()) {
202 if ((mWindow.getZ() + z) >= mAdaptedAllocation.getType().getZ()) {
214 if (mAdaptedAllocation.getType().getArray(arrayNum) == 0) {
217 if (mAdaptedAllocation.getType().getArray(arrayNum) <= arrayVal) {
220 if (mWindow.getArray(arrayNum) == mAdaptedAllocation.getType().getArray(arrayNum)) {
223 if ((mWindow.getArray(arrayNum) + arrayVal) >= mAdaptedAllocation.getType().getArray(arrayNum)) {
269 if (a.mAdaptedAllocation != null) {