HomeSort by relevance Sort by last modified time
    Searched refs:curByte (Results 1 - 10 of 10) sorted by null

  /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/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 391 int curByte = 0;
393 curByte = (rawData.get() & 0xFF);
397 return curByte;
GifDecoder.java 549 int curByte = 0;
551 curByte = (rawData.get() & 0xFF);
555 return curByte;
  /external/chromium_org/third_party/lzma_sdk/
LzmaEnc.c 936 Byte curByte, matchByte;
998 curByte = *data;
1001 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2)
1015 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) :
1016 LitEnc_GetPrice(probs, curByte, p->ProbPrices));
1024 if (matchByte == curByte)
1129 Byte curByte, matchByte;
1218 curByte = *data;
1228 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) :
1229 LitEnc_GetPrice(probs, curByte, p->ProbPrices))
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.c 937 Byte curByte, matchByte;
999 curByte = *data;
1002 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2)
1016 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) :
1017 LitEnc_GetPrice(probs, curByte, p->ProbPrices));
1025 if (matchByte == curByte)
1130 Byte curByte, matchByte;
1219 curByte = *data;
1229 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) :
1230 LitEnc_GetPrice(probs, curByte, p->ProbPrices))
    [all...]
  /external/lzma/C/
LzmaEnc.c 936 Byte curByte, matchByte;
998 curByte = *data;
1001 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2)
1015 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) :
1016 LitEnc_GetPrice(probs, curByte, p->ProbPrices));
1024 if (matchByte == curByte)
1129 Byte curByte, matchByte;
1218 curByte = *data;
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java     [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs     [all...]

Completed in 239 milliseconds