HomeSort by relevance Sort by last modified time
    Searched full:curptr (Results 1 - 25 of 29) sorted by null

1 2

  /external/llvm/lib/MC/MCParser/
AsmLexer.cpp 26 CurPtr = NULL;
37 CurPtr = ptr;
39 CurPtr = CurBuf->getBufferStart();
53 char CurChar = *CurPtr++;
60 if (CurPtr-1 != CurBuf->getBufferEnd())
64 --CurPtr; // Another call to lex will return EOF again.
76 while (isdigit(*CurPtr))
77 ++CurPtr;
82 if (*CurPtr == 'e' || *CurPtr == 'E')
    [all...]
  /external/llvm/lib/TableGen/
TGLexer.cpp 31 CurPtr = CurBuf->getBufferStart();
47 char CurChar = *CurPtr++;
54 if (CurPtr-1 != CurBuf->getBufferEnd())
63 CurPtr = ParentIncludeLoc.getPointer();
68 --CurPtr; // Another call to lex will return EOF again.
76 if ((*CurPtr == '\n' || (*CurPtr == '\r')) &&
77 *CurPtr != CurChar)
78 ++CurPtr; // Eat the two char newline sequence.
84 return *(CurPtr + Index)
    [all...]
TGLexer.h 64 const char *CurPtr;
  /external/llvm/lib/AsmParser/
