Home
last modified time | relevance | path

Searched refs:Result (Results 1 – 25 of 1470) sorted by relevance

12345678910>>...59

/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DMachineRelocation.h58 void *Result; // If this has been resolved to a resolved pointer member
87 MachineRelocation Result; variable
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.Target.GV = GV;
[all …]
/external/vulkan-validation-layers/libs/glm/gtx/
Dmatrix_major_storage.inl19 detail::tmat2x2<T, P> Result; local
20 Result[0][0] = v1.x;
21 Result[1][0] = v1.y;
22 Result[0][1] = v2.x;
23 Result[1][1] = v2.y;
24 return Result;
31 detail::tmat2x2<T, P> Result; local
32 Result[0][0] = m[0][0];
33 Result[0][1] = m[1][0];
34 Result[1][0] = m[0][1];
[all …]
Dmatrix_operation.inl18 detail::tmat2x2<T, P> Result(static_cast<T>(1)); local
19 Result[0][0] = v[0];
20 Result[1][1] = v[1];
21 return Result;
30 detail::tmat2x3<T, P> Result(static_cast<T>(1)); local
31 Result[0][0] = v[0];
32 Result[1][1] = v[1];
33 return Result;
42 detail::tmat2x4<T, P> Result(static_cast<T>(1)); local
43 Result[0][0] = v[0];
[all …]
Deuler_angles.inl153 detail::tmat4x4<T, defaultp> Result; local
154 Result[0][0] = tmp_ch * tmp_cb + tmp_sh * tmp_sp * tmp_sb;
155 Result[0][1] = tmp_sb * tmp_cp;
156 Result[0][2] = -tmp_sh * tmp_cb + tmp_ch * tmp_sp * tmp_sb;
157 Result[0][3] = static_cast<T>(0);
158 Result[1][0] = -tmp_ch * tmp_sb + tmp_sh * tmp_sp * tmp_cb;
159 Result[1][1] = tmp_cb * tmp_cp;
160 Result[1][2] = tmp_sb * tmp_sh + tmp_ch * tmp_sp * tmp_cb;
161 Result[1][3] = static_cast<T>(0);
162 Result[2][0] = tmp_sh * tmp_cp;
[all …]
Dmatrix_cross_product.inl18 detail::tmat3x3<T, P> Result(T(0)); local
19 Result[0][1] = x.z;
20 Result[1][0] = -x.z;
21 Result[0][2] = -x.y;
22 Result[2][0] = x.y;
23 Result[1][2] = x.x;
24 Result[2][1] = -x.x;
25 return Result;
34 detail::tmat4x4<T, P> Result(T(0)); local
35 Result[0][1] = x.z;
[all …]
Dassociated_min_max.inl26 detail::tvec2<U, P> Result; local
27 //Result.x = x[0] < y[0] ? a[0] : b[0];
28 //Result.y = x[1] < y[1] ? a[1] : b[1];
29 for(typename detail::tvec2<U, P>::size_type i = 0; i < Result.length(); ++i)
30 Result[i] = x[i] < y[i] ? a[i] : b[i];
31 return Result;
41 detail::tvec3<U, P> Result; local
42 for(typename detail::tvec3<U, P>::size_type i = 0; i < Result.length(); ++i)
43 Result[i] = x[i] < y[i] ? a[i] : b[i];
44 return Result;
[all …]
Dinertia.inl20 detail::tmat3x3<T, P> Result(T(1));
21 Result[0][0] = (Scale.y * Scale.y + Scale.z * Scale.z) * Mass / T(12);
22 Result[1][1] = (Scale.x * Scale.x + Scale.z * Scale.z) * Mass / T(12);
23 Result[2][2] = (Scale.x * Scale.x + Scale.y * Scale.y) * Mass / T(12);
24 return Result;
34 detail::tmat4x4<T, P> Result(T(1));
35 Result[0][0] = (Scale.y * Scale.y + Scale.z * Scale.z) * Mass / T(12);
36 Result[1][1] = (Scale.x * Scale.x + Scale.z * Scale.z) * Mass / T(12);
37 Result[2][2] = (Scale.x * Scale.x + Scale.y * Scale.y) * Mass / T(12);
38 return Result;
[all …]
Dwrap.inl30 detail::tvec2<T, P> Result; local
32 Result[i] = clamp(Texcoord[i]);
33 return Result;
42 detail::tvec3<T, P> Result; local
44 Result[i] = clamp(Texcoord[i]);
45 return Result;
54 detail::tvec4<T, P> Result; local
56 Result[i] = clamp(Texcoord[i]);
57 return Result;
78 detail::tvec2<T, P> Result; local
[all …]
/external/clang/lib/Index/
DCommentToXML.cpp201 llvm::raw_svector_ostream &Result) { in printHTMLStartTagComment() argument
202 Result << "<" << C->getTagName(); in printHTMLStartTagComment()
206 Result << " "; in printHTMLStartTagComment()
208 Result << Attr.Name; in printHTMLStartTagComment()
210 Result << "=\"" << Attr.Value << "\""; in printHTMLStartTagComment()
215 Result << ">"; in printHTMLStartTagComment()
217 Result << "/>"; in printHTMLStartTagComment()
227 FC(FC), Result(Str), Traits(Traits) in CommentASTToHTMLConverter()
258 llvm::raw_svector_ostream Result; member in __anon07f8ed890111::CommentASTToHTMLConverter
283 Result << " "; in visitInlineCommandComment()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Object/
DObjectFile.h104 error_code getNext(SymbolRef &Result) const;
106 error_code getName(StringRef &Result) const;
107 error_code getAddress(uint64_t &Result) const;
108 error_code getOffset(uint64_t &Result) const;
109 error_code getSize(uint64_t &Result) const;
110 error_code getSymbolType(SymbolRef::SymbolType &Result) const;
114 error_code getNMTypeChar(char &Result) const;
118 error_code isInternal(bool &Result) const;
122 error_code isGlobal(bool &Result) const;
143 error_code getNext(RelocationRef &Result) const;
[all …]
/external/clang/lib/Lex/
DMacroArgs.cpp48 MacroArgs *Result; in create() local
51 Result = (MacroArgs*)malloc(sizeof(MacroArgs) + in create()
54 new (Result) MacroArgs(UnexpArgTokens.size(), VarargsElided); in create()
56 Result = *ResultEnt; in create()
58 *ResultEnt = Result->ArgCache; in create()
59 Result->NumUnexpArgTokens = UnexpArgTokens.size(); in create()
60 Result->VarargsElided = VarargsElided; in create()
66 const_cast<Token*>(Result->getUnexpArgument(0))); in create()
68 return Result; in create()
117 const Token *Result = Start; in getUnexpArgument() local
[all …]
DLexer.cpp203 std::string Result = Str; in Stringify() local
205 for (unsigned i = 0, e = Result.size(); i != e; ++i) { in Stringify()
206 if (Result[i] == '\\' || Result[i] == Quote) { in Stringify()
207 Result.insert(Result.begin()+i, '\\'); in Stringify()
211 return Result; in Stringify()
342 std::string Result; in getSpelling() local
343 Result.resize(Tok.getLength()); in getSpelling()
344 Result.resize(getSpellingSlow(Tok, TokStart, LangOpts, &*Result.begin())); in getSpelling()
345 return Result; in getSpelling()
417 bool Lexer::getRawToken(SourceLocation Loc, Token &Result, in getRawToken() argument
[all …]
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCDuplexInfo.cpp690 MCInst Result; in deriveSubInst() local
702 Result.setOpcode(Hexagon::V4_SA1_inc); in deriveSubInst()
703 addOps(Result, Inst, 0); in deriveSubInst()
704 addOps(Result, Inst, 1); in deriveSubInst()
708 Result.setOpcode(Hexagon::V4_SA1_dec); in deriveSubInst()
709 addOps(Result, Inst, 0); in deriveSubInst()
710 addOps(Result, Inst, 1); in deriveSubInst()
714 Result.setOpcode(Hexagon::V4_SA1_addsp); in deriveSubInst()
715 addOps(Result, Inst, 0); in deriveSubInst()
716 addOps(Result, Inst, 2); in deriveSubInst()
[all …]
/external/vulkan-validation-layers/libs/glm/gtc/
Dmatrix_transform.inl42 detail::tmat4x4<T, P> Result(m); local
43 Result[3] = m[0] * v[0] + m[1] * v[1] + m[2] * v[2] + m[3];
44 return Result;
80 detail::tmat4x4<T, P> Result(detail::tmat4x4<T, P>::_null); local
81 Result[0] = m[0] * Rotate[0][0] + m[1] * Rotate[0][1] + m[2] * Rotate[0][2];
82 Result[1] = m[0] * Rotate[1][0] + m[1] * Rotate[1][1] + m[2] * Rotate[1][2];
83 Result[2] = m[0] * Rotate[2][0] + m[1] * Rotate[2][1] + m[2] * Rotate[2][2];
84 Result[3] = m[3];
85 return Result;
104 detail::tmat4x4<T, P> Result; local
[all …]
/external/clang/lib/Frontend/Rewrite/
DRewriteModernObjC.cpp373 void ObjCIvarBitfieldGroupDecl(ObjCIvarDecl *IV, std::string &Result);
375 void ObjCIvarBitfieldGroupType(ObjCIvarDecl *IV, std::string &Result);
377 void ObjCIvarBitfieldGroupOffset(ObjCIvarDecl *IV, std::string &Result);
395 std::string &Result);
397 void RewriteObjCFieldDecl(FieldDecl *fieldDecl, std::string &Result);
401 std::string &Result);
403 bool RewriteObjCFieldDeclType(QualType &Type, std::string &Result);
406 std::string &Result);
446 std::string &Result);
448 std::string &Result);
[all …]
/external/swiftshader/third_party/LLVM/lib/VMCore/
DAttributes.cpp30 std::string Result; in getAsString() local
32 Result += "zeroext "; in getAsString()
34 Result += "signext "; in getAsString()
36 Result += "noreturn "; in getAsString()
38 Result += "nounwind "; in getAsString()
40 Result += "uwtable "; in getAsString()
42 Result += "returns_twice "; in getAsString()
44 Result += "inreg "; in getAsString()
46 Result += "noalias "; in getAsString()
48 Result += "nocapture "; in getAsString()
[all …]
/external/swiftshader/third_party/LLVM/lib/Object/
DCOFFObjectFile.cpp90 SymbolRef &Result) const { in getSymbolNext()
94 Result = SymbolRef(Symb, this); in getSymbolNext()
99 StringRef &Result) const { in getSymbolName()
104 if (error_code ec = getString(Offset, Result)) in getSymbolName()
111 Result = StringRef(symb->Name.ShortName); in getSymbolName()
114 Result = StringRef(symb->Name.ShortName, 8); in getSymbolName()
119 uint64_t &Result) const { in getSymbolOffset()
128 Result = UnknownAddressOrSize; in getSymbolOffset()
130 Result = Section->VirtualAddress + symb->Value; in getSymbolOffset()
132 Result = symb->Value; in getSymbolOffset()
[all …]
/external/llvm/lib/Analysis/
DAliasAnalysis.cpp79 auto Result = AA->alias(LocA, LocB); in alias() local
80 if (Result != MayAlias) in alias()
81 return Result; in alias()
96 ModRefInfo Result = MRI_ModRef; in getArgModRefInfo() local
99 Result = ModRefInfo(Result & AA->getArgModRefInfo(CS, ArgIdx)); in getArgModRefInfo()
102 if (Result == MRI_NoModRef) in getArgModRefInfo()
103 return Result; in getArgModRefInfo()
106 return Result; in getArgModRefInfo()
128 ModRefInfo Result = MRI_ModRef; in getModRefInfo() local
131 Result = ModRefInfo(Result & AA->getModRefInfo(CS, Loc)); in getModRefInfo()
[all …]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.pas2941 Result := FToken.TokenType
2946 Result := Adaptor.GetNodeType(FNode);
2948 Result := FC;
2962 Result := 'MismatchedTokenException(' + IntToStr(UnexpectedType)
2971 Result := FToken;
2983 Result := 'UnwantedTokenException(found=nil' + Exp + ')'
2985 Result := 'UnwantedTokenException(found=' + Token.Text + Exp + ')'
2999 Result := Expecting;
3005 Result := 'MissingTokenException(inserted ' + FInserted.ToString
3009 Result := 'MissingTokenException(at ' + FToken.Text + ')'
[all …]
DAntlr.Runtime.Tree.pas2196 Result := TList<IBaseTree>.Create;
2202 Result := nil
2205 Result := FChildren[I];
2233 Result := 0;
2239 Result := nil
2241 Result := FChildren[I];
2247 Result := FChildren.Count
2249 Result := 0;
2255 Result := 0;
2260 Result := FChildren;
[all …]
/external/clang/lib/ASTMatchers/Dynamic/
DParser.cpp88 TokenInfo Result; in getNextToken() local
89 Result.Range.Start = currentLocation(); in getNextToken()
92 Result.Kind = TokenInfo::TK_CodeCompletion; in getNextToken()
93 Result.Text = StringRef(CodeCompletionLocation, 0); in getNextToken()
95 return Result; in getNextToken()
99 Result.Kind = TokenInfo::TK_Eof; in getNextToken()
100 Result.Text = ""; in getNextToken()
101 return Result; in getNextToken()
106 Result.Kind = TokenInfo::TK_Comma; in getNextToken()
107 Result.Text = Code.substr(0, 1); in getNextToken()
[all …]
/external/google-breakpad/src/testing/include/gmock/
Dgmock-actions.h254 typedef typename internal::Function<F>::Result Result; typedef
264 virtual Result Perform(const ArgumentTuple& args) = 0;
282 typedef typename internal::Function<F>::Result Result; typedef
312 Result Perform(const ArgumentTuple& args) const { in Perform()
365 typedef typename internal::Function<F>::Result Result; typedef
370 virtual Result Perform(const ArgumentTuple& args) { in Perform()
371 return impl_.template Perform<Result>(args); in Perform()
411 typedef typename internal::Function<F1>::Result Result; typedef
416 virtual Result Perform(const ArgumentTuple& args) { in Perform()
470 typedef typename Function<F>::Result Result; typedef
[all …]
/external/clang/unittests/Tooling/
DCompilationDatabaseTest.cpp352 std::vector<std::string> Result = unescapeJsonCommandLine(""); in TEST() local
353 EXPECT_TRUE(Result.empty()); in TEST()
357 std::vector<std::string> Result = unescapeJsonCommandLine("a b c"); in TEST() local
358 ASSERT_EQ(3ul, Result.size()); in TEST()
359 EXPECT_EQ("a", Result[0]); in TEST()
360 EXPECT_EQ("b", Result[1]); in TEST()
361 EXPECT_EQ("c", Result[2]); in TEST()
365 std::vector<std::string> Result = unescapeJsonCommandLine(" a b "); in TEST() local
366 ASSERT_EQ(2ul, Result.size()); in TEST()
367 EXPECT_EQ("a", Result[0]); in TEST()
[all …]
/external/clang/unittests/Format/
DCleanupTest.cpp28 auto Result = applyAllReplacements(Code, Replaces); in cleanup() local
29 EXPECT_TRUE(static_cast<bool>(Result)); in cleanup()
30 return *Result; in cleanup()
50 std::string Result = cleanup(Code, Ranges); in TEST_F() local
51 EXPECT_EQ(Expected, Result); in TEST_F()
67 std::string Result = cleanup(Code, Ranges); in TEST_F() local
68 EXPECT_EQ(Expected, Result); in TEST_F()
80 std::string Result = cleanup(Code, Ranges); in TEST_F() local
81 EXPECT_EQ(Expected, Result); in TEST_F()
94 std::string Result = cleanup(Code, Ranges); in TEST_F() local
[all …]
/external/llvm/include/llvm/ADT/
DStringSwitch.h49 const T *Result; variable
54 : Str(S), Result(nullptr) { } in StringSwitch()
59 if (!Result && N-1 == Str.size() && in Case()
61 Result = &Value; in Case()
70 if (!Result && Str.size() >= N-1 && in EndsWith()
72 Result = &Value; in EndsWith()
81 if (!Result && Str.size() >= N-1 && in StartsWith()
83 Result = &Value; in StartsWith()
93 if (!Result && ( in Cases()
96 Result = &Value; in Cases()
[all …]

12345678910>>...59