Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
DBitstreamWriter.h169 void BackpatchWord(unsigned ByteNo, unsigned NewWord) { in BackpatchWord() argument
170 Out[ByteNo++] = (unsigned char)(NewWord >> 0); in BackpatchWord()
171 Out[ByteNo++] = (unsigned char)(NewWord >> 8); in BackpatchWord()
172 Out[ByteNo++] = (unsigned char)(NewWord >> 16); in BackpatchWord()
173 Out[ByteNo ] = (unsigned char)(NewWord >> 24); in BackpatchWord()
243 unsigned ByteNo = B.StartSizeWord*4; in ExitBlock() local
246 BackpatchWord(ByteNo, SizeInWords); in ExitBlock()
DBitstreamReader.h247 uintptr_t ByteNo = uintptr_t(BitNo/8) & ~3; in JumpToBit() local
249 assert(ByteNo <= (uintptr_t)(BitStream->getLastChar()- in JumpToBit()
254 NextChar = BitStream->getFirstChar()+ByteNo; in JumpToBit()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Bitcode/
DBitstreamReader.h133 size_t ByteNo = size_t(BitNo/8) & ~(sizeof(word_t)-1); in JumpToBit() local
135 assert(canSkipToPos(ByteNo) && "Invalid location"); in JumpToBit()
138 NextChar = ByteNo; in JumpToBit()
147 const uint8_t *getPointerToByte(uint64_t ByteNo, uint64_t NumBytes) { in getPointerToByte() argument
148 return BitcodeBytes.data() + ByteNo; in getPointerToByte()
DBitstreamWriter.h107 unsigned ByteNo = BitNo / 8; in BackpatchWord() local
109 &Out[ByteNo], BitNo & 7)) && in BackpatchWord()
112 &Out[ByteNo], NewWord, BitNo & 7); in BackpatchWord()
/external/llvm/include/llvm/Bitcode/
DBitstreamReader.h193 size_t ByteNo = size_t(BitNo/8) & ~(sizeof(word_t)-1); in JumpToBit() local
195 assert(canSkipToPos(ByteNo) && "Invalid location"); in JumpToBit()
198 NextChar = ByteNo; in JumpToBit()
225 const uint8_t *getPointerToByte(uint64_t ByteNo, uint64_t NumBytes) { in getPointerToByte() argument
226 return R->getBitcodeBytes().getPointer(ByteNo, NumBytes); in getPointerToByte()
DBitstreamWriter.h107 unsigned ByteNo = BitNo / 8; in BackpatchWord() local
109 &Out[ByteNo], BitNo & 7)) && in BackpatchWord()
112 &Out[ByteNo], NewWord, BitNo & 7); in BackpatchWord()
/external/clang/lib/Lex/
DLiteralSupport.cpp1626 unsigned ByteNo) const { in getOffsetOfStringByte()
1659 return SpellingPtr - SpellingStart + ByteNo; in getOffsetOfStringByte()
1667 while (ByteNo) { in getOffsetOfStringByte()
1673 --ByteNo; in getOffsetOfStringByte()
1683 if (Len > ByteNo) { in getOffsetOfStringByte()
1688 ByteNo -= Len; in getOffsetOfStringByte()
1693 --ByteNo; in getOffsetOfStringByte()
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
DNaClBitstreamReader.h646 const uintptr_t ByteNo = getStartWordByteForBit(BitNo); in JumpToBit() local
648 if (!canSkipToPos(ByteNo)) in JumpToBit()
652 NextChar = ByteNo; in JumpToBit()
/external/clang/include/clang/Lex/
DLiteralSupport.h240 unsigned getOffsetOfStringByte(const Token &TheTok, unsigned ByteNo) const;
/external/clang/lib/AST/
DExpr.cpp1009 StringLiteral::getLocationOfByte(unsigned ByteNo, const SourceManager &SM, in getLocationOfByte() argument
1024 ByteNo -= StringOffset; in getLocationOfByte()
1061 if (ByteNo < TokNumBytes || in getLocationOfByte()
1062 (ByteNo == TokNumBytes && TokNo == getNumConcatenated() - 1)) { in getLocationOfByte()
1063 unsigned Offset = SLP.getOffsetOfStringByte(TheTok, ByteNo); in getLocationOfByte()
1077 ByteNo -= TokNumBytes; in getLocationOfByte()
/external/clang/include/clang/AST/
DExpr.h1593 getLocationOfByte(unsigned ByteNo, const SourceManager &SM,
/external/clang/lib/Sema/
DSemaChecking.cpp49 unsigned ByteNo) const { in getLocationOfStringLiteralByte()
50 return SL->getLocationOfByte(ByteNo, getSourceManager(), LangOpts, in getLocationOfStringLiteralByte()
/external/clang/include/clang/Sema/
DSema.h9327 unsigned ByteNo) const;