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

  /external/llvm/include/llvm/Support/
MemoryBuffer.h 39 const char *BufferEnd; // End of the buffer.
51 const char *getBufferEnd() const { return BufferEnd; }
52 size_t getBufferSize() const { return BufferEnd-BufferStart; }
  /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/Lex/
Lexer.h 52 const char *BufferEnd; // End of the buffer.
159 return BufferPtr == BufferEnd;
203 return StringRef(BufferStart, BufferEnd - BufferStart);
602 void cutOffLexing() { BufferPtr = BufferEnd; }
  /external/clang/include/clang/AST/
CommentLexer.h 236 const char *const BufferEnd;
242 /// to newline or BufferEnd, for C comments points to star in '*/'.
305 assert(Loc >= BufferStart && Loc <= BufferEnd &&
349 const char *BufferStart, const char *BufferEnd);
  /external/clang/lib/AST/
CommentParser.cpp 45 const char *BufferEnd;
63 Pos.BufferEnd = Tok.getText().end();
75 assert(Pos.BufferPtr != Pos.BufferEnd);
81 assert(Pos.BufferPtr != Pos.BufferEnd);
83 if (Pos.BufferPtr == Pos.BufferEnd) {
242 Pos.BufferPtr, Pos.BufferEnd - Pos.BufferPtr,
244 Pos.BufferEnd - Pos.BufferPtr));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rpcndr.h 245 unsigned char *BufferEnd;
    [all...]

Completed in 203 milliseconds