Home
last modified time | relevance | path

Searched refs:numSymbols (Results 1 - 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.h81 unsigned numSymbols; // number of symbol addresses member in llvm::NVPTXAsmPrinter::AggBuffer
105 numSymbols = 0; in AggBuffer()
136 numSymbols++; in addSymbol()
140 if (numSymbols == 0) { in print()
182 if (nSym >= numSymbols) in print()
H A DNVPTXAsmPrinter.cpp1198 if (aggBuffer.numSymbols) { in printModuleLevelGV()
/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/
H A DDecode.java433 int[] codeLengthCodeLengths, int numSymbols, int[] codeLengths, State s) { in readHuffmanCodeLengths()
443 while (symbol < numSymbols && space > 0) { in readHuffmanCodeLengths()
474 if (symbol + repeatDelta > numSymbols) { in readHuffmanCodeLengths()
475 throw new BrotliRuntimeException("symbol + repeatDelta > numSymbols"); // COV_NF_LINE in readHuffmanCodeLengths()
489 Utils.fillIntsWithZeroes(codeLengths, symbol, numSymbols); in readHuffmanCodeLengths()
513 int numSymbols = BitReader.readFewBits(s, 2) + 1; in readSimpleHuffmanCode()
514 for (int i = 0; i < numSymbols; i++) { in readSimpleHuffmanCode()
522 checkDupes(symbols, numSymbols); in readSimpleHuffmanCode()
524 int histogramId = numSymbols; in readSimpleHuffmanCode()
525 if (numSymbols in readSimpleHuffmanCode()
432 readHuffmanCodeLengths( int[] codeLengthCodeLengths, int numSymbols, int[] codeLengths, State s) readHuffmanCodeLengths() argument
[all...]
/third_party/skia/third_party/externals/brotli/csharp/org/brotli/dec/
H A DDecode.cs180 private static void ReadHuffmanCodeLengths(int[] codeLengthCodeLengths, int numSymbols, int[] codeLengths, Org.Brotli.Dec.BitReader br) in ReadHuffmanCodeLengths() argument
189 while (symbol < numSymbols && space > 0) in ReadHuffmanCodeLengths()
227 if (symbol + repeatDelta > numSymbols) in ReadHuffmanCodeLengths()
229 throw new Org.Brotli.Dec.BrotliRuntimeException("symbol + repeatDelta > numSymbols"); in ReadHuffmanCodeLengths()
248 Org.Brotli.Dec.Utils.FillWithZeroes(codeLengths, symbol, numSymbols - symbol); in ReadHuffmanCodeLengths()
266 int numSymbols = Org.Brotli.Dec.BitReader.ReadBits(br, 2) + 1; in ReadHuffmanCode()
274 for (int i = 0; i < numSymbols; i++) in ReadHuffmanCode()
280 switch (numSymbols) in ReadHuffmanCode()
/third_party/skia/third_party/externals/brotli/js/
H A Ddecode.js352 * @param {number} numSymbols
357 function readHuffmanCodeLengths(codeLengthCodeLengths, numSymbols, codeLengths, s) {
366 while (symbol < numSymbols && space > 0) {
405 if (symbol + repeatDelta > numSymbols) {
406 throw "symbol + repeatDelta > numSymbols";
419 codeLengths.fill(0, symbol, numSymbols);
447 var /** number */ numSymbols = readFewBits(s, 2) + 1;
448 for (var /** number */ i = 0; i < numSymbols; i++) {
459 checkDupes(symbols, numSymbols);
460 var /** number */ histogramId = numSymbols;
[all...]
/third_party/lzma/Java/SevenZip/Compression/LZMA/
H A DEncoder.java220 public void SetPrices(int posState, int numSymbols, int[] prices, int st) in SetPrices() argument
229 if (i >= numSymbols) in SetPrices()
235 if (i >= numSymbols) in SetPrices()
239 for (; i < numSymbols; i++) in SetPrices()
/third_party/lzma/CS/7zip/Compress/LZMA/
H A DLzmaEncoder.cs220 public void SetPrices(UInt32 posState, UInt32 numSymbols, UInt32[] prices, UInt32 st) in SetPrices() argument
229 if (i >= numSymbols) in SetPrices()
235 if (i >= numSymbols) in SetPrices()
239 for (; i < numSymbols; i++) in SetPrices()

Completed in 11 milliseconds