OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BufferEnd
(Results
1 - 13
of
13
) 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
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));
/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
40
const char *
BufferEnd
; // End of the buffer.
52
const char *getBufferEnd() const { return
BufferEnd
; }
53
size_t getBufferSize() const { return
BufferEnd
-BufferStart; }
/external/llvm/include/llvm/ADT/
StringExtras.h
42
///
BufferEnd
, returning a pointer to the start of the string. This can be used
50
static inline char *utohex_buffer(IntTy X, char *
BufferEnd
) {
51
char *BufPtr =
BufferEnd
;
/external/clang/lib/Lex/
Lexer.cpp
71
BufferEnd
= BufEnd;
82
StringRef Buf(BufferStart,
BufferEnd
- BufferStart);
195
L->
BufferEnd
= StrData+TokLen;
196
assert(L->
BufferEnd
[0] == 0 && "Buffer is not nul terminated!");
[
all
...]
PPLexerChange.cpp
294
CurLexer->FormTokenWithChars(Result, CurLexer->
BufferEnd
, tok::eof);
340
const char *EndPos = CurLexer->
BufferEnd
;
PPDirectives.cpp
[
all
...]
/external/clang/include/clang/Lex/
Lexer.h
52
const char *
BufferEnd
; // End of the buffer.
163
return BufferPtr ==
BufferEnd
;
207
return StringRef(BufferStart,
BufferEnd
- BufferStart);
596
void cutOffLexing() { BufferPtr =
BufferEnd
; }
/external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp
286
// save BufferBegin/
BufferEnd
/CurBufferPtr here.
780
BufferEnd
= BufferBegin+ActualSize;
802
if (CurBufferPtr ==
BufferEnd
) {
[
all
...]
/external/clang/include/clang/AST/
CommentLexer.h
236
const char *const
BufferEnd
;
242
/// to newline or
BufferEnd
, for C comments points to star in '*/'.
315
assert(Loc >= BufferStart && Loc <=
BufferEnd
&&
359
const char *BufferStart, const char *
BufferEnd
);
/external/llvm/lib/Support/
MemoryBuffer.cpp
59
BufferEnd
= BufEnd;
Completed in 276 milliseconds