Searched refs:byteOffset (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/com/android/internal/util/
H A DSizedInputStream.java49 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { argument
56 final int n = mWrapped.read(buffer, byteOffset, byteCount);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DGsmSmsTest.java362 int byteOffset = bitOffset / 8;
365 septets[byteOffset] |= v << shift;
368 septets[byteOffset + 1] = (byte) (v >> (8 - shift));
427 int byteOffset = bitOffset / 8;
430 septets[byteOffset] |= GSM_ESCAPE_CHARACTER << shift;
433 septets[byteOffset + 1] = (byte) (GSM_ESCAPE_CHARACTER >> (8 - shift));
439 byteOffset = bitOffset / 8;
442 septets[byteOffset] |= v << shift;
445 septets[byteOffset + 1] = (byte) (v >> (8 - shift));
490 int byteOffset
[all...]
/frameworks/base/core/java/android/os/
H A DFileBridge.java178 public void write(byte[] buffer, int byteOffset, int byteCount) throws IOException { argument
179 Arrays.checkOffsetAndCount(buffer.length, byteOffset, byteCount);
183 IoBridge.write(mClient, buffer, byteOffset, byteCount);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DGsmAlphabet.java433 int byteOffset = bitOffset / 8;
436 packedChars[++byteOffset] |= value << shift;
439 packedChars[++byteOffset] = (byte)(value >> (8 - shift));
505 int byteOffset = bitOffset / 8;
509 gsmVal = (0x7f & (pdu[offset + byteOffset] >> shift));
516 gsmVal |= 0x7f & (pdu[offset + byteOffset + 1] << (8 - shift));
/frameworks/base/core/jni/
H A Dandroid_media_AudioTrack.cpp635 jbyteArray javaBytes, jint byteOffset, jint sizeInBytes,
652 jint written = writeToTrack(lpTrack, javaAudioFormat, bytes.get(), byteOffset,
634 android_media_AudioTrack_write_native_bytes(JNIEnv *env, jobject thiz, jbyteArray javaBytes, jint byteOffset, jint sizeInBytes, jint javaAudioFormat, jboolean isWriteBlocking) argument
/frameworks/base/opengl/java/android/opengl/
H A DGLLogWrapper.java1081 int byteOffset = stride * index;
1088 byte d = byteBuffer.get(byteOffset);
1093 byte d = byteBuffer.get(byteOffset);
1099 short d = shortBuffer.get(byteOffset / 2);
1105 int d = intBuffer.get(byteOffset / 4);
1111 float d = intBuffer.get(byteOffset / 4);
1119 byteOffset += sizeofType;
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 235 milliseconds