LLLexer.cpp 174 static const char *isLabelTail(const char *CurPtr) {
176 if (CurPtr[0] == ':') return CurPtr+1;
177 if (!isLabelChar(CurPtr[0])) return 0;
178 ++CurPtr;
191 CurPtr = CurBuf->getBufferStart();
199 char CurChar = *CurPtr++;
205 if (CurPtr-1 != CurBuf->getBufferEnd())
209 --CurPtr; // Another call to lex will return EOF again.
216 TokStart = CurPtr;
    [all...]
LLLexer.h 30 const char *CurPtr;
  /external/clang/lib/Lex/
Lexer.cpp 524 const char *CurPtr = Buffer->getBufferStart();
526 while (CurPtr != Buffer->getBufferEnd()) {
527 char ch = *CurPtr++;
534 if (CurPtr != Buffer->getBufferEnd())
535 MaxLineOffset = CurPtr - Buffer->getBufferStart();
    [all...]
PTHLexer.cpp 41 : PreprocessorLexer(&PP, FID), TokBuf(D), CurPtr(D), LastHashTokPtr(0),
54 // Shadow CurPtr into an automatic variable.
55 const unsigned char *CurPtrShadow = CurPtr;
66 CurPtr = CurPtrShadow;
118 LastHashTokPtr = CurPtr - DISK_TOKEN_SIZE;
178 const unsigned char* p = CurPtr;
192 CurPtr = p;
261 // If we are skipping the first #if block it will be the case that CurPtr
264 if (CurPtr > HashEntryI) {
265 assert(CurPtr == HashEntryI + DISK_TOKEN_SIZE)
    [all...]
  /external/llvm/test/CodeGen/Blackfin/
switch2.ll 3 define i8* @FindChar(i8* %CurPtr) {
  /external/llvm/test/CodeGen/X86/
SwitchLowering.ll 4 define i8* @FindChar(i8* %CurPtr) {
12 %CurPtr_addr.0 = getelementptr i8* %CurPtr, i64 %gep.upgrd.1 ; <i8*> [#uses=1]
15 %tmp2 = getelementptr i8* %CurPtr, i32 %tmp2.rec ; <i8*> [#uses=1]
  /external/dropbear/libtomcrypt/src/hashes/helper/
hash_memory_multi.c 34 const unsigned char *curptr; local
60 curptr = in;
64 if ((err = hash_descriptor[hash].process(md, curptr, curlen)) != CRYPT_OK) {
68 curptr = va_arg(args, const unsigned char*);
69 if (curptr == NULL) {
  /external/dropbear/libtomcrypt/src/mac/f9/
f9_memory_multi.c 41 const unsigned char *curptr; local
60 curptr = in;
64 if ((err = f9_process(f9, curptr, curlen)) != CRYPT_OK) {
68 curptr = va_arg(args, const unsigned char*);
69 if (curptr == NULL) {
  /external/dropbear/libtomcrypt/src/mac/hmac/
hmac_memory_multi.c 42 const unsigned char *curptr; local
61 curptr = in;
65 if ((err = hmac_process(hmac, curptr, curlen)) != CRYPT_OK) {
69 curptr = va_arg(args, const unsigned char*);
70 if (curptr == NULL) {
  /external/dropbear/libtomcrypt/src/mac/omac/
omac_memory_multi.c 41 const unsigned char *curptr; local
60 curptr = in;
64 if ((err = omac_process(omac, curptr, curlen)) != CRYPT_OK) {
68 curptr = va_arg(args, const unsigned char*);
69 if (curptr == NULL) {
  /external/dropbear/libtomcrypt/src/mac/pmac/
pmac_memory_multi.c 41 const unsigned char *curptr; local
59 curptr = in;
63 if ((err = pmac_process(pmac, curptr, curlen)) != CRYPT_OK) {
67 curptr = va_arg(args, const unsigned char*);
68 if (curptr == NULL) {
  /external/dropbear/libtomcrypt/src/mac/xcbc/
xcbc_memory_multi.c 41 const unsigned char *curptr; local
60 curptr = in;
64 if ((err = xcbc_process(xcbc, curptr, curlen)) != CRYPT_OK) {
68 curptr = va_arg(args, const unsigned char*);
69 if (curptr == NULL) {
  /external/llvm/lib/Support/
Allocator.cpp 45 /// the new slab. Modifies CurPtr and End.
56 CurPtr = (char*)(CurSlab + 1);
83 CurPtr = (char*)(CurSlab + 1);
99 // Allocate the aligned space, going forwards from CurPtr.
100 char *Ptr = AlignPtr(CurPtr, Alignment);
104 CurPtr = Ptr + Size;
125 Ptr = AlignPtr(CurPtr, Alignment);
126 CurPtr = Ptr + Size;
127 assert(CurPtr <= End && "Unable to allocate memory!");
raw_ostream.cpp 112 char *CurPtr = EndPtr;
115 *--CurPtr = '0' + char(N % 10);
118 return write(CurPtr, EndPtr-CurPtr);
138 char *CurPtr = EndPtr;
141 *--CurPtr = '0' + char(N % 10);
144 return write(CurPtr, EndPtr-CurPtr);
164 char *CurPtr = EndPtr;
168 *--CurPtr = (x < 10 ? '0' + x : 'a' + x - 10)
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 321 const char *CurPtr = StrStart;
327 for (; CurPtr != StrEnd; ++CurPtr) {
328 switch (*CurPtr) {
333 Result += *CurPtr;
349 if (CurPtr == StrEnd) {
355 char CurChar = *CurPtr++;
369 if (CurPtr == StrEnd) {
371 DiagOffs = CurPtr-StrStart-1;
375 char EscapedChar = *CurPtr++
    [all...]
  /frameworks/base/media/libdrm/mobile1/src/xml/
xml_tinyparser.c 625 pWbxml->curPtr = pWbxml->Content = buffer;
633 pWbxml->curPtr = pWbxml->Content;
638 if (pWbxml->curPtr > pWbxml->End)
648 if (pWbxml->curPtr > pWbxml->End)
651 tagChar = *pWbxml->curPtr;
652 pWbxml->curPtr++;
664 return *pWbxml->curPtr++;
669 pWbxml->curPtr += offset;
676 num = WBXML_GetUintVar(pWbxml->curPtr, &len);
677 pWbxml->curPtr += len
    [all...]
  /external/clang/include/clang/Lex/
Lexer.h 500 void LexIdentifier (Token &Result, const char *CurPtr);
501 void LexNumericConstant (Token &Result, const char *CurPtr);
502 void LexStringLiteral (Token &Result, const char *CurPtr,
504 void LexRawStringLiteral (Token &Result, const char *CurPtr,
506 void LexAngledStringLiteral(Token &Result, const char *CurPtr);
507 void LexCharConstant (Token &Result, const char *CurPtr,
509 bool LexEndOfFile (Token &Result, const char *CurPtr);
511 bool SkipWhitespace (Token &Result, const char *CurPtr);
512 bool SkipBCPLComment (Token &Result, const char *CurPtr);
513 bool SkipBlockComment (Token &Result, const char *CurPtr);
    [all...]
PTHLexer.h 30 /// CurPtr - Pointer into current offset of the token buffer where
32 const unsigned char* CurPtr;
87 tok::TokenKind x = (tok::TokenKind)*CurPtr;
  /external/llvm/include/llvm/Support/
Allocator.h 111 /// CurPtr - The current pointer into the current slab. This points to the
113 char *CurPtr;
129 /// the new slab. Modifies CurPtr and End.
206 char *End = Slab == Allocator.CurSlab ? Allocator.CurPtr :
  /external/llvm/include/llvm/MC/MCParser/
AsmLexer.h 33 const char *CurPtr;
  /external/skia/src/animator/
SkDisplayApply.cpp 73 for (SkDrawable** curPtr = fScopes.begin(); curPtr < fScopes.end(); curPtr++)
74 delete *curPtr;
163 for (SkDrawable** curPtr = fScopes.begin(); curPtr < fScopes.end(); curPtr++) {
164 if (*curPtr == child || (*curPtr)->contains(child))
  /frameworks/base/media/libdrm/mobile1/include/xml/
xml_tinyParser.h 115 uint8_t *curPtr;

Completed in 2170 milliseconds

1 2