HomeSort by: relevance | last modified time | path
    Searched defs:CurPtr (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCParser/
AsmLexer.h 28 const char *CurPtr = nullptr;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
CodeGenCoverage.cpp 46 const char *CurPtr = Buffer.getBufferStart();
48 while (CurPtr != Buffer.getBufferEnd()) {
50 const char *LexedBackendName = CurPtr;
51 while (*CurPtr++ != 0)
53 if (CurPtr == Buffer.getBufferEnd())
57 while (CurPtr != Buffer.getBufferEnd()) {
58 if (std::distance(CurPtr, Buffer.getBufferEnd()) < 8)
61 uint64_t RuleID = support::endian::read64(CurPtr, support::native);
62 CurPtr += 8;
NativeFormatting.cpp 22 char *CurPtr = EndPtr;
25 *--CurPtr = '0' + char(Value % 10);
28 return EndPtr - CurPtr;
152 char *CurPtr = EndPtr;
155 *--CurPtr = hexdigit(x, !Upper);
  /src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
LLLexer.h 29 const char *CurPtr;
  /src/external/apache2/llvm/dist/clang/lib/AST/
CommentLexer.cpp 241 const char *CurPtr = BufferPtr;
242 while (CurPtr != BufferEnd) {
243 while (!isVerticalWhitespace(*CurPtr)) {
244 CurPtr++;
245 if (CurPtr == BufferEnd)
249 const char *EscapePtr = CurPtr - 1;
257 CurPtr = skipNewline(CurPtr, BufferEnd);
259 return CurPtr; // Not an escaped newline.
Stmt.cpp 599 const char *CurPtr = StrStart;
605 for (; CurPtr != StrEnd; ++CurPtr) {
606 switch (*CurPtr) {
611 Result += *CurPtr;
630 if (CurPtr == StrEnd) {
636 char CurChar = *CurPtr++;
650 if (CurPtr == StrEnd) {
652 DiagOffs = CurPtr-StrStart-1;
656 char EscapedChar = *CurPtr++
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Allocator.h 89 : AllocatorT(static_cast<AllocatorT &&>(Old)), CurPtr(Old.CurPtr),
93 Old.CurPtr = Old.End = nullptr;
108 CurPtr = RHS.CurPtr;
116 RHS.CurPtr = RHS.End = nullptr;
135 CurPtr = (char *)Slabs.front();
136 End = CurPtr + SlabSize;
149 size_t Adjustment = offsetToAlignedAddr(CurPtr, Alignment);
159 if (Adjustment + SizeToAllocate <= size_t(End - CurPtr)) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGLexer.h 83 const char *CurPtr = nullptr;
107 return CurCode = LexToken(CurPtr == CurBuf.begin());
129 return std::make_pair(CurIntVal, (CurPtr - TokStart)-2);
155 // CurPtr, CurBuf and preprocessing include stack, and return true.
181 // When CurPtr reaches the current buffer's end, the control stack
233 // Look ahead for a preprocessing directive starting from CurPtr. The caller
234 // must only call this method, if *(CurPtr - 1) is '#'. If the method matches
238 // CurPtr is not adjusted by this method.
241 // Given a preprocessing token kind, adjusts CurPtr to the end
246 // to avoid adjusting CurPtr before we are sure that '#' is followe
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Lexer.cpp 603 const char *CurPtr = Buffer.begin();
605 while (CurPtr != Buffer.end()) {
606 char ch = *CurPtr++;
613 if (CurPtr != Buffer.end())
614 MaxLineOffset = CurPtr - Buffer.begin();
1596 bool Lexer::tryConsumeIdentifierUCN(const char *&CurPtr, unsigned Size,
1598 const char *UCNPtr = CurPtr + Size;
1599 uint32_t CodePoint = tryReadUCN(UCNPtr, CurPtr, /*Token=*/nullptr);
1605 makeCharRange(*this, CurPtr, UCNPtr),
1609 if ((UCNPtr - CurPtr == 6 && CurPtr[1] == 'u') |
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ConstantFolding.cpp 420 /// out of. ByteOffset is an offset into C. CurPtr is the pointer to copy
422 /// the CurPtr buffer. DL is the DataLayout.
423 bool ReadDataFromGlobal(Constant *C, uint64_t ByteOffset, unsigned char *CurPtr,
428 // If this element is zero or undefined, we can just return since *CurPtr is
445 CurPtr[i] = (unsigned char)(Val >> (n * 8));
454 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL);
458 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL);
462 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL);
479 !ReadDataFromGlobal(CS->getOperand(Index), ByteOffset, CurPtr,
496 CurPtr += NextEltOffset - CurEltOffset - ByteOffset
    [all...]

Completed in 20 milliseconds