/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/write/ |
BitstreamWriter.java | 36 private int[] curByte = new int[8]; 50 curByte[i] = 0; 57 int toWrite = (curByte[0] << 7) | (curByte[1] << 6) | (curByte[2] << 5) 58 | (curByte[3] << 4) | (curByte[4] << 3) | (curByte[5] << 2) 59 | (curByte[6] << 1) | curByte[7] [all...] |
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/ |
BitstreamReader.java | 35 private int curByte; 44 curByte = is.read(); 56 if (curByte == -1) { 60 int res = (curByte >> (7 - nBit)) & 1; 89 curByte = nextByte; 104 int res = curByte; 122 boolean hasTail = (curByte & mask) == tail; 124 return !(curByte == -1 || (nextByte == -1 && hasTail)); 150 if (curByte == -1) { 158 bits[cnt++] = (curByte >> (7 - i)) & 0x1 [all...] |
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/ |
LZMAEncoderNormal.java | 162 int curByte = lz.getByte(0); 168 if (mainLen < MATCH_LEN_MIN && curByte != matchByte 179 int literalPrice = literalEncoder.getPrice(curByte, matchByte, 189 if (matchByte == curByte) { 376 int curByte = lz.getByte(0); 381 + literalEncoder.getPrice(curByte, matchByte, lz.getByte(1), 389 if (matchByte == curByte && (opts[optCur + 1].optPrev == optCur 402 if (!nextIsByte && matchByte != curByte && avail > MATCH_LEN_MIN) { 465 int curByte = lz.getByte(len, 0); 468 price += literalEncoder.getPrice(curByte, matchByte, prevByte [all...] |
LZMAEncoder.java | 527 int getPrice(int curByte, int matchByte, 534 ? subencoders[i].getNormalPrice(curByte) 535 : subencoders[i].getMatchedPrice(curByte, matchByte);
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
E_B_D_T_.py | 205 for curByte in data: 206 value = byteord(curByte) 221 curByte = 0 223 curByte = curByte << 1 225 curByte |= 1 226 byteList.append(bytechr(curByte)) 527 curByte = _reverseBytes(self.imageData[firstByteLoc]) 528 firstHalf = byteord(curByte) >> cutPoint 532 curByte = _reverseBytes(self.imageData[secondByteLoc] [all...] |
/external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/ |
GifHeaderParser.java | 354 int curByte = 0; 356 curByte = rawData.get() & 0xFF; 360 return curByte;
|
GifDecoder.java | 653 int curByte = 0; 655 curByte = rawData.get() & 0xFF; 659 return curByte;
|
/external/lzma/C/ |
LzmaEnc.c | 949 Byte curByte, matchByte;
1011 curByte = *data;
1014 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2)
1028 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) :
1029 LitEnc_GetPrice(probs, curByte, p->ProbPrices));
1037 if (matchByte == curByte)
1142 Byte curByte, matchByte;
[all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lzma/ |
Encoder.java | [all...] |
/external/lzma/Java/SevenZip/Compression/LZMA/ |
Encoder.java | [all...] |
/external/lzma/CS/7zip/Compress/LZMA/ |
LzmaEncoder.cs | [all...] |