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 51 private byte mScratch[] = new byte[4]; // scratch space for writeInt()
161 mScratch[0] = (byte) v;
162 mScratch[1] = (byte) (v >> 8);
163 mScratch[2] = (byte) (v >> 16);
164 mScratch[3] = (byte) (v >> 24);
165 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 95 : mRegFile(regFile), mScratch(0) {
98 mRegFile.recycleSeveral(mScratch);
102 mScratch |= 1<<reg;
107 mScratch &= ~(1<<reg);
110 return (mScratch & (1<<reg));
117 uint32_t mScratch;

Completed in 51 milliseconds