Home
last modified time | relevance | path

Searched refs:nextSym (Results 1 – 2 of 2) sorted by relevance

/openbsd/src/gnu/usr.bin/perl/cpan/Compress-Raw-Bzip2/bzip2-src/
Ddecompress.c124 Int32 nextSym; in BZ2_decompress() local
178 nextSym = s->save_nextSym; in BZ2_decompress()
380 GET_MTF_VAL(BZ_X_MTF_1, BZ_X_MTF_2, nextSym); in BZ2_decompress()
384 if (nextSym == EOB) break; in BZ2_decompress()
386 if (nextSym == BZ_RUNA || nextSym == BZ_RUNB) { in BZ2_decompress()
398 if (nextSym == BZ_RUNA) es = es + (0+1) * N; else in BZ2_decompress()
399 if (nextSym == BZ_RUNB) es = es + (1+1) * N; in BZ2_decompress()
401 GET_MTF_VAL(BZ_X_MTF_3, BZ_X_MTF_4, nextSym); in BZ2_decompress()
403 while (nextSym == BZ_RUNA || nextSym == BZ_RUNB); in BZ2_decompress()
434 nn = (UInt32)(nextSym - 1); in BZ2_decompress()
[all …]
/openbsd/src/gnu/llvm/lld/MachO/
DInputSection.cpp61 auto *nextSym = llvm::upper_bound( in getContainingSymbol() local
63 if (nextSym == symbols.begin()) in getContainingSymbol()
65 return *std::prev(nextSym); in getContainingSymbol()