HomeSort by relevance Sort by last modified time
    Searched refs:mScratch (Results 1 - 4 of 4) sorted by null

  /packages/apps/Gallery2/src/com/android/gallery3d/util/
ProfileData.java 52 private byte mScratch[] = new byte[4]; // scratch space for writeInt()
162 mScratch[0] = (byte) v;
163 mScratch[1] = (byte) (v >> 8);
164 mScratch[2] = (byte) (v >> 16);
165 mScratch[3] = (byte) (v >> 24);
166 mOut.write(mScratch);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
SpriteTextRenderer.java 226 mScratch[0] = x;
227 mScratch[1] = y;
228 mScratch[2] = 0.0f;
229 mScratch[3] = 1.0f;
230 mProjector.project(mScratch, 0, mScratch, 4);
231 float sx = mScratch[4];
232 float sy = mScratch[5];
277 private float[] mScratch = new float[8];
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/util/
ProfileTest.java 114 private byte[] mScratch = new byte[4]; // scratch buffer for readInt
173 mIn.read(mScratch, 0, 4);
174 return (mScratch[0] & 0xff) |
175 ((mScratch[1] & 0xff) << 8) |
176 ((mScratch[2] & 0xff) << 16) |
177 ((mScratch[3] & 0xff) << 24);
  /system/core/libpixelflinger/codeflinger/
GGLAssembler.h 99 : mRegFile(regFile), mScratch(0) {
102 mRegFile.recycleSeveral(mScratch);
106 mScratch |= 1<<reg;
111 mScratch &= ~(1<<reg);
114 return (mScratch & (1<<reg));
121 uint32_t mScratch;

Completed in 98 milliseconds