Home
last modified time | relevance | path

Searched refs:ByteNo (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Bitstream/
H A DBitstreamWriter.h141 uint64_t ByteNo = BitNo / 8; in BackpatchWord() local
145 if (ByteNo >= NumOfFlushedBytes) { in BackpatchWord()
147 &Out[ByteNo - NumOfFlushedBytes], StartBit)) && in BackpatchWord()
150 &Out[ByteNo - NumOfFlushedBytes], NewWord, StartBit); in BackpatchWord()
161 size_t BytesFromDisk = std::min(static_cast<uint64_t>(BytesNum), NumOfFlushedBytes - ByteNo); in BackpatchWord()
172 FS->seek(ByteNo); in BackpatchWord()
188 FS->seek(ByteNo); in BackpatchWord()
H A DBitstreamReader.h132 size_t ByteNo = size_t(BitNo/8) & ~(sizeof(word_t)-1); in JumpToBit() local
134 assert(canSkipToPos(ByteNo) && "Invalid location"); in JumpToBit()
137 NextChar = ByteNo; in JumpToBit()
152 const uint8_t *getPointerToByte(uint64_t ByteNo, uint64_t NumBytes) { in getPointerToByte() argument
153 return BitcodeBytes.data() + ByteNo; in getPointerToByte()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DLiteralSupport.cpp1867 unsigned ByteNo) const { in getOffsetOfStringByte()
1900 return SpellingPtr - SpellingStart + ByteNo; in getOffsetOfStringByte()
1908 while (ByteNo) { in getOffsetOfStringByte()
1914 --ByteNo; in getOffsetOfStringByte()
1924 if (Len > ByteNo) { in getOffsetOfStringByte()
1929 ByteNo -= Len; in getOffsetOfStringByte()
1934 --ByteNo; in getOffsetOfStringByte()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DLiteralSupport.h256 unsigned getOffsetOfStringByte(const Token &TheTok, unsigned ByteNo) const;
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DExpr.cpp1193 StringLiteral::getLocationOfByte(unsigned ByteNo, const SourceManager &SM, in getLocationOfByte() argument
1209 ByteNo -= StringOffset; in getLocationOfByte()
1246 if (ByteNo < TokNumBytes || in getLocationOfByte()
1247 (ByteNo == TokNumBytes && TokNo == getNumConcatenated() - 1)) { in getLocationOfByte()
1248 unsigned Offset = SLP.getOffsetOfStringByte(TheTok, ByteNo); in getLocationOfByte()
1262 ByteNo -= TokNumBytes; in getLocationOfByte()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaChecking.cpp107 unsigned ByteNo) const { in getLocationOfStringLiteralByte()
108 return SL->getLocationOfByte(ByteNo, getSourceManager(), LangOpts, in getLocationOfStringLiteralByte()
7235 unsigned ByteNo, const SourceManager &SM, const LangOptions &Features, in getLocationOfByte() argument
7238 return FExpr->getLocationOfByte(ByteNo + Offset, SM, Features, Target, in getLocationOfByte()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExpr.h1917 getLocationOfByte(unsigned ByteNo, const SourceManager &SM,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h12394 unsigned ByteNo) const;