HomeSort by relevance Sort by last modified time
    Searched refs:GetByte (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
inet_ntoa.cc 11 static uint8_t GetByte(const void* addr, int byte) {
21 GetByte(&in, 0), GetByte(&in, 1),
22 GetByte(&in, 2), GetByte(&in, 3));
  /external/chromium_org/third_party/skia/src/images/
bmpdecoderhelper.cpp 96 colTab_[base + 2] = GetByte();
97 colTab_[base + 1] = GetByte();
98 colTab_[base] = GetByte();
100 GetByte();
186 uint8 cmd = GetByte();
188 uint8 pixels = GetByte();
203 cmd = GetByte();
214 uint8 dx = GetByte();
215 uint8 dy = GetByte();
231 val = GetByte();
    [all...]
bmpdecoderhelper.h 88 uint8 GetByte();
  /external/skia/src/images/
bmpdecoderhelper.cpp 96 colTab_[base + 2] = GetByte();
97 colTab_[base + 1] = GetByte();
98 colTab_[base] = GetByte();
100 GetByte();
186 uint8 cmd = GetByte();
188 uint8 pixels = GetByte();
203 cmd = GetByte();
214 uint8 dx = GetByte();
215 uint8 dy = GetByte();
231 val = GetByte();
    [all...]
bmpdecoderhelper.h 88 uint8 GetByte();
  /external/opencv/
WLNonFileByteStream.h 37 uchar* GetByte();
WLNonFileByteStream.cpp 141 uchar* WLNonFileByteStream::GetByte()
cvjni.cpp 157 env->SetBooleanArrayRegion(res_array, 0, imageSize, (jboolean*)strm->GetByte());
276 env->SetBooleanArrayRegion(res_array, 0, imageSize, (jboolean*)strm->GetByte());
771 env->SetBooleanArrayRegion(res_array, 0, imageSize, (jboolean*)m_strm->GetByte());
  /external/chromium_org/media/webm/
webm_webvtt_parser.cc 30 bool WebMWebVTTParser::GetByte(uint8* byte) {
64 if (!GetByte(&byte) || byte == kLF)
68 if (GetByte(&byte) && byte != kLF)
webm_webvtt_parser.h 32 bool GetByte(uint8* byte);
  /external/opencv/otherlibs/highgui/
grfmt_pxm.cpp 89 code = strm.GetByte();
99 code = strm.GetByte();
104 code = strm.GetByte();
107 code = strm.GetByte();
116 code = strm.GetByte();
150 int code = m_strm.GetByte();
154 code = m_strm.GetByte();
grfmt_sunras.cpp 232 code = m_strm.GetByte();
235 len = m_strm.GetByte();
247 code = m_strm.GetByte();
301 code = m_strm.GetByte();
304 len = m_strm.GetByte();
325 code = m_strm.GetByte();
341 if( m_strm.GetByte() != 0 )
bitstrm.cpp 233 int RLByteStream::GetByte()
296 val = GetByte();
297 val|= GetByte() << 8;
316 val = GetByte();
317 val |= GetByte() << 8;
318 val |= GetByte() << 16;
319 val |= GetByte() << 24;
337 val = GetByte() << 8;
338 val|= GetByte();
357 val = GetByte() << 24
    [all...]
bitstrm.h 102 int GetByte();
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/lzma/Java/SevenZip/Compression/LZ/
OutWindow.java 78 public byte GetByte(int distance)
  /external/lzma/CS/7zip/Compress/LZ/
LzOutWindow.cs 102 public byte GetByte(uint distance)
  /art/runtime/mirror/
art_field.h 79 int8_t GetByte(const Object* object) const
art_field-inl.h 106 inline int8_t ArtField::GetByte(const Object* object) const {
  /external/lzma/Java/SevenZip/Compression/LZMA/
Decoder.java 220 prevByte = decoder2.DecodeWithMatchByte(m_RangeDecoder, m_OutWindow.GetByte(rep0));
304 prevByte = m_OutWindow.GetByte(0);
  /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/chromium/third_party/libjingle/source/talk/p2p/base/
stun.h 261 uint8 GetByte(int index) const;
  /art/runtime/native/
java_lang_reflect_Field.cc 43 value.SetB(f->GetByte(o));
321 NATIVE_METHOD(Field, getByte, "(Ljava/lang/Object;)B"),
  /art/runtime/
reflection.cc 335 boxed_value.SetB(primitive_field->GetByte(o));

Completed in 687 milliseconds

1 2