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

  /dalvik/tests/027-arithmetic/src/
Main.java 10 final int[] mBytes = {
16 i1 = mBytes[0] | mBytes[1] << 8 | mBytes[2] << 16 | mBytes[3] << 24;
17 i2 = mBytes[4] | mBytes[5] << 8 | mBytes[6] << 16 | mBytes[7] << 24;
25 l = (long)mBytes[0
    [all...]
  /dalvik/tests/003-omnibus-opcodes/src/
IntMath.java 11 final int[] mBytes = {
17 i1 = mBytes[0] | mBytes[1] << 8 | mBytes[2] << 16 | mBytes[3] << 24;
18 i2 = mBytes[4] | mBytes[5] << 8 | mBytes[6] << 16 | mBytes[7] << 24;
25 l = (long)mBytes[0
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/media/
AudioFxDemo.java 203 private byte[] mBytes;
215 mBytes = null;
223 mBytes = bytes;
231 if (mBytes == null) {
235 if (mPoints == null || mPoints.length < mBytes.length * 4) {
236 mPoints = new float[mBytes.length * 4];
241 for (int i = 0; i < mBytes.length - 1; i++) {
242 mPoints[i * 4] = mRect.width() * i / (mBytes.length - 1);
244 + ((byte) (mBytes[i] + 128)) * (mRect.height() / 2) / 128;
245 mPoints[i * 4 + 2] = mRect.width() * (i + 1) / (mBytes.length - 1)
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
FastXmlSerializer.java 60 private ByteBuffer mBytes = ByteBuffer.allocate(BUFFER_LEN);
210 if ((position = mBytes.position()) > 0) {
211 mBytes.flip();
212 mOutputStream.write(mBytes.array(), 0, position);
213 mBytes.clear();
222 CoderResult result = mCharset.encode(charBuffer, mBytes, true);
228 result = mCharset.encode(charBuffer, mBytes, true);
  /sdk/traceview/src/com/android/traceview/
DmTraceReader.java 55 private byte[] mBytes = new byte[8];

Completed in 187 milliseconds