Searched refs:ByteNo (Results 1 – 8 of 8) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Bitstream/ |
| H A D | BitstreamWriter.h | 137 uint64_t ByteNo = BitNo / 8; in BackpatchByte() local 141 if (ByteNo >= NumOfFlushedBytes) { in BackpatchByte() 144 &Out[ByteNo - NumOfFlushedBytes], StartBit)) && in BackpatchByte() 147 &Out[ByteNo - NumOfFlushedBytes], NewByte, StartBit); in BackpatchByte() 158 size_t BytesFromDisk = std::min(static_cast<uint64_t>(BytesNum), NumOfFlushedBytes - ByteNo); in BackpatchByte() 169 FS->seek(ByteNo); in BackpatchByte() 185 FS->seek(ByteNo); in BackpatchByte()
|
| H A D | BitstreamReader.h | 128 size_t ByteNo = size_t(BitNo/8) & ~(sizeof(word_t)-1); in JumpToBit() local 130 assert(canSkipToPos(ByteNo) && "Invalid location"); in JumpToBit() 133 NextChar = ByteNo; in JumpToBit() 148 const uint8_t *getPointerToByte(uint64_t ByteNo, uint64_t NumBytes) { in getPointerToByte() argument 149 return BitcodeBytes.data() + ByteNo; in getPointerToByte()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Lex/ |
| H A D | LiteralSupport.cpp | 2312 unsigned ByteNo) const { in getOffsetOfStringByte() 2345 return SpellingPtr - SpellingStart + ByteNo; in getOffsetOfStringByte() 2353 while (ByteNo) { in getOffsetOfStringByte() 2359 --ByteNo; in getOffsetOfStringByte() 2370 if (Len > ByteNo) { in getOffsetOfStringByte() 2375 ByteNo -= Len; in getOffsetOfStringByte() 2380 --ByteNo; in getOffsetOfStringByte()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | LiteralSupport.h | 281 unsigned getOffsetOfStringByte(const Token &TheTok, unsigned ByteNo) const;
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | Expr.cpp | 1299 StringLiteral::getLocationOfByte(unsigned ByteNo, const SourceManager &SM, in getLocationOfByte() argument 1316 ByteNo -= StringOffset; in getLocationOfByte() 1353 if (ByteNo < TokNumBytes || in getLocationOfByte() 1354 (ByteNo == TokNumBytes && TokNo == getNumConcatenated() - 1)) { in getLocationOfByte() 1355 unsigned Offset = SLP.getOffsetOfStringByte(TheTok, ByteNo); in getLocationOfByte() 1369 ByteNo -= TokNumBytes; in getLocationOfByte()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaChecking.cpp | 108 unsigned ByteNo) const { in getLocationOfStringLiteralByte() 109 return SL->getLocationOfByte(ByteNo, getSourceManager(), LangOpts, in getLocationOfStringLiteralByte() 10423 unsigned ByteNo, const SourceManager &SM, const LangOptions &Features, in getLocationOfByte() argument 10426 return FExpr->getLocationOfByte(ByteNo + Offset, SM, Features, Target, in getLocationOfByte()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Expr.h | 1916 getLocationOfByte(unsigned ByteNo, const SourceManager &SM,
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 13826 unsigned ByteNo) const;
|