HomeSort by relevance Sort by last modified time
    Searched refs:curByte (Results 1 - 7 of 7) 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/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 54 milliseconds