HomeSort by relevance Sort by last modified time
    Searched defs:numSymbols (Results 1 - 3 of 3) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 82 unsigned numSymbols; // number of symbol addresses
106 numSymbols = 0;
137 numSymbols++;
141 if (numSymbols == 0) {
183 if (nSym >= numSymbols)
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 83 unsigned numSymbols; // number of symbol addresses
107 numSymbols = 0;
135 numSymbols++;
138 if (numSymbols == 0) {
180 if (nSym >= numSymbols)
  /external/brotli/java/org/brotli/dec/
Decode.java 296 int[] codeLengthCodeLengths, int numSymbols, int[] codeLengths, State s) {
306 while (symbol < numSymbols && space > 0) {
337 if (symbol + repeatDelta > numSymbols) {
338 throw new BrotliRuntimeException("symbol + repeatDelta > numSymbols"); // COV_NF_LINE
352 Utils.fillIntsWithZeroes(codeLengths, symbol, numSymbols);
379 int numSymbols = BitReader.readFewBits(s, 2) + 1;
386 for (int i = 0; i < numSymbols; i++) {
392 switch (numSymbols) {
407 ok = checkDupes(symbols, numSymbols);
    [all...]

Completed in 378 milliseconds