HomeSort by relevance Sort by last modified time
    Searched defs:BufferEnd (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/Support/
MemoryBuffer.h 38 const char *BufferEnd; // End of the buffer.
50 const char *getBufferEnd() const { return BufferEnd; }
51 size_t getBufferSize() const { return BufferEnd-BufferStart; }
  /external/clang/include/clang/Lex/
Lexer.h 52 const char *BufferEnd; // End of the buffer.
163 return BufferPtr == BufferEnd;
592 void cutOffLexing() { BufferPtr = BufferEnd; }
  /external/llvm/include/llvm/CodeGen/
MachineCodeEmitter.h 44 /// BufferBegin/BufferEnd pointers to the start and end of the buffer. As we
48 /// CurBufferPtr will saturate to BufferEnd and ignore stores. Once the entire
55 /// BufferBegin/BufferEnd - Pointers to the start and end of the memory
57 uint8_t *BufferBegin, *BufferEnd;
59 /// code. This is guaranteed to be in the range [BufferBegin,BufferEnd]. If
60 /// this pointer is at BufferEnd, it will never move due to code emission, and
85 if (CurBufferPtr != BufferEnd)
93 if (4 <= BufferEnd-CurBufferPtr) {
96 CurBufferPtr = BufferEnd;
115 if (4 <= BufferEnd-CurBufferPtr)
    [all...]
  /external/clang/include/clang/AST/
CommentLexer.h 233 const char *const BufferEnd;
239 /// to newline or BufferEnd, for C comments points to star in '*/'.
312 assert(Loc >= BufferStart && Loc <= BufferEnd &&
351 const char *BufferStart, const char *BufferEnd);
  /external/clang/lib/AST/
CommentParser.cpp 36 const char *BufferEnd;
54 Pos.BufferEnd = Tok.getText().end();
66 assert(Pos.BufferPtr != Pos.BufferEnd);
72 assert(Pos.BufferPtr != Pos.BufferEnd);
74 if (Pos.BufferPtr == Pos.BufferEnd) {
233 Pos.BufferPtr, Pos.BufferEnd - Pos.BufferPtr,
235 Pos.BufferEnd - Pos.BufferPtr));

Completed in 354 milliseconds