Searched refs:ByteNo (Results 1 – 11 of 11) sorted by relevance
/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/ |
D | BitstreamWriter.h | 169 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()
|
D | BitstreamReader.h | 247 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/llvm/include/llvm/Bitcode/ |
D | BitstreamReader.h | 193 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()
|
D | BitstreamWriter.h | 107 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/ |
D | LiteralSupport.cpp | 1626 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/ |
D | NaClBitstreamReader.h | 646 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/ |
D | LiteralSupport.h | 240 unsigned getOffsetOfStringByte(const Token &TheTok, unsigned ByteNo) const;
|
/external/clang/lib/AST/ |
D | Expr.cpp | 1009 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/ |
D | Expr.h | 1593 getLocationOfByte(unsigned ByteNo, const SourceManager &SM,
|
/external/clang/lib/Sema/ |
D | SemaChecking.cpp | 49 unsigned ByteNo) const { in getLocationOfStringLiteralByte() 50 return SL->getLocationOfByte(ByteNo, getSourceManager(), LangOpts, in getLocationOfStringLiteralByte()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 9327 unsigned ByteNo) const;
|