Searched defs:Result (Results 151 - 175 of 759) sorted by relevance

1234567891011>>

/external/skia/include/utils/
H A DSkInterpolator.h17 enum Result { enum in class:SkInterpolatorBase
62 Result timeToT(SkMSec time, SkScalar* T, int* index, bool* exact) const;
114 Result timeToValues(SkMSec time, SkScalar values[] = NULL) const;
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DJITCodeEmitter.h258 void *Result; local
263 Result = 0;
266 Result = CurBufferPtr;
270 return Result;
/external/swiftshader/third_party/LLVM/include/llvm/Target/
H A DTargetJITInfo.h60 StubLayout Result = {0, 0}; local
61 return Result;
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DDominanceFrontier.cpp42 DomSetType *Result = NULL; local
93 Result = &S;
108 return *Result;
H A DPHITransAddr.cpp409 GetElementPtrInst *Result = local
413 Result->setIsInBounds(GEP->isInBounds());
414 NewInsts.push_back(Result);
415 return Result;
H A DScalarEvolutionNormalization.cpp119 const SCEV *Result = SE.getAddRecExpr(Operands, L, SCEV::FlagAnyWrap); local
127 Result = SE.getMinusSCEV(Result, TransformedStep);
135 assert(S == TransformSubExpr(Result, User, OperandValToReplace) &&
144 Result = SE.getMinusSCEV(Result, TransformedStep);
148 assert(S == TransformSubExpr(Result, User, OperandValToReplace) &&
154 Result = cast<SCEVAddRecExpr>(Result)->getPostIncExpr(SE);
157 return Result;
205 const SCEV *Result = Transformed.lookup(S); local
[all...]
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
H A DOProfileJITEventListener.cpp93 debug_line_info Result; local
94 Result.vma = Address;
95 Result.lineno = Loc.getLine();
96 Result.filename = Filenames.getFilename(
98 DEBUG(dbgs() << "Mapping " << reinterpret_cast<void*>(Result.vma) << " to "
99 << Result.filename << ":" << Result.lineno << "\n");
100 return Result;
/external/swiftshader/third_party/LLVM/lib/Linker/
H A DLinker.cpp100 Module *Result = 0; local
107 Result = ParseBitcodeFile(Buffer.get(), Context, &ParseErrorMessage);
109 if (Result)
110 return std::auto_ptr<Module>(Result);
/external/swiftshader/third_party/LLVM/lib/MC/MCParser/
H A DAsmLexer.cpp184 StringRef Result(TokStart, CurPtr - TokStart);
187 if (Result.getAsInteger(10, Value)) {
191 if (Result.getAsInteger(10, UValue))
200 return AsmToken(AsmToken::Integer, Result, Value);
208 StringRef Result(TokStart, CurPtr - TokStart);
209 return AsmToken(AsmToken::Integer, Result, 0);
219 StringRef Result(TokStart, CurPtr - TokStart);
222 if (Result.substr(2).getAsInteger(2, Value))
229 return AsmToken(AsmToken::Integer, Result, Value);
242 unsigned long long Result; local
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMJITInfo.cpp155 StubLayout Result = {16, 4}; local
156 return Result;
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
H A DMipsJITInfo.cpp153 StubLayout Result = { 4*4, 4 }; local
154 return Result;
/external/swiftshader/third_party/LLVM/tools/bugpoint/
H A DBugDriver.cpp60 std::string Result; local
62 if (i) Result += " ";
63 Result += "-";
64 Result += Passes[i];
66 return Result;
88 Module *Result = ParseIRFile(Filename, Err, Ctxt); local
89 if (!Result)
94 if (Result) {
96 Triple TheTriple(Result->getTargetTriple());
104 Result
[all...]
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
H A DJITEventListenerTest.cpp79 Function *Result = Function::Create( local
82 Value *Arg = Result->arg_begin();
83 BasicBlock *BB = BasicBlock::Create(M->getContext(), "entry", Result);
85 return Result;
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DInstrInfoEmitter.cpp53 std::vector<std::string> Result; local
129 Result.push_back(Res);
133 return Result;
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DStringSwitch.h49 const T *Result; member in class:llvm::StringSwitch
54 : Str(S), Result(nullptr) { }
65 Result = other.Result;
76 if (!Result && N-1 == Str.size() &&
78 Result = &Value;
87 if (!Result && Str.size() >= N-1 &&
89 Result = &Value;
98 if (!Result && Str.size() >= N-1 &&
100 Result
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DFormatVariadic.h121 std::string Result; local
122 raw_string_ostream Stream(Result);
125 return Result;
129 SmallString<N> Result; local
130 raw_svector_ostream Stream(Result);
132 return Result;
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DConvertUTFWrapper.cpp187 TResult &Result) {
191 Result.resize(Source.size() + 1);
192 char *ResultPtr = reinterpret_cast<char *>(&Result[0]);
195 Result.clear();
198 Result.resize(reinterpret_cast<wchar_t *>(ResultPtr) - &Result[0]);
202 bool ConvertUTF8toWide(llvm::StringRef Source, std::wstring &Result) { argument
203 return ConvertUTF8toWideInternal(Source, Result);
206 bool ConvertUTF8toWide(const char *Source, std::wstring &Result) { argument
208 Result
186 ConvertUTF8toWideInternal(llvm::StringRef Source, TResult &Result) argument
214 convertWideToUTF8(const std::wstring &Source, std::string &Result) argument
[all...]
/external/swiftshader/third_party/subzero/src/
H A DIceAssembler.cpp34 uintptr_t Result = Assemblr.allocateBytes(Capacity); local
35 return Result;
H A DIceIntrinsics.cpp331 Variable *Result = Call->getDest(); local
332 if (Result == nullptr) {
335 } else if (getReturnType() != Result->getType()) {
/external/toolchain-utils/crosperf/
H A Dbenchmark_run.py20 from results_cache import Result namespace
97 self.result = Result.CreateFromRun(
212 return Result.CreateFromRun(self._logger, self.log_level, self.label,
253 """Remove Result.CreateFromRun for testing."""
/external/v8/src/
H A Djson-stringifier.h25 enum Result { UNCHANGED, SUCCESS, EXCEPTION }; enum in class:v8::internal::BASE_EMBEDDED
37 INLINE(Result SerializeObject(Handle<Object> obj)) {
43 INLINE(Result SerializeElement(Isolate* isolate,
54 INLINE(Result SerializeProperty(Handle<Object> object,
62 Result Serialize_(Handle<Object> object, bool comma, Handle<Object> key);
67 Result SerializeSmi(Smi* object);
69 Result SerializeDouble(double number);
70 INLINE(Result SerializeHeapNumber(Handle<HeapNumber> object)) {
74 Result SerializeJSValue(Handle<JSValue> object);
76 INLINE(Result SerializeJSArra
[all...]
/external/v8/src/wasm/
H A Dwasm-result.h30 struct Result { struct in namespace:v8::internal::wasm
31 Result() : val(), error_code(kSuccess), start(nullptr), error_pc(nullptr) {} function in struct:v8::internal::wasm::Result
32 Result(Result&& other) { *this = std::move(other); } function in struct:v8::internal::wasm::Result
33 Result& operator=(Result&& other) {
50 void MoveFrom(Result<V>& that) {
59 DISALLOW_COPY_AND_ASSIGN(Result);
63 std::ostream& operator<<(std::ostream& os, const Result<T>& result) {
64 os << "Result
[all...]
/external/valgrind/auxprogs/
H A Dppcfround.c15 Result; typedef in typeref:struct:__anon24397
99 static void showResult ( Result r, ULong hideMask )
121 static Result insn_##name ( double arg1, double arg2, double arg3 ) \
153 { Result result; \
263 Result(*f)(double,double,double),
267 Result r;
284 Result(*f)(double,double,double),
288 Result r;
306 Result(*f)(double,double,double),
310 Result
[all...]
/external/llvm/include/llvm/IR/
H A DPassManager.h355 template <typename PassT> typename PassT::Result &getResult(IRUnitT &IR) {
361 typedef detail::AnalysisResultModel<IRUnitT, PassT, typename PassT::Result>
363 return static_cast<ResultModelT &>(ResultConcept).Result;
372 typename PassT::Result *getCachedResult(IRUnitT &IR) const {
381 typedef detail::AnalysisResultModel<IRUnitT, PassT, typename PassT::Result>
383 return &static_cast<ResultModelT *>(ResultConcept)->Result;
676 class Result { class in class:llvm::InnerAnalysisManagerProxy
678 explicit Result(AnalysisManagerT &AM) : AM(&AM) {} function in class:llvm::InnerAnalysisManagerProxy::Result
679 Result(Result function in class:llvm::InnerAnalysisManagerProxy::Result
790 class Result { class in class:llvm::OuterAnalysisManagerProxy
792 explicit Result(const AnalysisManagerT &AM) : AM(&AM) {} function in class:llvm::OuterAnalysisManagerProxy::Result
795 Result(const Result &Arg) : AM(Arg.AM) {} function in class:llvm::OuterAnalysisManagerProxy::Result
796 Result(Result &&Arg) : AM(std::move(Arg.AM)) {} function in class:llvm::OuterAnalysisManagerProxy::Result
[all...]
/external/antlr/antlr-3.4/gunit-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
H A DGUnitExecuteMojo.java283 Result runningResults = new Result();
308 Result testResult = new Result();
394 private static class Result { class in class:GUnitExecuteMojo
403 public void add(Result result) {

Completed in 1829 milliseconds

1234567891011>>