Searched refs:Result (Results 151 - 175 of 1126) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/llvm/lib/Support/Windows/
H A DMemory.inc144 MemoryBlock Result;
145 Result.Address = PA;
146 Result.AllocatedSize = AllocSize;
147 Result.Flags = (Flags & ~MF_HUGE_HINT) | (HugePages ? MF_HUGE_HINT : 0);
150 Memory::InvalidateInstructionCache(Result.Address, AllocSize);
152 return Result;
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DOrcV2CBindings.cpp351 [HandleResult, Ctx](Expected<SymbolMap> Result) {
352 if (Result) {
354 for (auto &KV : *Result)
360 HandleResult(wrap(Result.takeError()), nullptr, 0, Ctx);
478 LLVMOrcCSymbolFlagsMapPairs Result = static_cast<LLVMOrcCSymbolFlagsMapPairs>( local
484 Result[I] = {Name, fromJITSymbolFlags(Flags)};
488 return Result;
507 LLVMOrcSymbolStringPoolEntryRef *Result = local
512 Result[I] = wrap(SymbolStringPoolEntryUnsafe::from(Name));
516 return Result;
553 LLVMOrcMaterializationResponsibilityDelegate( LLVMOrcMaterializationResponsibilityRef MR, LLVMOrcSymbolStringPoolEntryRef *Symbols, size_t NumSymbols, LLVMOrcMaterializationResponsibilityRef *Result) argument
609 LLVMOrcExecutionSessionCreateJITDylib(LLVMOrcExecutionSessionRef ES, LLVMOrcJITDylibRef *Result, const char *Name) argument
659 LLVMOrcCreateDynamicLibrarySearchGeneratorForProcess( LLVMOrcDefinitionGeneratorRef *Result, char GlobalPrefix, LLVMOrcSymbolPredicate Filter, void *FilterCtx) argument
684 LLVMOrcCreateDynamicLibrarySearchGeneratorForPath( LLVMOrcDefinitionGeneratorRef *Result, const char *FileName, char GlobalPrefix, LLVMOrcSymbolPredicate Filter, void *FilterCtx) argument
710 LLVMOrcCreateStaticLibrarySearchGeneratorForPath( LLVMOrcDefinitionGeneratorRef *Result, LLVMOrcObjectLayerRef ObjLayer, const char *FileName) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/TextAPI/
H A DPlatform.cpp57 PlatformSet Result; local
59 Result.insert(mapToPlatformType(Target));
60 return Result;
/freebsd-current/contrib/llvm-project/clang/include/clang/Tooling/
H A DRefactoringCallbacks.h81 void run(const ast_matchers::MatchFinder::MatchResult &Result) override;
98 void run(const ast_matchers::MatchFinder::MatchResult &Result) override;
116 void run(const ast_matchers::MatchFinder::MatchResult &Result) override;
129 void run(const ast_matchers::MatchFinder::MatchResult &Result) override;
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarmod-sun-shell.exp5 Result of ${echo word; false:L} is "echo word; false" (eval-keep-dollar-and-undefined, defined)
9 Result of ${echo word; false:sh} is "word" (eval-keep-dollar-and-undefined, defined)
H A Ddirective-unexport-env.exp9 Result of ${.MAKE.EXPORTED:O} is "UT_EXPORTED"
11 Result of ${.MAKE.EXPORTED:u} is "UT_EXPORTED"
/freebsd-current/contrib/llvm-project/clang/lib/Format/
H A DDefinitionBlockSeparator.h36 tooling::Replacements &Result, FormatTokenLexer &Tokens);
H A DMacroExpander.cpp179 SmallVector<FormatToken *, 8> Result; local
183 // Adds the given token to Result.
186 Result.push_back(Tok);
189 // If Tok references a parameter, adds the corresponding argument to Result.
218 // Expand the definition into Result.
231 assert(Result.size() >= 1 && Result.back()->is(tok::eof));
232 if (Result.size() > 1) {
233 ++Result[0]->MacroCtx->StartOfExpansion;
234 ++Result[Resul
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp152 LineNumberInfo Result; local
154 Result.Offset = Address - StartAddress;
155 Result.LineNumber = Line.Line;
157 return Result;
165 iJIT_Method_Load Result; local
166 memset(&Result, 0, sizeof(iJIT_Method_Load));
168 Result.method_id = Wrapper.iJIT_GetNewMethodID();
169 Result.method_name = const_cast<char*>(FnName);
170 Result.method_load_address = reinterpret_cast<void*>(FnStart);
171 Result
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/
H A Dsanitizer_wrappers.cpp45 using Result = R;
58 GetTypes<__VA_ARGS__>::Result __interceptor_##Function( \
60 GetTypes<__VA_ARGS__>::Result Function( \
66 GetTypes<__VA_ARGS__>::Result __interceptor_##Function( \
69 GetTypes<__VA_ARGS__>::Result Function( \
76 GetTypes<__VA_ARGS__>::Result __interceptor_##Function( \
80 GetTypes<__VA_ARGS__>::Result Function( \
88 GetTypes<__VA_ARGS__>::Result __interceptor_##Function( \
93 GetTypes<__VA_ARGS__>::Result Function( \
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Object/
H A DTapiUniversal.h45 auto Result = local
47 return Result.first;
51 auto Result = local
53 return Result.second;
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.h27 llvm::SmallVectorImpl<char> &Result);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyTargetTransformInfo.cpp29 unsigned Result = BaseT::getNumberOfRegisters(ClassID); local
34 Result = std::max(Result, 16u);
36 return Result;
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeEnumInjectedSources.cpp25 std::string Result; local
26 Result.reserve(DataLength);
33 Result += toStringRef(Data);
35 return Result;
/freebsd-current/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dwrapper_function_utils_test.cpp105 int32_t Result;
107 (void *)&addWrapper, Result, 1, 2));
108 EXPECT_EQ(Result, (int32_t)3);
128 int32_t Result;
131 (void *)&addMethodWrapper, Result, ExecutorAddr::fromPtr(&AddObj), 2));
132 EXPECT_EQ(Result, (int32_t)3);
179 int32_t Result = 0;
180 auto Err = WFC.runWithSPSRet<int32_t>(Result);
182 EXPECT_EQ(Result, 6);
/freebsd-current/sys/contrib/dev/acpica/compiler/
H A Dprexpress.c374 UINT64 Result; local
387 Result = PrEvaluateExpression (ExpandedLine);
390 AslGbl_CurrentLineNumber, ACPI_FORMAT_UINT64 (Result));
392 *ReturnValue = Result;
/freebsd-current/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp111 TokenInfo Result; local
112 Result.Range.Start = currentLocation();
115 Result.Kind = TokenInfo::TK_CodeCompletion;
116 Result.Text = StringRef(CodeCompletionLocation, 0);
118 return Result;
122 Result.Kind = TokenInfo::TK_Eof;
123 Result.Text = "";
124 return Result;
132 Result.Kind = TokenInfo::TK_Comma;
133 Result
214 consumeNumberLiteral(TokenInfo *Result) argument
270 consumeStringLiteral(TokenInfo *Result) argument
396 std::optional<DynTypedMatcher> Result = local
583 VariantMatcher Result = S->actOnMatcherExpression( local
614 VariantMatcher Result = S->actOnMatcherExpression( local
726 VariantMatcher Result = S->actOnMatcherExpression( local
916 std::optional<DynTypedMatcher> Result = Value.getMatcher().getSingleMatcher(); local
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DSimpleExecutorDylibManager.cpp46 std::vector<ExecutorSymbolDef> Result; local
55 Result.push_back(ExecutorSymbolDef());
74 Result.push_back({ExecutorAddr::fromPtr(Addr), JITSymbolFlags::Exported});
78 return Result;
/freebsd-current/contrib/llvm-project/clang/lib/Lex/
H A DHeaderMap.cpp34 unsigned Result = 0; local
38 Result += toLowercase(*S) * 13;
39 return Result;
133 HMapBucket Result; local
134 Result.Key = HMAP_EmptyBucketKey;
142 Result.Key = getEndianAdjustedWord(BucketPtr->Key);
143 Result.Prefix = getEndianAdjustedWord(BucketPtr->Prefix);
144 Result.Suffix = getEndianAdjustedWord(BucketPtr->Suffix);
145 return Result;
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-cxxfilt/
H A Dllvm-cxxfilt.cpp76 std::string Result; local
77 if (nonMicrosoftDemangle(DecoratedStr, Result, CanHaveLeadingDot,
79 return Result;
92 Result = Undecorated ? Prefix + Undecorated : Mangled;
94 return Result;
135 std::string Result; local
140 Result += ::demangle(std::string(Word.first)) + Word.second.str();
142 Result = ::demangle(std::string(Mangled));
143 OS << Result << '\n'; local
/freebsd-current/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterpBuiltin.cpp158 static bool retPrimValue(InterpState &S, CodePtr OpPC, APValue &Result, argument
161 return RetVoid(S, OpPC, Result);
165 return Ret<X>(S, OpPC, Result);
198 int32_t Result = 0; local
210 Result = 1;
213 Result = -1;
220 pushInt(S, Result);
290 Floating Result; local
293 Result = Floating(
296 Result
343 Floating Result; local
363 Floating Result; local
457 int32_t Result = local
595 APSInt Result; local
861 CharUnits Result; local
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h277 DecodedAnnotation Result; local
278 Result.OpCode = static_cast<BinaryAnnotationsOpCode>(Op);
279 switch (Result.OpCode) {
281 Result.Name = "Invalid";
285 Result.Name = "CodeOffset";
286 Result.U1 = GetCompressedAnnotation(Next);
289 Result.Name = "ChangeCodeOffsetBase";
290 Result.U1 = GetCompressedAnnotation(Next);
293 Result.Name = "ChangeCodeOffset";
294 Result
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DRawCommentList.cpp194 const std::string Result = P.Parse(); local
195 const unsigned BriefTextLength = Result.size();
197 memcpy(BriefTextPtr, Result.c_str(), BriefTextLength + 1);
366 std::string Result;
369 Result += Line.Text + "\n";
371 auto LastChar = Result.find_last_not_of('\n');
372 Result.erase(LastChar + 1, Result.size());
374 return Result;
393 std::vector<RawComment::CommentLine> Result; local
[all...]
/freebsd-current/sys/contrib/dev/acpica/components/namespace/
H A Dnsutils.c381 char *Result = NULL; local
396 Result = &InternalName[1];
401 Result = &InternalName[2];
407 Result = &InternalName[3];
427 Result = &InternalName[i];
432 Result = &InternalName[(ACPI_SIZE) i+1];
438 Result = &InternalName[(ACPI_SIZE) i+2];
453 Result[i] = '_';
459 Result[i] = (char) toupper ((int) *ExternalName);
475 Result
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/ProfileData/
H A DItaniumManglingCanonicalizer.cpp120 T *Result = new (New->getNode()) T(std::forward<Args>(As)...); local
122 return {Result, true};
143 std::pair<Node *, bool> Result = local
145 if (Result.second) {
147 MostRecentlyCreated = Result.first;
148 } else if (Result.first) {
150 if (auto *N = Remappings.lookup(Result.first)) {
151 Result.first = N;
152 assert(!Remappings.contains(Result.first) &&
155 if (Result
[all...]

Completed in 163 milliseconds

1234567891011>>