Searched refs:Result (Results 51 - 75 of 528) sorted by relevance

1234567891011>>

/freebsd-11.0-release/contrib/llvm/lib/Support/Unix/
H A DPath.inc349 file_status &Result) {
353 Result = file_status(file_type::file_not_found);
355 Result = file_status(file_type::status_error);
375 Result =
382 std::error_code status(const Twine &Path, file_status &Result) {
388 return fillStatus(StatRet, Status, Result);
391 std::error_code status(int FD, file_status &Result) {
394 return fillStatus(StatRet, Status, Result);
563 static bool getDarwinConfDir(bool TempDir, SmallVectorImpl<char> &Result) {
572 Result
[all...]
/freebsd-11.0-release/contrib/llvm/lib/ProfileData/
H A DInstrProf.cpp169 bool doCompression, std::string &Result) {
183 Result.append(HeaderStr, HeaderLen);
184 Result += InputStr;
212 std::string &Result) {
217 return collectPGOFuncNameStrings(NameStrs, zlib::isAvailable(), Result);
266 instrprof_error Result = instrprof_error::success; local
275 Result = instrprof_error::counter_overflow;
281 return Result;
285 instrprof_error Result = instrprof_error::success; local
290 Result
168 collectPGOFuncNameStrings(const std::vector<std::string> &NameStrs, bool doCompression, std::string &Result) argument
211 collectPGOFuncNameStrings(const std::vector<GlobalVariable *> &NameVars, std::string &Result) argument
308 instrprof_error Result = instrprof_error::success; local
342 instrprof_error Result = instrprof_error::success; local
349 instrprof_error Result = instrprof_error::success; local
370 auto Result = local
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DDiagnosticIDs.h91 DiagnosticMapping Result; local
92 Result.Severity = (unsigned)Severity;
93 Result.IsUser = IsUser;
94 Result.IsPragma = IsPragma;
95 Result.HasNoWarningAsError = 0;
96 Result.HasNoErrorAsFatal = 0;
97 return Result;
/freebsd-11.0-release/contrib/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp265 StringRef Result(TokStart, CurPtr - TokStart);
268 if (Result.getAsInteger(Radix, Value))
280 return intToken(Result, Value);
288 StringRef Result(TokStart, CurPtr - TokStart);
289 return AsmToken(AsmToken::Integer, Result, 0);
299 StringRef Result(TokStart, CurPtr - TokStart);
302 if (Result.substr(2).getAsInteger(2, Value))
309 return intToken(Result, Value);
327 APInt Result(128, 0);
328 if (StringRef(TokStart, CurPtr - TokStart).getAsInteger(0, Result))
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Support/
H A DMD5.cpp232 void MD5::final(MD5Result &Result) { argument
262 Result[0] = a;
263 Result[1] = a >> 8;
264 Result[2] = a >> 16;
265 Result[3] = a >> 24;
266 Result[4] = b;
267 Result[5] = b >> 8;
268 Result[6] = b >> 16;
269 Result[7] = b >> 24;
270 Result[
280 stringifyResult(MD5Result &Result, SmallString<32> &Str) argument
[all...]
H A DProgram.cpp38 ProcessInfo Result = Wait( local
40 return Result.ReturnCode;
/freebsd-11.0-release/contrib/llvm/include/llvm/IR/
H A DPassManager.h312 template <typename PassT> typename PassT::Result &getResult(IRUnitT &IR) {
318 typedef detail::AnalysisResultModel<IRUnitT, PassT, typename PassT::Result>
320 return static_cast<ResultModelT &>(ResultConcept).Result;
329 typename PassT::Result *getCachedResult(IRUnitT &IR) const {
338 typedef detail::AnalysisResultModel<IRUnitT, PassT, typename PassT::Result>
340 return &static_cast<ResultModelT *>(ResultConcept)->Result;
603 class Result;
633 Result run(Module &M);
645 class FunctionAnalysisManagerModuleProxy::Result { class in class:llvm::FunctionAnalysisManagerModuleProxy
647 explicit Result(FunctionAnalysisManage function in class:llvm::FunctionAnalysisManagerModuleProxy::Result
650 Result(const Result &Arg) : FAM(Arg.FAM) {} function in class:llvm::FunctionAnalysisManagerModuleProxy::Result
651 Result(Result &&Arg) : FAM(std::move(Arg.FAM)) {} function in class:llvm::FunctionAnalysisManagerModuleProxy::Result
692 class Result { class in class:llvm::ModuleAnalysisManagerFunctionProxy
694 explicit Result(const ModuleAnalysisManager &MAM) : MAM(&MAM) {} function in class:llvm::ModuleAnalysisManagerFunctionProxy::Result
697 Result(const Result &Arg) : MAM(Arg.MAM) {} function in class:llvm::ModuleAnalysisManagerFunctionProxy::Result
698 Result(Result &&Arg) : MAM(std::move(Arg.MAM)) {} function in class:llvm::ModuleAnalysisManagerFunctionProxy::Result
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Object/
H A DCOFFObjectFile.cpp68 static bool decodeBase64StringEntry(StringRef Str, uint32_t &Result) { argument
96 Result = static_cast<uint32_t>(Value);
150 StringRef Result; local
151 std::error_code EC = getSymbolName(Symb, Result);
154 return Result;
162 uint64_t Result = getSymbolValue(Ref); local
168 return Result;
173 Result += Section->VirtualAddress;
177 Result += getImageBase();
179 return Result;
207 uint32_t Result = SymbolRef::SF_None; local
270 uint64_t Result = Sec->VirtualAddress; local
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Tooling/Core/
H A DReplacement.cpp81 std::string Result; local
82 llvm::raw_string_ostream Stream(Result);
227 bool Result = true; local
232 Result = I->apply(Rewrite) && Result;
234 Result = false;
237 return Result;
244 bool Result = true; local
249 Result = I->apply(Rewrite) && Result;
277 std::string Result; local
388 Replacements Result; local
[all...]
/freebsd-11.0-release/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugInfoEntry.cpp264 Optional<const char *> Result = FormValue.getAsCString(U);
265 return Result.hasValue() ? Result.getValue() : FailValue;
273 Optional<uint64_t> Result = FormValue.getAsAddress(U);
274 return Result.hasValue() ? Result.getValue() : FailValue;
282 Optional<uint64_t> Result = FormValue.getAsUnsignedConstant();
283 return Result.hasValue() ? Result.getValue() : FailValue;
291 Optional<uint64_t> Result
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/AMDGPU/
H A DSIInsertWaits.cpp150 Counters Result = { { 0, 0, 0 } }; local
152 Result.Named.VM = !!(TSFlags & SIInstrFlags::VM_CNT);
155 Result.Named.EXP = !!(TSFlags & SIInstrFlags::EXP_CNT &&
170 Result.Named.LGKM = Size > 4 ? 2 : 1;
175 Result.Named.LGKM = 1;
179 Result.Named.LGKM = 1;
183 Result.Named.LGKM = 0;
186 return Result;
245 RegInterval Result; local
246 Result
398 Counters Result = ZeroCounts; local
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp82 bool Result = InnerMatcher->dynMatches(DynNode, Finder, Builder); variable
83 if (Result) Builder->setBinding(ID, DynNode);
84 return Result;
211 auto Result = *this;
212 Result.Implementation = new IdDynMatcher(ID, Result.Implementation);
213 return Result;
269 BoundNodesTreeBuilder Result; local
275 Result.addMatch(BuilderInner);
278 *Builder = std::move(Result);
287 BoundNodesTreeBuilder Result = *Builder; local
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Lex/
H A DPPLexerChange.cpp235 SmallString<128> &Result) {
236 Result.clear();
243 Result = FilePath.substr(Path.size());
244 llvm::sys::path::append(Result,
253 Result = File->getName();
256 void Preprocessor::PropagateLineStartLeadingSpaceInfo(Token &Result) { argument
258 CurTokenLexer->PropagateLineStartLeadingSpaceInfo(Result);
262 CurLexer->PropagateLineStartLeadingSpaceInfo(Result);
295 bool Preprocessor::HandleEndOfFile(Token &Result, bool isEndOfMacro) { argument
378 Result
233 computeRelativePath(FileManager &FM, const DirectoryEntry *Dir, const FileEntry *File, SmallString<128> &Result) argument
523 HandleEndOfTokenLexer(Token &Result) argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/LibDriver/
H A DLibDriver.cpp141 std::pair<StringRef, std::error_code> Result = local
146 if (Result.second) {
147 if (Result.first.empty())
148 Result.first = ArgsArr[0];
149 llvm::errs() << Result.first << ": " << Result.second.message() << "\n";
/freebsd-11.0-release/contrib/llvm/utils/TableGen/
H A DAsmWriterInst.cpp39 std::string Result = Str + "(MI";
41 Result += ", " + utostr(MIOpNo);
43 Result += ", STI";
44 Result += ", O";
46 Result += ", \"" + MiModifier + '"';
47 return Result + ");";
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h50 llvm::APSInt Result(Value, Value.isUnsigned());
51 apply(Result); variable
52 return Result;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DObjCRuntime.cpp20 std::string Result; local
22 llvm::raw_string_ostream Out(Result);
25 return Result;
H A DVersionTuple.cpp20 std::string Result; local
22 llvm::raw_string_ostream Out(Result);
25 return Result;
/freebsd-11.0-release/contrib/llvm/include/llvm/ADT/
H A DAPFloat.h311 APFloat Result = *this; local
312 Result.add(RHS, rmNearestTiesToEven);
313 return Result;
319 APFloat Result = *this; local
320 Result.subtract(RHS, rmNearestTiesToEven);
321 return Result;
327 APFloat Result = *this; local
328 Result.multiply(RHS, rmNearestTiesToEven);
329 return Result;
335 APFloat Result local
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/Analysis/
H A DGlobalsModRef.h121 typedef GlobalsAAResult Result; typedef in class:llvm::GlobalsAA
137 std::unique_ptr<GlobalsAAResult> Result; member in class:llvm::GlobalsAAWrapperPass
144 GlobalsAAResult &getResult() { return *Result; }
145 const GlobalsAAResult &getResult() const { return *Result; }
/freebsd-11.0-release/sys/contrib/dev/acpica/compiler/
H A Dprexpress.c268 UINT64 Result; local
281 Result = PrEvaluateExpression (ExpandedLine);
284 Gbl_CurrentLineNumber, ACPI_FORMAT_UINT64 (Result));
286 *ReturnValue = Result;
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp462 LoopStructure Result; local
463 Result.Tag = Tag;
464 Result.Header = cast<BasicBlock>(Map(Header));
465 Result.Latch = cast<BasicBlock>(Map(Latch));
466 Result.LatchBr = cast<BranchInst>(Map(LatchBr));
467 Result.LatchExit = cast<BasicBlock>(Map(LatchExit));
468 Result.LatchBrExitIdx = LatchBrExitIdx;
469 Result.IndVarNext = Map(IndVarNext);
470 Result.IndVarStart = Map(IndVarStart);
471 Result
839 LoopStructure Result; local
923 cloneLoop(LoopConstrainer::ClonedLoop &Result, const char *Tag) const argument
1457 auto Result = IRC->computeSafeIterationSpace(SE, IndVar, B); local
[all...]
/freebsd-11.0-release/sys/contrib/dev/acpica/components/namespace/
H A Dnsutils.c273 char *Result = NULL; local
288 Result = &InternalName[1];
293 Result = &InternalName[2];
299 Result = &InternalName[3];
319 Result = &InternalName[i];
324 Result = &InternalName[(ACPI_SIZE) i+1];
330 Result = &InternalName[(ACPI_SIZE) i+2];
345 Result[i] = '_';
351 Result[i] = (char) toupper ((int) *ExternalName);
367 Result
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/Transforms/Utils/
H A DLocal.h198 Value *Result = Constant::getNullValue(IntPtrTy); local
226 Result = Builder->CreateAdd(Result, ConstantInt::get(IntPtrTy, Size),
235 Result = Builder->CreateAdd(Result, Scale, GEP->getName()+".offs");
248 Result = Builder->CreateAdd(Op, Result, GEP->getName()+".offs");
250 return Result;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaLookup.cpp2193 LookupResult Result(*this, R.getLookupNameInfo(), R.getLookupKind());
2194 Result.setBaseObjectType(Context.getRecordType(Class));
2195 LookupQualifiedName(Result, RD);
2199 for (auto I = Result.begin(), E = Result.end(); I != E; ++I) {
2205 Result.suppressDiagnostics();
2217 /// \param Result The result of the ambiguous lookup to be diagnosed.
2218 void Sema::DiagnoseAmbiguousLookup(LookupResult &Result) {
2219 assert(Result.isAmbiguous() && "Lookup result must be ambiguous");
2221 DeclarationName Name = Result
[all...]

Completed in 363 milliseconds

1234567891011>>