HomeSort by: relevance | last modified time | path
    Searched defs:BufEnd (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Format/
Encoding.h 36 const llvm::UTF8 *BufEnd = reinterpret_cast<const llvm::UTF8 *>(Text.end());
37 if (llvm::isLegalUTF8String(&Ptr, BufEnd))
  /src/external/apache2/llvm/dist/llvm/lib/Support/
SourceMgr.cpp 288 const char *BufEnd = CurMB->getBufferEnd();
289 while (LineEnd != BufEnd && LineEnd[0] != '\n' && LineEnd[0] != '\r')
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
ELF.h 108 : First(Data), BufEnd(BufferEnd) {}
111 assert(Size || BufEnd);
119 if (EntryStart + sizeof(T) > BufEnd)
127 const uint8_t *BufEnd = nullptr;
667 const void *BufEnd) {
678 while (It < BufEnd && (*It & 1) == 0) {
682 if (It >= BufEnd) {
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Lexer.cpp 80 const char *BufEnd) {
83 BufferEnd = BufEnd;
85 assert(BufEnd[0] == 0 &&
150 const char *BufStart, const char *BufPtr, const char *BufEnd)
152 InitLexer(BufStart, BufPtr, BufEnd);
278 const char *BufEnd = BufPtr + Tok.getLength();
282 while (BufPtr < BufEnd) {
298 const char *RawEnd = BufEnd;
311 while (BufPtr < BufEnd) {
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 420 SVal BufEnd =
423 State = CheckLocation(C, State, Buffer, BufEnd, Access);
907 SVal BufEnd =
911 const MemRegion *R = BufEnd.getAsRegion();
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 131 const unsigned char *BufEnd = BufPtr + Buffer.getBufferSize();
138 if (isBitcodeWrapper(BufPtr, BufEnd))
139 if (SkipBitcodeWrapperHeader(BufPtr, BufEnd, true))
142 BitstreamCursor Stream(ArrayRef<uint8_t>(BufPtr, BufEnd));

Completed in 36 milliseconds