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

  /external/llvm/include/llvm/Support/
FileOutputBuffer.h 55 return BufferEnd;
60 return BufferEnd - BufferStart;
88 uint8_t *BufferEnd;
MemoryBuffer.h 37 const char *BufferEnd; // End of the buffer.
49 const char *getBufferEnd() const { return BufferEnd; }
50 size_t getBufferSize() const { return BufferEnd-BufferStart; }
  /external/clang/include/clang/Lex/
Lexer.h 52 const char *BufferEnd; // End of the buffer.
165 return BufferPtr == BufferEnd;
575 void cutOffLexing() { BufferPtr = BufferEnd; }
  /external/llvm/include/llvm/CodeGen/
MachineCodeEmitter.h 45 /// BufferBegin/BufferEnd pointers to the start and end of the buffer. As we
49 /// CurBufferPtr will saturate to BufferEnd and ignore stores. Once the entire
56 /// BufferBegin/BufferEnd - Pointers to the start and end of the memory
58 uint8_t *BufferBegin, *BufferEnd;
60 /// code. This is guaranteed to be in the range [BufferBegin,BufferEnd]. If
61 /// this pointer is at BufferEnd, it will never move due to code emission, and
86 if (CurBufferPtr != BufferEnd)
94 if (4 <= BufferEnd-CurBufferPtr) {
97 CurBufferPtr = BufferEnd;
116 if (4 <= BufferEnd-CurBufferPtr)
    [all...]
  /external/clang/include/clang/AST/
CommentLexer.h 232 const char *const BufferEnd;
238 /// to newline or BufferEnd, for C comments points to star in '*/'.
311 assert(Loc >= BufferStart && Loc <= BufferEnd &&
350 const char *BufferStart, const char *BufferEnd);
  /external/clang/lib/AST/
CommentParser.cpp 35 const char *BufferEnd;
53 Pos.BufferEnd = Tok.getText().end();
65 assert(Pos.BufferPtr != Pos.BufferEnd);
71 assert(Pos.BufferPtr != Pos.BufferEnd);
73 if (Pos.BufferPtr == Pos.BufferEnd) {
238 Pos.BufferPtr, Pos.BufferEnd - Pos.BufferPtr,
240 Pos.BufferEnd - Pos.BufferPtr));

Completed in 96 milliseconds