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

  /external/clang/lib/AST/
CommentLexer.cpp 118 const char *findNewline(const char *BufferPtr, const char *BufferEnd) {
119 for ( ; BufferPtr != BufferEnd; ++BufferPtr) {
123 return BufferEnd;
126 const char *skipNewline(const char *BufferPtr, const char *BufferEnd) {
127 if (BufferPtr == BufferEnd)
135 if (BufferPtr != BufferEnd && *BufferPtr == '\n')
142 const char *BufferEnd) {
143 for ( ; BufferPtr != BufferEnd; ++BufferPtr) {
147 return BufferEnd;
151 const char *BufferEnd) {
    [all...]
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));
  /external/llvm/include/llvm/CodeGen/
JITCodeEmitter.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
81 if (CurBufferPtr != BufferEnd)
89 if (4 <= BufferEnd-CurBufferPtr) {
95 CurBufferPtr = BufferEnd;
103 if (4 <= BufferEnd-CurBufferPtr) {
109 CurBufferPtr = BufferEnd;
117 if (8 <= BufferEnd-CurBufferPtr) {
127 CurBufferPtr = BufferEnd;
135 if (8 <= BufferEnd-CurBufferPtr)
    [all...]
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/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/clang/lib/Lex/
Lexer.cpp 59 BufferEnd = BufEnd;
70 StringRef Buf(BufferStart, BufferEnd - BufferStart);
187 L->BufferEnd = StrData+TokLen;
188 assert(L->BufferEnd[0] == 0 && "Buffer is not nul terminated!");
    [all...]
PPLexerChange.cpp 256 const char *EndPos = CurLexer->BufferEnd;
349 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof);
PPDirectives.cpp     [all...]
  /external/llvm/include/llvm/ADT/
StringExtras.h 48 /// BufferEnd, returning a pointer to the start of the string. This can be used
56 static inline char *utohex_buffer(IntTy X, char *BufferEnd) {
57 char *BufPtr = BufferEnd;
  /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/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 280 // save BufferBegin/BufferEnd/CurBufferPtr here.
785 BufferEnd = BufferBegin+ActualSize;
807 if (CurBufferPtr == BufferEnd) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
usbdlib.h 180 IN PUCHAR BufferEnd);
  /external/llvm/lib/Support/
MemoryBuffer.cpp 51 BufferEnd = BufEnd;
  /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 178 milliseconds