Searched refs:BufEnd (Results 1 - 12 of 12) sorted by relevance

/openbsd-current/gnu/llvm/llvm/include/llvm/Bitcode/
H A DBitcodeReader.h241 const unsigned char *BufEnd) {
244 return BufPtr != BufEnd &&
254 const unsigned char *BufEnd) {
257 return BufPtr != BufEnd &&
267 const unsigned char *BufEnd) {
268 return isBitcodeWrapper(BufPtr, BufEnd) ||
269 isRawBitcode(BufPtr, BufEnd);
289 const unsigned char *&BufEnd,
292 if (unsigned(BufEnd - BufPtr) < BWH_SizeField + 4)
300 if (VerifyBufferSize && BitcodeOffsetEnd > uint64_t(BufEnd
240 isBitcodeWrapper(const unsigned char *BufPtr, const unsigned char *BufEnd) argument
253 isRawBitcode(const unsigned char *BufPtr, const unsigned char *BufEnd) argument
266 isBitcode(const unsigned char *BufPtr, const unsigned char *BufEnd) argument
288 SkipBitcodeWrapperHeader(const unsigned char *&BufPtr, const unsigned char *&BufEnd, bool VerifyBufferSize) argument
[all...]
/openbsd-current/gnu/llvm/clang/include/clang/Rewrite/Core/
H A DRewriteBuffer.h43 void Initialize(const char *BufStart, const char *BufEnd) { argument
44 Buffer.assign(BufStart, BufEnd);
/openbsd-current/gnu/llvm/clang/lib/Format/
H A DEncoding.h36 const llvm::UTF8 *BufEnd = reinterpret_cast<const llvm::UTF8 *>(Text.end()); local
37 if (llvm::isLegalUTF8String(&Ptr, BufEnd))
/openbsd-current/gnu/llvm/llvm/include/llvm/Object/
H A DELF.h105 : First(Data), BufEnd(BufferEnd) {}
108 assert(Size || BufEnd);
116 if (EntryStart + sizeof(T) > BufEnd)
124 const uint8_t *BufEnd = nullptr; member in struct:llvm::object::DataRegion
670 const void *BufEnd) {
681 while (It < BufEnd && (*It & 1) == 0) {
685 if (It >= BufEnd) {
669 getDynSymtabSizeFromGnuHash(const typename ELFT::GnuHash &Table, const void *BufEnd) argument
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DMemoryBuffer.cpp49 void MemoryBuffer::init(const char *BufStart, const char *BufEnd, argument
51 assert((!RequiresNullTerminator || BufEnd[0] == 0) &&
54 BufferEnd = BufEnd;
H A DSourceMgr.cpp300 const char *BufEnd = CurMB->getBufferEnd(); local
301 while (LineEnd != BufEnd && LineEnd[0] != '\n' && LineEnd[0] != '\r')
/openbsd-current/gnu/llvm/clang/include/clang/Lex/
H A DLexer.h160 void InitLexer(const char *BufStart, const char *BufPtr, const char *BufEnd);
174 const char *BufStart, const char *BufPtr, const char *BufEnd,
/openbsd-current/gnu/llvm/llvm/include/llvm/Support/
H A DMemoryBuffer.h58 void init(const char *BufStart, const char *BufEnd,
/openbsd-current/gnu/llvm/clang/lib/Frontend/
H A DTextDiagnostic.cpp1179 const char *BufEnd = BufStart + BufData.size();
1185 if (LineStart == BufEnd)
1190 while (*LineEnd != '\n' && *LineEnd != '\r' && LineEnd != BufEnd)
/openbsd-current/gnu/llvm/clang/lib/Lex/
H A DLexer.cpp80 const char *BufEnd) {
83 BufferEnd = BufEnd;
85 assert(BufEnd[0] == 0 &&
151 const char *BufStart, const char *BufPtr, const char *BufEnd,
155 InitLexer(BufStart, BufPtr, BufEnd);
281 const char *BufEnd = BufPtr + Tok.getLength(); local
285 while (BufPtr < BufEnd) {
301 const char *RawEnd = BufEnd;
314 while (BufPtr < BufEnd) {
79 InitLexer(const char *BufStart, const char *BufPtr, const char *BufEnd) argument
150 Lexer(SourceLocation fileloc, const LangOptions &langOpts, const char *BufStart, const char *BufPtr, const char *BufEnd, bool IsFirstIncludeOfFile) argument
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp485 SVal BufEnd = local
487 State = CheckLocation(C, State, Buffer, BufEnd, Access, CK);
997 SVal BufEnd =
1001 const MemRegion *R = BufEnd.getAsRegion();
/openbsd-current/gnu/llvm/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp138 const unsigned char *BufEnd = BufPtr + Buffer.getBufferSize(); local
145 if (isBitcodeWrapper(BufPtr, BufEnd))
146 if (SkipBitcodeWrapperHeader(BufPtr, BufEnd, true))
149 BitstreamCursor Stream(ArrayRef<uint8_t>(BufPtr, BufEnd));

Completed in 331 milliseconds