/external/v8/test/webkit/ |
D | dfg-double-vote-fuzz-expected.txt | 29 Result value is 54939 30 Result value is 55039 31 Result value is 55039 32 Result value is 55139 33 Result value is 55039 34 Result value is 55139 35 Result value is 55139 36 Result value is 55239 37 Result value is 55039 38 Result value is 55139 [all …]
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
D | matrix_major_storage.inl | 19 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 …]
|
D | matrix_operation.inl | 18 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 …]
|
D | euler_angles.inl | 153 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 …]
|
D | matrix_cross_product.inl | 18 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 …]
|
D | associated_min_max.inl | 26 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 …]
|
D | inertia.inl | 20 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 …]
|
D | wrap.inl | 30 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/ |
D | CommentToXML.cpp | 201 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 __anonc26120f60111::CommentASTToHTMLConverter 283 Result << " "; in visitInlineCommandComment() [all …]
|
/external/clang/lib/Lex/ |
D | MacroArgs.cpp | 48 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 …]
|
D | Lexer.cpp | 203 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/ |
D | HexagonMCDuplexInfo.cpp | 690 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/ |
D | matrix_transform.inl | 42 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/ |
D | RewriteModernObjC.cpp | 375 void ObjCIvarBitfieldGroupDecl(ObjCIvarDecl *IV, std::string &Result); 377 void ObjCIvarBitfieldGroupType(ObjCIvarDecl *IV, std::string &Result); 379 void ObjCIvarBitfieldGroupOffset(ObjCIvarDecl *IV, std::string &Result); 397 std::string &Result); 399 void RewriteObjCFieldDecl(FieldDecl *fieldDecl, std::string &Result); 403 std::string &Result); 405 bool RewriteObjCFieldDeclType(QualType &Type, std::string &Result); 408 std::string &Result); 448 std::string &Result); 450 std::string &Result); [all …]
|
/external/llvm/include/llvm/Analysis/ |
D | CGSCCPassManager.h | 54 class Result { 56 explicit Result(CGSCCAnalysisManager &CGAM) : CGAM(&CGAM) {} in Result() function 59 Result(const Result &Arg) : CGAM(Arg.CGAM) {} in Result() function 60 Result(Result &&Arg) : CGAM(std::move(Arg.CGAM)) {} in Result() function 61 Result &operator=(Result RHS) { 65 ~Result(); 113 Result run(Module &M); 136 class Result { 138 explicit Result(const ModuleAnalysisManager &MAM) : MAM(&MAM) {} in Result() function 141 Result(const Result &Arg) : MAM(Arg.MAM) {} in Result() function [all …]
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
D | Antlr.Runtime.pas | 2941 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 …]
|
D | Antlr.Runtime.Tree.pas | 2196 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/libnfc-nxp/src/ |
D | phFriNfc_TopazMap.c | 260 NFCSTATUS Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP, in phFriNfc_TopazMap_ChkNdef() local 290 Result = phFriNfc_Tpz_H_RdBytes(NdefMap, NdefMap->TopazContainer.CurrentBlock, in phFriNfc_TopazMap_ChkNdef() 293 return Result; in phFriNfc_TopazMap_ChkNdef() 329 NFCSTATUS Result = NFCSTATUS_SUCCESS; in phFriNfc_TopazMap_RdNdef() local 383 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP, in phFriNfc_TopazMap_RdNdef() 390 Result = ((Offset == PH_FRINFC_NDEFMAP_SEEK_BEGIN)? in phFriNfc_TopazMap_RdNdef() 397 return Result; in phFriNfc_TopazMap_RdNdef() 413 NFCSTATUS Result = NFCSTATUS_SUCCESS; in phFriNfc_TopazMap_WrNdef() local 475 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP, in phFriNfc_TopazMap_WrNdef() 483 Result = ((NdefMap->Offset == PH_FRINFC_NDEFMAP_SEEK_BEGIN)? in phFriNfc_TopazMap_WrNdef() [all …]
|
/external/llvm/lib/Analysis/ |
D | LazyValueInfo.cpp | 367 void insertResult(Value *Val, BasicBlock *BB, const LVILatticeVal &Result) { in insertResult() argument 372 if (Result.isOverdefined()) in insertResult() 375 lookup(Val)[BB] = Result; in insertResult() 380 LVILatticeVal &Result, 545 ConstantRange Result = getConstantRangeFromMetadata(*Ranges); in getFromRangeMetadata() local 546 return LVILatticeVal::getRange(Result); in getFromRangeMetadata() 604 LVILatticeVal Result; in solveBlockValue() local 665 LVILatticeVal Result; // Start Undefined. in solveBlockValueNonLocal() local 695 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy)); in solveBlockValueNonLocal() 697 Result.markOverdefined(); in solveBlockValueNonLocal() [all …]
|
/external/clang/lib/ASTMatchers/Dynamic/ |
D | Parser.cpp | 88 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/ |
D | gmock-actions.h | 254 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/gmock/include/gmock/ |
D | gmock-actions.h | 254 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/ |
D | CompilationDatabaseTest.cpp | 352 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/llvm/include/llvm/ADT/ |
D | StringSwitch.h | 49 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 …]
|
/external/clang/include/clang/Lex/ |
D | Lexer.h | 139 bool Lex(Token &Result); 148 void IndirectLex(Token &Result) override { Lex(Result); } in IndirectLex() argument 154 bool LexFromRawLexer(Token &Result) { in LexFromRawLexer() argument 156 Lex(Result); in LexFromRawLexer() 208 void ReadToEndOfLine(SmallVectorImpl<char> *Result = nullptr); 287 static bool getRawToken(SourceLocation Loc, Token &Result, 468 bool LexTokenInternal(Token &Result, bool TokAtPhysicalStartOfLine); 470 bool CheckUnicodeWhitespace(Token &Result, uint32_t C, const char *CurPtr); 475 bool LexUnicode(Token &Result, uint32_t C, const char *CurPtr); 482 void FormTokenWithChars(Token &Result, const char *TokEnd, in FormTokenWithChars() argument [all …]
|