Searched refs:GetByte (Results 1 – 16 of 16) sorted by relevance
/external/skia/src/images/ |
D | bmpdecoderhelper.cpp | 96 colTab_[base + 2] = GetByte(); in DecodeImage() 97 colTab_[base + 1] = GetByte(); in DecodeImage() 98 colTab_[base] = GetByte(); in DecodeImage() 100 GetByte(); in DecodeImage() 186 uint8 cmd = GetByte(); in DoRLEDecode() 188 uint8 pixels = GetByte(); in DoRLEDecode() 203 cmd = GetByte(); in DoRLEDecode() 214 uint8 dx = GetByte(); in DoRLEDecode() 215 uint8 dy = GetByte(); in DoRLEDecode() 231 val = GetByte(); in DoRLEDecode() [all …]
|
D | bmpdecoderhelper.h | 88 uint8 GetByte();
|
/external/opencv/otherlibs/highgui/ |
D | bitstrm.cpp | 233 int RLByteStream::GetByte() in GetByte() function in RLByteStream 296 val = GetByte(); in GetWord() 297 val|= GetByte() << 8; in GetWord() 316 val = GetByte(); in GetDWord() 317 val |= GetByte() << 8; in GetDWord() 318 val |= GetByte() << 16; in GetDWord() 319 val |= GetByte() << 24; in GetDWord() 337 val = GetByte() << 8; in GetWord() 338 val|= GetByte(); in GetWord() 357 val = GetByte() << 24; in GetDWord() [all …]
|
D | grfmt_sunras.cpp | 232 code = m_strm.GetByte(); in ReadData() 235 len = m_strm.GetByte(); in ReadData() 247 code = m_strm.GetByte(); in ReadData() 301 code = m_strm.GetByte(); in ReadData() 304 len = m_strm.GetByte(); in ReadData() 325 code = m_strm.GetByte(); in ReadData() 341 if( m_strm.GetByte() != 0 ) in ReadData()
|
D | grfmt_pxm.cpp | 89 code = strm.GetByte(); in ReadNumber() 99 code = strm.GetByte(); in ReadNumber() 104 code = strm.GetByte(); in ReadNumber() 107 code = strm.GetByte(); in ReadNumber() 116 code = strm.GetByte(); in ReadNumber() 150 int code = m_strm.GetByte(); in ReadHeader() 154 code = m_strm.GetByte(); in ReadHeader()
|
D | grfmt_jpeg.cpp | 540 int val = m_low_strm.GetByte(); in ReadBlock() 547 val = m_low_strm.GetByte(); in ReadBlock() 588 code = ((code&255) << 8) | m_low_strm.GetByte(); in FindMarker() 852 m_precision = lstrm.GetByte(); in ReadHeader() 855 m_planes = lstrm.GetByte(); in ReadHeader() 866 int idx = lstrm.GetByte(); in ReadHeader() 876 ci.h = (char)lstrm.GetByte(); in ReadHeader() 879 ci.tq = (char)lstrm.GetByte(); in ReadHeader() 939 int tq = lstrm.GetByte(); in LoadQuantTables() 984 int t = lstrm.GetByte(); in LoadHuffmanTables() [all …]
|
D | grfmt_bmp.cpp | 300 x_shift3 = m_strm.GetByte()*nch; in ReadData() 301 y_shift = m_strm.GetByte(); in ReadData() 393 x_shift3 = m_strm.GetByte()*nch; in ReadData() 394 y_shift = m_strm.GetByte(); in ReadData()
|
D | bitstrm.h | 102 int GetByte();
|
D | grfmt_tiff.cpp | 342 array[i] = m_strm.GetByte(); in ReadTable()
|
/external/opencv/ |
D | WLNonFileByteStream.h | 37 uchar* GetByte();
|
D | WLNonFileByteStream.cpp | 141 uchar* WLNonFileByteStream::GetByte() in GetByte() function in WLNonFileByteStream
|
D | cvjni.cpp | 157 env->SetBooleanArrayRegion(res_array, 0, imageSize, (jboolean*)strm->GetByte()); in Java_org_siprop_opencv_OpenCV_getSourceImage() 276 env->SetBooleanArrayRegion(res_array, 0, imageSize, (jboolean*)strm->GetByte()); in Java_org_siprop_opencv_OpenCV_findContours() 771 env->SetBooleanArrayRegion(res_array, 0, imageSize, (jboolean*)m_strm->GetByte());
|
/external/lzma/CS/7zip/Compress/LZMA/ |
D | LzmaDecoder.cs | 259 byte prevByte = m_OutWindow.GetByte(0); in Code() 262 (uint)nowPos64, prevByte, m_OutWindow.GetByte(rep0)); in Code() 279 m_OutWindow.PutByte(m_OutWindow.GetByte(rep0)); in Code()
|
/external/lzma/Java/SevenZip/Compression/LZ/ |
D | OutWindow.java | 78 public byte GetByte(int distance) in GetByte() method in OutWindow
|
/external/lzma/CS/7zip/Compress/LZ/ |
D | LzOutWindow.cs | 102 public byte GetByte(uint distance) in GetByte() method in SevenZip.Compression.LZ.OutWindow
|
/external/lzma/Java/SevenZip/Compression/LZMA/ |
D | Decoder.java | 220 prevByte = decoder2.DecodeWithMatchByte(m_RangeDecoder, m_OutWindow.GetByte(rep0)); in Code() 304 prevByte = m_OutWindow.GetByte(0); in Code()
|