Searched defs:Result (Results 251 - 275 of 759) sorted by relevance

<<11121314151617181920>>

/external/swiftshader/third_party/LLVM/lib/Support/
H A DTriple.cpp581 unsigned Result = 0; local
585 Result = Result*10 + (Str[0] - '0');
591 return Result;
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
H A DPPCJITInfo.cpp354 StubLayout Result = {10*4, 4}; local
355 return Result;
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86JITInfo.cpp461 StubLayout Result = {14, 4}; local
462 return Result;
476 void *Result = (void*)JCE.getCurrentPCValue(); local
490 return Result;
511 return Result;
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DAddrModeMatcher.cpp566 ExtAddrMode Result; local
568 MemoryInst, Result);
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DAttributes.cpp30 std::string Result; local
32 Result += "zeroext ";
34 Result += "signext ";
36 Result += "noreturn ";
38 Result += "nounwind ";
40 Result += "uwtable ";
42 Result += "returns_twice ";
44 Result += "inreg ";
46 Result += "noalias ";
48 Result
[all...]
H A DDebugLoc.cpp75 DebugLoc Result; local
78 if (Scope == 0) return Result;
83 Result.LineCol = Line | (Col << 24);
89 Result.ScopeIdx = Ctx.pImpl->getOrAddScopeRecordIdxEntry(Scope, 0);
91 Result.ScopeIdx = Ctx.pImpl->getOrAddScopeInlinedAtIdxEntry(Scope,
94 return Result;
H A DInlineAsm.cpp213 ConstraintInfoVector Result; local
224 Info.Parse(StringRef(I, ConstraintEnd-I), Result)) {
225 Result.clear(); // Erroneous constraint?
229 Result.push_back(Info);
236 if (I == E) { Result.clear(); break; } // don't allow "xyz,"
240 return Result;
/external/swiftshader/third_party/LLVM/tools/llvm-nm/
H A Dllvm-nm.cpp311 Module *Result = 0; local
313 Result = ParseBitcodeFile(Buffer.get(), Context, &ErrorMessage);
315 if (Result) {
316 DumpSymbolNamesFromModule(Result);
317 delete Result;
334 Module *Result = 0; local
336 Result = ParseBitcodeFile(buff.get(), Context, &ErrorMessage);
338 if (Result) {
339 DumpSymbolNamesFromModule(Result);
340 delete Result;
[all...]
/external/swiftshader/third_party/LLVM/utils/PerfectShuffle/
H A DPerfectShuffle.cpp129 unsigned Result = 0; local
141 Result |= ResElt << (4*i);
143 return Result;
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DCodeGenTarget.cpp186 std::vector<MVT::SimpleValueType> Result; local
192 Result.insert(Result.end(), InVTs.begin(), InVTs.end());
197 array_pod_sort(Result.begin(), Result.end());
198 Result.erase(std::unique(Result.begin(), Result.end()), Result.end());
199 return Result;
350 std::vector<CodeGenIntrinsic> Result; local
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DStringExtras.h129 static inline unsigned HashString(StringRef Str, unsigned Result = 0) {
131 Result = Result * 33 + (unsigned char)Str[i];
132 return Result;
195 inline void join_items_impl(std::string &Result, Sep Separator) {} argument
198 inline void join_items_impl(std::string &Result, Sep Separator, argument
200 Result += Item;
204 inline void join_items_impl(std::string &Result, Sep Separator, const Arg1 &A1, argument
206 Result += A1;
207 Result
243 std::string Result; local
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DIntrinsics.h138 IITDescriptor Result = { K, { Field } }; local
139 return Result;
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DTimer.cpp65 auto Result = llvm::make_unique<raw_fd_ostream>( local
68 return Result;
122 TimeRecord Result;
127 Result.MemUsed = getMemUsage();
131 Result.MemUsed = getMemUsage();
134 Result.WallTime = Seconds(now.time_since_epoch()).count();
135 Result.UserTime = Seconds(user).count();
136 Result.SystemTime = Seconds(sys).count();
137 return Result;
/external/toolchain-utils/crosperf/
H A Dbenchmark_run_unittest.py27 from results_cache import Result namespace
149 br.result = mock.Mock(spec=Result)
168 mock_result = mock.Mock(spec=Result)
174 mock_result = mock.Mock(spec=Result)
373 @mock.patch.object(Result, 'CreateFromRun')
H A Dexperiment_runner_unittest.py25 from results_cache import Result namespace
388 @mock.patch.object(Result, 'CopyResultsTo')
389 @mock.patch.object(Result, 'CleanUp')
418 fake_result = Result(self.mock_logger, self.exp.labels[0], 'average',
H A Dresults_cache.py33 class Result(object): class in inherits:object
485 class TelemetryResult(Result):
722 result = Result.CreateFromCacheHit(self._logger, self.log_level, self.label,
752 class MockResult(Result):
753 """Class for mock testing, corresponding to Result class."""
H A Dresults_cache_unittest.py21 from results_cache import Result namespace
160 class MockResult(Result):
177 """Result test class."""
211 self.result = Result(self.mock_logger, self.mock_label, 'average',
255 @mock.patch.object(Result, 'CopyFilesTo')
501 @mock.patch.object(Result, 'FindFilesInResultsDir')
1096 @mock.patch.object(Result, 'CreateFromCacheHit')
1108 fake_result = Result(self.mock_logger, self.mock_label, 'average',
1125 # (force re-running of test). Result should be None.
1130 # Test 2. Remove CacheCondition.FALSE. Result shoul
[all...]
/external/v8/src/regexp/
H A Dregexp-macro-assembler.h203 // Result of calling generated native RegExp code.
212 enum Result { RETRY = -2, EXCEPTION = -1, FAILURE = 0, SUCCESS = 1 }; enum in class:v8::internal::NativeRegExpMacroAssembler
218 static Result Match(Handle<Code> regexp,
250 static Result Execute(Code* code,
/external/v8/tools/
H A Dperf-to-html.py62 class Result: class in inherits:
146 self.tests_[test_name] = Result(test_name,
179 self.Print(" <th>Result</th>")
/external/clang/include/clang/AST/
H A DASTTypeTraits.h385 DynTypedNode Result; local
386 Result.NodeKind = ASTNodeKind::getFromNode(Node);
387 new (Result.Storage.buffer) const void *(&Node);
388 return Result;
405 DynTypedNode Result; local
406 Result.NodeKind = ASTNodeKind::getFromNodeKind<T>();
407 new (Result.Storage.buffer) const void *(&Node);
408 return Result;
424 DynTypedNode Result; local
425 Result
[all...]
H A DASTVector.h135 T Result = back(); local
137 return Result;
H A DCanonicalType.h613 CanQual<T> Result; local
614 Result.Stored = QualType::getFromOpaquePtr(Ptr);
615 assert((!Result || Result.Stored.getAsOpaquePtr() == (void*)-1 ||
616 Result.Stored.isCanonical()) && "Type is not canonical!");
617 return Result;
625 CanQual<T> Result; local
626 Result.Stored = Other;
627 return Result;
H A DCommentLexer.h295 void formTokenWithChars(Token &Result, const char *TokEnd,
298 void formTextToken(Token &Result, const char *TokEnd) { argument
300 formTokenWithChars(Result, TokEnd, tok::text);
301 Result.setText(Text);
/external/clang/include/clang/Lex/
H A DPreprocessingRecord.h516 std::pair<int, int> Result; member in struct:clang::PreprocessingRecord::__anon978
/external/clang/include/clang/Sema/
H A DOwnership.h66 /// \tparam PtrT Result pointer type. There must be implicit conversion
225 ActionResult Result; local
226 Result.PtrWithInvalid = (uintptr_t)P;
227 return Result;

Completed in 621 milliseconds

<<11121314151617181920>>