Home
last modified time | relevance | path

Searched refs:curByte (Results 1 - 5 of 5) sorted by relevance

/third_party/node/deps/npm/node_modules/iconv-lite/encodings/
H A Dinternal.js152 var curByte = buf[i];
153 if ((curByte & 0xC0) !== 0x80) { // Leading byte
159 if (curByte < 0x80) { // Single-byte code
160 res += String.fromCharCode(curByte);
161 } else if (curByte < 0xE0) { // Two-byte code
162 acc = curByte & 0x1F;
164 } else if (curByte < 0xF0) { // Three-byte code
165 acc = curByte & 0x0F;
172 acc = (acc << 6) | (curByte & 0x3f);
H A Ddbcs-codec.js496 var curByte = (i >= 0) ? buf[i] : prevBytes[i + prevOffset];
499 var uCode = this.decodeTables[nodeIdx][curByte];
511 var ptr = (buf[i-3]-0x81)*12600 + (buf[i-2]-0x30)*1260 + (buf[i-1]-0x81)*10 + (curByte-0x30);
516 (curByte-0x30);
535 throw new Error("iconv-lite internal error: invalid decoding table value " + uCode + " at " + nodeIdx + "/" + curByte);
/third_party/lzma/C/
H A DLzmaEnc.c1231 Byte curByte, matchByte; in GetOptimum() local
1295 curByte = *data; in GetOptimum()
1302 if (last < 2 && curByte != matchByte) in GetOptimum()
1316 LitEnc_Matched_GetPrice(probs, curByte, matchByte, p->ProbPrices) : in GetOptimum()
1317 LitEnc_GetPrice(probs, curByte, p->ProbPrices)); in GetOptimum()
1326 if (matchByte == curByte && repLens[0] == 0) in GetOptimum()
1449 Byte curByte, matchByte; in GetOptimum() local
1579 curByte = *data; in GetOptimum()
1607 && matchByte == curByte) in GetOptimum()
1615 LitEnc_Matched_GetPrice(probs, curByte, matchByt in GetOptimum()
2408 Byte curByte; LzmaEnc_CodeOneBlock() local
2459 Byte curByte; LzmaEnc_CodeOneBlock() local
[all...]
/third_party/lzma/Java/SevenZip/Compression/LZMA/
H A DEncoder.java1095 byte curByte = _matchFinder.GetIndexByte(0 - _additionalOffset); in CodeOneBlock()
1096 _literalEncoder.GetSubCoder((int)(nowPos64), _previousByte).Encode(_rangeEncoder, curByte); in CodeOneBlock()
1097 _previousByte = curByte; in CodeOneBlock()
1116 byte curByte = _matchFinder.GetIndexByte((int)(0 - _additionalOffset)); in CodeOneBlock()
1121 subCoder.EncodeMatched(_rangeEncoder, matchByte, curByte); in CodeOneBlock()
1124 subCoder.Encode(_rangeEncoder, curByte); in CodeOneBlock()
1125 _previousByte = curByte; in CodeOneBlock()
/third_party/lzma/CS/7zip/Compress/LZMA/
H A DLzmaEncoder.cs1097 Byte curByte = _matchFinder.GetIndexByte((Int32)(0 - _additionalOffset)); in CodeOneBlock()
1098 _literalEncoder.GetSubCoder((UInt32)(nowPos64), _previousByte).Encode(_rangeEncoder, curByte); in CodeOneBlock()
1099 _previousByte = curByte; in CodeOneBlock()
1118 Byte curByte = _matchFinder.GetIndexByte((Int32)(0 - _additionalOffset)); in CodeOneBlock()
1123 subCoder.EncodeMatched(_rangeEncoder, matchByte, curByte); in CodeOneBlock()
1126 subCoder.Encode(_rangeEncoder, curByte); in CodeOneBlock()
1127 _previousByte = curByte; in CodeOneBlock()

Completed in 11 milliseconds