HomeSort by: relevance | last modified time | path
    Searched refs:ByteNo (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Bitstream/
BitstreamReader.h 132 size_t ByteNo = size_t(BitNo/8) & ~(sizeof(word_t)-1);
134 assert(canSkipToPos(ByteNo) && "Invalid location");
137 NextChar = ByteNo;
152 const uint8_t *getPointerToByte(uint64_t ByteNo, uint64_t NumBytes) {
153 return BitcodeBytes.data() + ByteNo;
BitstreamWriter.h 141 uint64_t ByteNo = BitNo / 8;
145 if (ByteNo >= NumOfFlushedBytes) {
147 &Out[ByteNo - NumOfFlushedBytes], StartBit)) &&
150 &Out[ByteNo - NumOfFlushedBytes], NewWord, StartBit);
161 size_t BytesFromDisk = std::min(static_cast<uint64_t>(BytesNum), NumOfFlushedBytes - ByteNo);
172 FS->seek(ByteNo);
188 FS->seek(ByteNo);
  /src/external/apache2/llvm/dist/clang/lib/Lex/
LiteralSupport.cpp 1867 unsigned ByteNo) const {
1900 return SpellingPtr - SpellingStart + ByteNo;
1908 while (ByteNo) {
1914 --ByteNo;
1924 if (Len > ByteNo) {
1925 // ByteNo is somewhere within the escape sequence.
1929 ByteNo -= Len;
1934 --ByteNo;
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
LiteralSupport.h 256 unsigned getOffsetOfStringByte(const Token &TheTok, unsigned ByteNo) const;
  /src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp 1193 StringLiteral::getLocationOfByte(unsigned ByteNo, const SourceManager &SM,
1209 ByteNo -= StringOffset;
1246 if (ByteNo < TokNumBytes ||
1247 (ByteNo == TokNumBytes && TokNo == getNumConcatenated() - 1)) {
1248 unsigned Offset = SLP.getOffsetOfStringByte(TheTok, ByteNo);
1262 ByteNo -= TokNumBytes;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 107 unsigned ByteNo) const {
108 return SL->getLocationOfByte(ByteNo, getSourceManager(), LangOpts,
7235 unsigned ByteNo, const SourceManager &SM, const LangOptions &Features,
7238 return FExpr->getLocationOfByte(ByteNo + Offset, SM, Features, Target,
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 1917 getLocationOfByte(unsigned ByteNo, const SourceManager &SM,
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 12394 unsigned ByteNo) const;

Completed in 65 milliseconds