HomeSort by relevance Sort by last modified time
    Searched full:getbyte (Results 26 - 50 of 161) sorted by null

12 3 4 5 6 7

  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lz/
LZDecoder.java 64 public int getByte(int dist) {
LZEncoder.java 302 * use <code>getByte(dist + 1)<code>.
304 * This function is equivalent to <code>getByte(0, backward)</code>.
306 public int getByte(int backward) {
315 public int getByte(int forward, int backward) {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
DistinguishedNameParser.java 180 encoded[i] = (byte) getByte(p);
264 int res = getByte(pos);
291 b = getByte(pos);
311 private int getByte(int position) {
  /external/okhttp/okio/okio/src/main/java/okio/
RealBufferedSource.java 209 byte b0 = buffer.getByte(0);
255 byte b = buffer.getByte(pos);
273 byte b = buffer.getByte(pos);
323 fromIndex = indexOf(bytes.getByte(0), fromIndex);
  /external/okhttp/okio/okio/src/test/java/okio/
ByteStringTest.java 45 @Test public void getByte() throws Exception {
47 assertEquals(-85, byteString.getByte(0));
48 assertEquals(18, byteString.getByte(1));
54 byteString.getByte(2);
TestUtil.java 69 assertEquals(b, b1.getByte(i));
107 assertEquals(b, b1.getByte(i));
BufferTest.java 350 assertEquals('a', buffer.getByte(0));
351 assertEquals('a', buffer.getByte(0)); // getByte doesn't mutate!
352 assertEquals('c', buffer.getByte(buffer.size - 1));
353 assertEquals('b', buffer.getByte(buffer.size - 2));
354 assertEquals('b', buffer.getByte(buffer.size - 3));
360 buffer.getByte(0);
  /external/opencv/
WLNonFileByteStream.cpp 141 uchar* WLNonFileByteStream::GetByte()
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
BluetoothPbapRequestPullPhoneBook.java 113 mNewMissedCalls = oap.getByte(OAP_TAGID_NEW_MISSED_CALLS);
BluetoothPbapRequestPullVcardListing.java 99 mNewMissedCalls = oap.getByte(OAP_TAGID_NEW_MISSED_CALLS);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SmsMessage.java 520 len = getByte();
544 int getByte() {
917 int firstByte = p.getByte();
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMADecoder.java 150 int i = getSubcoderIndex(lz.getByte(0), lz.getPos());
165 int matchByte = lz.getByte(reps[0]);
  /external/lzma/CPP/7zip/Bundles/LzmaSpec/
LzmaSpec.cpp 99 Byte GetByte(UInt32 dist) const
107 PutByte(GetByte(dist));
376 prevByte = OutWindow.GetByte(1);
384 unsigned matchByte = OutWindow.GetByte(rep0 + 1);
506 OutWindow.PutByte(OutWindow.GetByte(rep0 + 1));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
ArrayTest.java 140 * java.lang.reflect.Array#getByte(java.lang.Object, int)
144 // java.lang.reflect.Array.getByte(java.lang.Object, int)
149 ret = Array.getByte(x, 0);
155 ret = Array.getByte(new Object(), 0);
165 ret = Array.getByte(x, 4);
175 ret = Array.getByte(null, 0);
679 assertEquals("Get returned incorrect value", 1, Array.getByte(x, 0));
  /external/libunwind_llvm/src/
Unwind-EHABI.cpp 34 uint8_t getByte(const uint32_t* data, size_t offset) {
256 uint8_t byte = getByte(data, offset++);
272 (((uint32_t)getByte(data, offset++)) << 4);
306 uint8_t registers = getByte(data, offset++);
319 uint32_t v = getByte(data, offset++);
334 uint8_t v = getByte(data, offset++);
364 uint8_t v = getByte(data, offset++);
375 uint8_t v = getByte(data, offset++);
383 uint8_t v = getByte(data, offset++);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
Unwind-EHABI.cpp 35 uint8_t getByte(const uint32_t* data, size_t offset) {
249 uint8_t byte = getByte(data, offset++);
265 (((uint32_t)getByte(data, offset++)) << 4);
299 uint8_t registers = getByte(data, offset++);
312 uint32_t v = getByte(data, offset++);
327 uint8_t v = getByte(data, offset++);
357 uint8_t v = getByte(data, offset++);
368 uint8_t v = getByte(data, offset++);
376 uint8_t v = getByte(data, offset++);
    [all...]
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 56 assertEquals(i, simple.getByte(i));
249 public byte getByte(int pos);
301 public byte getByte(int pos) {
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs 259 byte prevByte = m_OutWindow.GetByte(0);
262 (uint)nowPos64, prevByte, m_OutWindow.GetByte(rep0));
279 m_OutWindow.PutByte(m_OutWindow.GetByte(rep0));
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowBundle.java 117 public byte getByte(String key) {
118 return getByte(key, (byte) 0);
122 public Byte getByte(String key, byte defaultValue) {
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
BundleTest.java 71 assertEquals((byte) 0xA, bundle.getByte("foo"));
72 assertEquals((byte) 0x0, bundle.getByte("bar"));
73 assertEquals((byte) 0x37, bundle.getByte("bar", (byte) 0x37).byteValue());
  /libcore/ojluni/src/main/java/sun/nio/ch/
NativeObject.java 175 final byte getByte(int offset) {
176 return unsafe.getByte(offset + address);
378 byte b = unsafe.getByte(a);
  /external/opencv/otherlibs/highgui/
grfmt_bmp.cpp 300 x_shift3 = m_strm.GetByte()*nch;
301 y_shift = m_strm.GetByte();
393 x_shift3 = m_strm.GetByte()*nch;
394 y_shift = m_strm.GetByte();
grfmt_jpeg.cpp 540 int val = m_low_strm.GetByte();
547 val = m_low_strm.GetByte();
588 code = ((code&255) << 8) | m_low_strm.GetByte();
852 m_precision = lstrm.GetByte();
855 m_planes = lstrm.GetByte();
866 int idx = lstrm.GetByte();
876 ci.h = (char)lstrm.GetByte();
879 ci.tq = (char)lstrm.GetByte();
939 int tq = lstrm.GetByte();
984 int t = lstrm.GetByte();
    [all...]
  /external/opencv3/modules/imgcodecs/src/
grfmt_bmp.cpp 298 x_shift3 = m_strm.getByte()*nch;
299 y_shift = m_strm.getByte();
391 x_shift3 = m_strm.getByte()*nch;
392 y_shift = m_strm.getByte();
  /external/pdfium/fpdfsdk/include/
fsdk_define.h 61 virtual FX_BOOL GetByte(FX_DWORD pos, uint8_t& ch);

Completed in 1407 milliseconds

12 3 4 5 6 7