Searched defs:Result (Results 226 - 250 of 759) sorted by relevance

1234567891011>>

/external/llvm/lib/Target/
H A DTargetMachineC.cpp219 bool Result = LLVMTargetMachineEmit(T, M, dest, codegen, ErrorMessage); local
221 return Result;
229 bool Result = LLVMTargetMachineEmit(T, M, OStream, codegen, ErrorMessage); local
234 return Result;
/external/llvm/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp197 LazyValueInfo::Tristate Result =
199 if (Result == LazyValueInfo::Unknown) return false;
202 if (Result == LazyValueInfo::True)
344 auto Result = LVI->getPredicateAt(ICmpInst::ICMP_SGE, O, Zero, SDI); local
345 if (Result != LazyValueInfo::True)
397 LazyValueInfo::Tristate Result =
399 if (Result == LazyValueInfo::Unknown)
402 return (Result == LazyValueInfo::True) ?
/external/llvm/tools/lli/
H A Dlli.cpp327 Function *Result; local
329 Result = Function::Create(
333 Result = Function::Create(
337 BasicBlock *BB = BasicBlock::Create(Context, "__main", Result);
578 int Result = -1; local
621 Result = EE->runFunctionAsMain(EntryFn, InputArgv, envp);
631 ResultGV.IntVal = APInt(32, Result);
634 errs() << "ERROR: exit(" << Result << ") returned!\n";
684 Result = ExitOnErr(R.callIntVoid(Entry));
698 return Result;
[all...]
/external/llvm/tools/llvm-link/
H A Dllvm-link.cpp117 std::unique_ptr<Module> Result = local
119 if (!Result) {
125 Result->materializeMetadata();
126 UpgradeDebugInfo(*Result);
129 return Result;
/external/llvm/unittests/Analysis/
H A DAliasAnalysisTest.cpp101 std::unique_ptr<TestCustomAAResult> Result; member in class:__anon13730::TestCustomAAWrapperPass
118 Result.reset(new TestCustomAAResult(std::move(CB)));
123 Result.reset();
127 TestCustomAAResult &getResult() { return *Result; }
128 const TestCustomAAResult &getResult() const { return *Result; }
H A DCGSCCPassManagerTest.cpp27 struct Result { struct in class:__anon13734::TestModuleAnalysis
28 Result(int Count) : FunctionCount(Count) {} function in struct:__anon13734::TestModuleAnalysis::Result
37 Result run(Module &M, ModuleAnalysisManager &AM) {
39 return Result(M.size());
52 struct Result { struct in class:__anon13734::TestSCCAnalysis
53 Result(int Count) : FunctionCount(Count) {} function in struct:__anon13734::TestSCCAnalysis::Result
62 Result run(LazyCallGraph::SCC &C, CGSCCAnalysisManager &AM) {
64 return Result(C.size());
77 struct Result { struct in class:__anon13734::TestFunctionAnalysis
78 Result(in function in struct:__anon13734::TestFunctionAnalysis::Result
107 struct Result { struct in class:__anon13734::TestImmutableFunctionAnalysis
[all...]
/external/llvm/unittests/IR/
H A DPassManagerTest.cpp24 struct Result { struct in class:__anon13778::TestFunctionAnalysis
25 Result(int Count) : InstructionCount(Count) {} function in struct:__anon13778::TestFunctionAnalysis::Result
32 Result run(Function &F, FunctionAnalysisManager &AM) {
39 return Result(Count);
53 struct Result { struct in class:__anon13778::TestModuleAnalysis
54 Result(int Count) : FunctionCount(Count) {} function in struct:__anon13778::TestModuleAnalysis::Result
60 Result run(Module &M, ModuleAnalysisManager &AM) {
65 return Result(Count);
120 if (TestModuleAnalysis::Result *TMA =
126 if (TestFunctionAnalysis::Result *A
[all...]
/external/llvm/unittests/Linker/
H A DLinkModulesTest.cpp208 LLVMBool Result = local
210 EXPECT_EQ(0, Result);
230 LLVMBool Result = local
232 EXPECT_EQ(1, Result);
/external/llvm/utils/PerfectShuffle/
H A DPerfectShuffle.cpp129 unsigned Result = 0; local
141 Result |= ResElt << (4*i);
143 return Result;
/external/llvm/utils/TableGen/
H A DInstrInfoEmitter.cpp89 std::vector<std::string> Result; local
165 Result.push_back(Res);
169 return Result;
/external/r8/src/main/java/com/android/tools/r8/bisect/
H A DBisectOptions.java29 public final Result result;
31 public enum Result { UNKNOWN, GOOD, BAD } enum in class:BisectOptions
80 Result result) {
110 Result result = Result.UNKNOWN;
112 result = Result.GOOD;
115 if (result == Result.GOOD) {
119 result = Result.BAD;
/external/skia/src/ports/
H A DSkFontMgr_FontConfigInterface.cpp104 struct Result : public SkResourceCache::Rec { struct in class:SkFontRequestCache
105 Result(Request* request, SkTypeface* typeface) function in struct:SkFontRequestCache::Result
108 Result(Result&&) = default;
109 Result& operator=(Result&&) = default;
127 fCachedResults.add(new Result(request, face));
133 const Result& result = static_cast<const Result&>(rec);
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DMachineCodeEmitter.h258 void *Result; local
263 Result = 0;
266 Result = CurBufferPtr;
270 return Result;
H A DMachineRelocation.h58 void *Result; // If this has been resolved to a resolved pointer member in union:llvm::MachineRelocation::__anon19630
87 MachineRelocation Result; local
88 Result.Offset = offset;
89 Result.ConstantVal = cst;
90 Result.TargetReloType = RelocationType;
91 Result.AddrType = isGV;
92 Result.MayNeedFarStub = MayNeedFarStub;
93 Result.GOTRelative = GOTrelative;
94 Result.TargetResolve = false;
95 Result
107 MachineRelocation Result; local
124 MachineRelocation Result; local
144 MachineRelocation Result; local
163 MachineRelocation Result; local
182 MachineRelocation Result; local
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DGCOV.h127 uint32_t Result; local
131 Result = *(uint32_t *)(Str.data());
132 return Result;
138 uint64_t Result = Lo | (Hi << 32); local
139 return Result;
/external/swiftshader/third_party/LLVM/lib/Archive/
H A DArchiveReader.cpp25 unsigned Result = 0; local
29 return Result;
30 Result |= (unsigned)((*At++) & 0x7F) << Shift;
33 return Result;
/external/swiftshader/third_party/LLVM/lib/AsmParser/
H A DLLLexer.cpp45 uint64_t Result = 0; local
47 uint64_t OldRes = Result;
48 Result *= 10;
49 Result += *Buffer-'0';
50 if (Result < OldRes) { // Uh, oh, overflow detected!!!
55 return Result;
59 uint64_t Result = 0; local
61 uint64_t OldRes = Result;
62 Result *= 16;
65 Result
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp56 SDValue TranslateLegalizeResults(SDValue Op, SDValue Result);
104 SDValue VectorLegalizer::TranslateLegalizeResults(SDValue Op, SDValue Result) { argument
107 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
108 return Result.getValue(Op.getResNo());
124 SDValue Result = local
133 return TranslateLegalizeResults(Op, Result);
138 return TranslateLegalizeResults(Op, Result);
204 Result = PromoteVectorOp(Op);
211 Result = Tmp1;
218 Result
[all...]
H A DSelectionDAGPrinter.cpp107 std::string Result = Node->getOperationName(G); local
109 raw_string_ostream OS(Result);
112 return Result;
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp196 GenericValue *Result = new GenericValue(); local
197 *Result = unwrap(EE)->runFunction(unwrap<Function>(F), ArgVec);
198 return wrap(Result);
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCContext.cpp101 MCSymbol *Result = new (*this) MCSymbol(NameEntry->getKey(), isTemporary); local
103 return Result;
210 MCSectionELF *Result = new (*this) MCSectionELF(Entry.getKey(), Type, Flags, local
212 Entry.setValue(Result);
213 return Result;
217 MCSectionELF *Result = local
220 return Result;
235 MCSectionCOFF *Result = new (*this) MCSectionCOFF(Entry.getKey(),
239 Entry.setValue(Result);
240 return Result;
[all...]
H A DMCExpr.cpp348 /// Result = (Result_A - Result_B + Result_Cst)
350 /// Result = LHS + RHS
352 /// Result = (LHS_A - LHS_B + LHS_Cst) + (RHS_A - RHS_B + RHS_Cst).
387 // Result = (LHS_A - LHS_B + LHS_Cst) + (RHS_A - RHS_B + RHS_Cst).
533 int64_t Result = 0; local
535 case MCBinaryExpr::Add: Result = LHS + RHS; break;
536 case MCBinaryExpr::And: Result = LHS & RHS; break;
537 case MCBinaryExpr::Div: Result = LHS / RHS; break;
538 case MCBinaryExpr::EQ: Result = LHS == RHS; break;
539 case MCBinaryExpr::GT: Result
[all...]
H A DSubtargetFeature.cpp94 std::string Result; local
98 Result = V[0];
102 Result += ",";
104 Result += V[i];
108 return Result;
/external/swiftshader/third_party/LLVM/lib/Support/
H A DCrashRecoveryContext.cpp337 bool Result; member in struct:__anon19966::RunSafelyOnThreadInfo
344 Info->Result = Info->CRC->RunSafely(Info->UserFn, Info->UserData);
350 return Info.Result;
H A DTimer.cpp69 raw_ostream *Result = new raw_fd_ostream(OutputFilename.c_str(), local
72 return Result;
76 delete Result;
130 TimeRecord Result; local
134 Result.MemUsed = getMemUsage();
138 Result.MemUsed = getMemUsage();
141 Result.WallTime = now.seconds() + now.microseconds() / 1000000.0;
142 Result.UserTime = user.seconds() + user.microseconds() / 1000000.0;
143 Result.SystemTime = sys.seconds() + sys.microseconds() / 1000000.0;
144 return Result;
[all...]

Completed in 1460 milliseconds

1234567891011>>