Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DObjDumper.cpp75 const uint8_t *StrEnd = StringContent.bytes_end(); in printAsStringList() local
77 while (CurrentWord <= StrEnd) { in printAsStringList()
79 StrEnd - CurrentWord); in printAsStringList()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterInlineAsm.cpp225 const char *StrEnd = strchr(StrStart, '}'); in EmitInlineAsmStr() local
226 if (!StrEnd) in EmitInlineAsmStr()
230 AP->PrintSpecial(MI, OS, StringRef(StrStart, StrEnd - StrStart)); in EmitInlineAsmStr()
231 LastEmitted = StrEnd+1; in EmitInlineAsmStr()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/BTF/
H A DBTFParser.cpp131 uint32_t StrEnd = StrStart + StrLen; in parseBTF()
134 uint32_t BytesExpected = std::max(StrEnd, TypesInfoEnd); in parseBTF()
141 StringsTable = Extractor.getData().slice(StrStart, StrEnd); in parseBTFExt()
127 uint32_t StrEnd = StrStart + StrLen; parseBTF() local
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp606 const char *StrEnd = Str.end(); in AnalyzeAsmString() local
613 for (; CurPtr != StrEnd; ++CurPtr) { in AnalyzeAsmString()
638 if (CurPtr == StrEnd) { in AnalyzeAsmString()
660 if (CurPtr == StrEnd) { in AnalyzeAsmString()
699 if (CurPtr == StrEnd) { // Premature end. in AnalyzeAsmString()
715 while (CurPtr != StrEnd && isDigit(*CurPtr)) in AnalyzeAsmString()
746 const char *NameEnd = (const char*)memchr(CurPtr, ']', StrEnd-CurPtr); in AnalyzeAsmString()
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DDiagnostic.cpp880 const char *StrEnd = std::find(DiagStr, DiagEnd, '%'); in FormatDiagnostic() local
881 OutStr.append(DiagStr, StrEnd); in FormatDiagnostic()
882 DiagStr = StrEnd; in FormatDiagnostic()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp228 Value *StrEnd = B.CreateInBoundsGEP(B.getInt8Ty(), StrBeg, Off, "endptr"); in convertStrToInt() local
229 B.CreateStore(StrEnd, EndPtr); in convertStrToInt()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprObjC.cpp550 const llvm::UTF8 *StrEnd = Str.bytes_end(); in BuildObjCBoxedExpr() local
552 if (llvm::isLegalUTF8String(&StrBegin, StrEnd)) { in BuildObjCBoxedExpr()