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

  /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 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/llvm/include/llvm/Support/
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/llvm/include/llvm/ADT/
StringExtras.h 31 /// BufferEnd, returning a pointer to the start of the string. This can be used
39 static inline char *utohex_buffer(IntTy X, char *BufferEnd) {
40 char *BufPtr = BufferEnd;
  /external/clang/lib/Lex/
Lexer.cpp 71 BufferEnd = BufEnd;
82 StringRef Buf(BufferStart, BufferEnd - BufferStart);
188 L->BufferEnd = StrData+TokLen;
189 assert(L->BufferEnd[0] == 0 && "Buffer is not nul terminated!");
    [all...]
PPLexerChange.cpp 269 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof);
315 const char *EndPos = CurLexer->BufferEnd;
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 282 // save BufferBegin/BufferEnd/CurBufferPtr here.
791 BufferEnd = BufferBegin+ActualSize;
813 if (CurBufferPtr == BufferEnd) {
    [all...]
  /external/clang/include/clang/Lex/
Lexer.h 52 const char *BufferEnd; // End of the buffer.
165 return BufferPtr == BufferEnd;
557 void cutOffLexing() { BufferPtr = BufferEnd; }
  /external/llvm/lib/Support/
MemoryBuffer.cpp 52 BufferEnd = BufEnd;

Completed in 468 milliseconds