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

  /src/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
BitcodeReader.h 200 const unsigned char *BufEnd) {
203 return BufPtr != BufEnd &&
213 const unsigned char *BufEnd) {
216 return BufPtr != BufEnd &&
226 const unsigned char *BufEnd) {
227 return isBitcodeWrapper(BufPtr, BufEnd) ||
228 isRawBitcode(BufPtr, BufEnd);
248 const unsigned char *&BufEnd,
251 if (unsigned(BufEnd - BufPtr) < BWH_SizeField + 4)
259 if (VerifyBufferSize && BitcodeOffsetEnd > uint64_t(BufEnd-BufPtr)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Rewrite/Core/
RewriteBuffer.h 43 void Initialize(const char *BufStart, const char *BufEnd) {
44 Buffer.assign(BufStart, BufEnd);
  /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/include/llvm/Support/
MemoryBuffer.h 57 void init(const char *BufStart, const char *BufEnd,
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
Lexer.h 138 void InitLexer(const char *BufStart, const char *BufPtr, const char *BufEnd);
151 const char *BufStart, const char *BufPtr, const char *BufEnd);
  /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/llvm/lib/Support/
MemoryBuffer.cpp 46 void MemoryBuffer::init(const char *BufStart, const char *BufEnd,
48 assert((!RequiresNullTerminator || BufEnd[0] == 0) &&
51 BufferEnd = BufEnd;
SourceMgr.cpp 288 const char *BufEnd = CurMB->getBufferEnd();
289 while (LineEnd != BufEnd && LineEnd[0] != '\n' && LineEnd[0] != '\r')
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
TextDiagnostic.cpp 1177 const char *BufEnd = BufStart + BufData.size();
1183 if (LineStart == BufEnd)
1188 while (*LineEnd != '\n' && *LineEnd != '\r' && LineEnd != 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 56 milliseconds