Home
last modified time | relevance | path

Searched refs:StrEnd (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DObjDumper.cpp73 const uint8_t *StrEnd = StringContent.bytes_end(); in printAsStringList() local
75 while (CurrentWord <= StrEnd) { in printAsStringList()
77 StrEnd - CurrentWord); in printAsStringList()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterInlineAsm.cpp223 const char *StrEnd = strchr(StrStart, '}'); in EmitInlineAsmStr() local
224 if (!StrEnd) in EmitInlineAsmStr()
228 AP->PrintSpecial(MI, OS, StringRef(StrStart, StrEnd - StrStart)); in EmitInlineAsmStr()
229 LastEmitted = StrEnd+1; in EmitInlineAsmStr()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DStmt.cpp605 const char *StrEnd = Str.end(); in AnalyzeAsmString() local
612 for (; CurPtr != StrEnd; ++CurPtr) { in AnalyzeAsmString()
637 if (CurPtr == StrEnd) { in AnalyzeAsmString()
659 if (CurPtr == StrEnd) { in AnalyzeAsmString()
698 if (CurPtr == StrEnd) { // Premature end. in AnalyzeAsmString()
714 while (CurPtr != StrEnd && isDigit(*CurPtr)) in AnalyzeAsmString()
745 const char *NameEnd = (const char*)memchr(CurPtr, ']', StrEnd-CurPtr); in AnalyzeAsmString()
/openbsd-src/gnu/llvm/llvm/lib/InterfaceStub/
H A DELFObjHandler.cpp430 size_t StrEnd = Str.find('\0', Offset); in terminatedSubstr() local
431 if (StrEnd == StringLiteral::npos) { in terminatedSubstr()
436 size_t StrLen = StrEnd - Offset; in terminatedSubstr()
/openbsd-src/gnu/llvm/clang/lib/Basic/
H A DDiagnostic.cpp883 const char *StrEnd = std::find(DiagStr, DiagEnd, '%'); in FormatDiagnostic() local
884 OutStr.append(DiagStr, StrEnd); in FormatDiagnostic()
885 DiagStr = StrEnd; in FormatDiagnostic()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp178 Value *StrEnd = B.CreateInBoundsGEP(B.getInt8Ty(), StrBeg, Off, "endptr"); in convertStrToInt() local
179 B.CreateStore(StrEnd, EndPtr); in convertStrToInt()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaExprObjC.cpp541 const llvm::UTF8 *StrEnd = Str.bytes_end(); in BuildObjCBoxedExpr() local
543 if (llvm::isLegalUTF8String(&StrBegin, StrEnd)) { in BuildObjCBoxedExpr()