/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | DiagnosticInfo.cpp | 65 void DiagnosticInfoInlineAsm::print(DiagnosticPrinter &DP) const { in print() 66 DP << getMsgStr(); in print() 68 DP << " at line " << getLocCookie(); in print() 71 void DiagnosticInfoResourceLimit::print(DiagnosticPrinter &DP) const { in print() 72 DP << getResourceName() << " limit"; in print() 75 DP << " of " << getResourceLimit(); in print() 77 DP << " exceeded (" << getResourceSize() << ") in " << getFunction(); in print() 80 void DiagnosticInfoDebugMetadataVersion::print(DiagnosticPrinter &DP) const { in print() 81 DP << "ignoring debug info with an invalid version (" << getMetadataVersion() in print() 86 DiagnosticPrinter &DP) const { in print() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCScheduleP9.td | 102 // Four DP (Floating Point) units in total. Two even, two Odd. 103 def DP : ProcResource<4>; 105 //Even DP pipelines 106 let Super = DP; 109 //Odd DP pipelines 110 let Super = DP; 244 // DP Unit 245 // A DP unit may take from 2 to 36 cycles to complete. 246 // Some DP operations keep the unit busy for up to 10 cycles. 247 def P9_DP_5C : SchedWriteRes<[DP]> { [all …]
|
D | P9InstrResources.td | 26 // - Four DP (Floating Point) units. One on each slice. P9_DP_* 107 (instregex "XSMAX(C|J)?DP$"), 108 (instregex "XSMIN(C|J)?DP$"), 109 (instregex "XSCMP(EQ|EXP|GE|GT|O|U)DP$"), 287 // 7 cycle DP vector operation that uses an entire superslice. 288 // Uses both DP units (the even DPE and odd DPO units), two pipelines (EXECE, 397 // 5 cycle Restricted DP operation. One DP unit, one EXEC pipeline and all three 405 // 7 cycle Restricted DP operation. One DP unit, one EXEC pipeline and all three 448 // 7 cycle Restricted DP operation and one 3 cycle ALU operation. 449 // These operations can be done in parallel. The DP is restricted so we need a [all …]
|
D | README_P9.txt | 306 - DP/QP Compare Exponents: xscmpexpdp xscmpexpqp 309 - DP Compare ==, >=, >, !=: xscmpeqdp xscmpgedp xscmpgtdp xscmpnedp 327 - Convert DP -> QP: xscvdpqp 334 - Round & Convert QP -> DP (dword[1] is set to zero): xscvqpdp xscvqpdpo 354 - (Round &) Convert DP <-> HP: xscvdphp xscvhpdp 383 - Insert Exponent DP/QP: xsiexpdp xsiexpqp 392 - Extract Exponent/Significand DP/QP: xsxexpdp xsxsigdp xsxexpqp xsxsigqp 428 - Vector Insert Exponent DP/SP: xviexpdp xviexpsp 433 - Vector Extract Exponent/Significand DP/SP: xvxexpdp xvxexpsp xvxsigdp xvxsigsp 440 - Test Data Class SP/DP/QP: xststdcsp xststdcdp xststdcqp [all …]
|
/third_party/mesa3d/src/intel/tools/tests/gen8/ |
D | send.asm | 410 …data MsgDesc: (*** invalid DP DC0 message type value 16 , 27, 0) mlen 1 rlen 1 { align1 … 412 …data MsgDesc: (*** invalid DP DC0 message type value 16 , 28, 0) mlen 1 rlen 1 { align1 … 414 …data MsgDesc: (*** invalid DP DC0 message type value 16 , 29, 0) mlen 1 rlen 1 { align1 … 416 …data MsgDesc: (*** invalid DP DC0 message type value 16 , 30, 0) mlen 1 rlen 1 { align1 … 418 …data MsgDesc: (*** invalid DP DC0 message type value 16 , 31, 0) mlen 1 rlen 1 { align1 … 420 …data MsgDesc: (*** invalid DP DC0 message type value 16 , 32, 0) mlen 1 rlen 1 { align1 … 422 …data MsgDesc: (*** invalid DP DC0 message type value 16 , 33, 0) mlen 1 rlen 1 { align1 … 436 …data MsgDesc: (*** invalid DP DC0 message type value 16 , 0, 0) mlen 1 rlen 1 { align1 … 438 …data MsgDesc: (*** invalid DP DC0 message type value 16 , 1, 0) mlen 1 rlen 1 { align1 … 440 …data MsgDesc: (*** invalid DP DC0 message type value 16 , 2, 0) mlen 1 rlen 1 { align1 … [all …]
|
/third_party/mbedtls/programs/pkey/ |
D | rsa_genkey.c | 59 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in main() local 67 mbedtls_mpi_init(&D); mbedtls_mpi_init(&E); mbedtls_mpi_init(&DP); in main() 94 (ret = mbedtls_rsa_export_crt(&rsa, &DP, &DQ, &QP)) != 0) { in main() 123 (ret = mbedtls_mpi_write_file("DP = ", &DP, 16, fpriv)) != 0 || in main() 144 mbedtls_mpi_free(&D); mbedtls_mpi_free(&E); mbedtls_mpi_free(&DP); in main()
|
D | rsa_sign.c | 53 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in main() local 58 mbedtls_mpi_init(&D); mbedtls_mpi_init(&E); mbedtls_mpi_init(&DP); in main() 85 (ret = mbedtls_mpi_read_file(&DP, 16, f)) != 0 || in main() 160 mbedtls_mpi_free(&D); mbedtls_mpi_free(&E); mbedtls_mpi_free(&DP); in main()
|
D | rsa_decrypt.c | 56 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in main() local 83 mbedtls_mpi_init(&D); mbedtls_mpi_init(&E); mbedtls_mpi_init(&DP); in main() 109 (ret = mbedtls_mpi_read_file(&DP, 16, f)) != 0 || in main() 179 mbedtls_mpi_free(&D); mbedtls_mpi_free(&E); mbedtls_mpi_free(&DP); in main()
|
D | key_app.c | 91 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in main() local 103 mbedtls_mpi_init(&D); mbedtls_mpi_init(&E); mbedtls_mpi_init(&DP); in main() 208 (ret = mbedtls_rsa_export_crt(rsa, &DP, &DQ, &QP)) != 0) { in main() 218 MBEDTLS_MPI_CHK(mbedtls_mpi_write_file("DP: ", &DP, 16, NULL)); in main() 311 mbedtls_mpi_free(&D); mbedtls_mpi_free(&E); mbedtls_mpi_free(&DP); in main()
|
D | gen_key.c | 183 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in main() local 196 mbedtls_mpi_init(&D); mbedtls_mpi_init(&E); mbedtls_mpi_init(&DP); in main() 351 (ret = mbedtls_rsa_export_crt(rsa, &DP, &DQ, &QP)) != 0) { in main() 361 mbedtls_mpi_write_file("DP: ", &DP, 16, NULL); in main() 404 mbedtls_mpi_free(&D); mbedtls_mpi_free(&E); mbedtls_mpi_free(&DP); in main()
|
D | key_app_writer.c | 206 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in main() local 220 mbedtls_mpi_init(&D); mbedtls_mpi_init(&E); mbedtls_mpi_init(&DP); in main() 323 (ret = mbedtls_rsa_export_crt(rsa, &DP, &DQ, &QP)) != 0) { in main() 333 mbedtls_mpi_write_file("DP: ", &DP, 16, NULL); in main() 418 mbedtls_mpi_free(&D); mbedtls_mpi_free(&E); mbedtls_mpi_free(&DP); in main()
|
D | rsa_priv.txt | 6 DP = 0D0E21C07BF434B4A83B116472C2147A11D8EB98A33CFBBCF1D275EF19D815941622435AAF3839B6C432CA53CE9E77…
|
/third_party/mbedtls/programs/fuzz/ |
D | fuzz_pubkey.c | 18 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in LLVMFuzzerTestOneInput() local 22 mbedtls_mpi_init(&D); mbedtls_mpi_init(&E); mbedtls_mpi_init(&DP); in LLVMFuzzerTestOneInput() 32 if (mbedtls_rsa_export_crt(rsa, &DP, &DQ, &QP) != MBEDTLS_ERR_RSA_BAD_INPUT_DATA) { in LLVMFuzzerTestOneInput() 37 mbedtls_mpi_free(&D); mbedtls_mpi_free(&E); mbedtls_mpi_free(&DP); in LLVMFuzzerTestOneInput()
|
D | fuzz_privkey.c | 45 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in LLVMFuzzerTestOneInput() local 49 mbedtls_mpi_init(&D); mbedtls_mpi_init(&E); mbedtls_mpi_init(&DP); in LLVMFuzzerTestOneInput() 56 if (mbedtls_rsa_export_crt(rsa, &DP, &DQ, &QP) != 0) { in LLVMFuzzerTestOneInput() 61 mbedtls_mpi_free(&D); mbedtls_mpi_free(&E); mbedtls_mpi_free(&DP); in LLVMFuzzerTestOneInput()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | DiagnosticInfo.h | 121 virtual void print(DiagnosticPrinter &DP) const = 0; 167 void print(DiagnosticPrinter &DP) const override; 207 void print(DiagnosticPrinter &DP) const override; 252 void print(DiagnosticPrinter &DP) const override; 274 void print(DiagnosticPrinter &DP) const override; 298 void print(DiagnosticPrinter &DP) const override; 328 void print(DiagnosticPrinter &DP) const override; 460 void print(DiagnosticPrinter &DP) const override; 918 void print(DiagnosticPrinter &DP) const override; 937 void print(DiagnosticPrinter &DP) const override; [all …]
|
/third_party/mbedtls/library/ |
D | rsa_alt_helpers.c | 238 const mbedtls_mpi *D, mbedtls_mpi *DP, in mbedtls_rsa_deduce_crt() argument 246 if (DP != NULL) { in mbedtls_rsa_deduce_crt() 248 MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(DP, D, &K)); in mbedtls_rsa_deduce_crt() 385 const mbedtls_mpi *D, const mbedtls_mpi *DP, in mbedtls_rsa_validate_crt() argument 395 if (DP != NULL) { in mbedtls_rsa_validate_crt() 402 MBEDTLS_MPI_CHK(mbedtls_mpi_sub_mpi(&L, DP, D)); in mbedtls_rsa_validate_crt()
|
D | rsa_alt_helpers.h | 143 const mbedtls_mpi *D, mbedtls_mpi *DP, 213 const mbedtls_mpi *D, const mbedtls_mpi *DP,
|
D | rsa.c | 194 (mbedtls_mpi_cmp_int(&ctx->DP, 0) <= 0 || in rsa_check_context() 239 have_DP = (mbedtls_mpi_cmp_int(&ctx->DP, 0) != 0); in mbedtls_rsa_complete() 307 &ctx->DP, &ctx->DQ, &ctx->QP); in mbedtls_rsa_complete() 417 mbedtls_mpi *DP, mbedtls_mpi *DQ, mbedtls_mpi *QP) in mbedtls_rsa_export_crt() argument 436 if ((DP != NULL && (ret = mbedtls_mpi_copy(DP, &ctx->DP)) != 0) || in mbedtls_rsa_export_crt() 443 DP, DQ, QP)) != 0) { in mbedtls_rsa_export_crt() 629 &ctx->DP, &ctx->DQ, &ctx->QP)); in mbedtls_rsa_gen_key() 694 &ctx->DP, &ctx->DQ, &ctx->QP) != 0) { in mbedtls_rsa_check_privkey() 885 mbedtls_mpi *DP = &ctx->DP; in mbedtls_rsa_private() local 979 &ctx->DP)); in mbedtls_rsa_private() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/ARM/ |
D | ARMGenAsmMatcher.inc | 7355 DiagnosticPredicate DP(Operand.isAM2OffsetImm()); 7356 if (DP.isMatch()) 7362 DiagnosticPredicate DP(Operand.isAM3Offset()); 7363 if (DP.isMatch()) 7369 DiagnosticPredicate DP(Operand.isARMBranchTarget()); 7370 if (DP.isMatch()) 7376 DiagnosticPredicate DP(Operand.isAddrMode3()); 7377 if (DP.isMatch()) 7383 DiagnosticPredicate DP(Operand.isAddrMode5()); 7384 if (DP.isMatch()) [all …]
|
/third_party/libinput/doc/user/ |
D | tools.rst | 105 -event4 DEVICE_ADDED HDA Intel HDMI HDMI/DP,pcm=3 seat0 default group5 cap: 106 -event11 DEVICE_ADDED HDA Intel HDMI HDMI/DP,pcm=7 seat0 default group6 cap: 107 -event12 DEVICE_ADDED HDA Intel HDMI HDMI/DP,pcm=8 seat0 default group7 cap: 108 -event13 DEVICE_ADDED HDA Intel HDMI HDMI/DP,pcm=9 seat0 default group8 cap: 109 -event14 DEVICE_ADDED HDA Intel HDMI HDMI/DP,pcm=10 seat0 default group9 cap: 186 /dev/input/event7: HDA Intel HDMI HDMI/DP,pcm=3 187 /dev/input/event8: HDA Intel HDMI HDMI/DP,pcm=7 188 /dev/input/event9: HDA Intel HDMI HDMI/DP,pcm=8 189 /dev/input/event10: HDA Intel HDMI HDMI/DP,pcm=9 190 /dev/input/event11: HDA Intel HDMI HDMI/DP,pcm=10
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/Mips/ |
D | MipsGenAsmMatcher.inc | 3475 DiagnosticPredicate DP(Operand.isACCAsmReg()); 3476 if (DP.isMatch()) 3482 DiagnosticPredicate DP(Operand.isFGRAsmReg()); 3483 if (DP.isMatch()) 3489 DiagnosticPredicate DP(Operand.isCCRAsmReg()); 3490 if (DP.isMatch()) 3496 DiagnosticPredicate DP(Operand.isCOP0AsmReg()); 3497 if (DP.isMatch()) 3503 DiagnosticPredicate DP(Operand.isCOP2AsmReg()); 3504 if (DP.isMatch()) [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/ |
D | XCoreRegisterInfo.td | 38 def DP : Ri<13, "dp">, DwarfRegNum<[13]>; 56 R11, CP, DP, SP, LR)> {
|
/third_party/openssl/test/ |
D | rsa_sp800_56b_test.c | 280 const int DP = 3; in test_check_crt_components() local 305 && TEST_BN_eq_word(key->dmp1, DP) in test_check_crt_components() 314 && TEST_true(BN_set_word(key->dmp1, DP)) in test_check_crt_components() 328 && TEST_true(BN_set_word(key->dmp1, DP+1)) in test_check_crt_components() 330 && TEST_true(BN_set_word(key->dmp1, DP)) in test_check_crt_components()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | LegacyDivergenceAnalysis.cpp | 347 DivergencePropagator DP(F, TTI, DT, PDT, DivergentValues, DivergentUses); in runOnFunction() local 348 DP.populateWithSourcesOfDivergence(); in runOnFunction() 349 DP.propagate(); in runOnFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/AArch64/ |
D | AArch64GenAsmMatcher.inc | 8847 DiagnosticPredicate DP(Operand.isAddSubImmNeg()); 8848 if (DP.isMatch()) 8850 if (DP.isNearMatch()) 8856 DiagnosticPredicate DP(Operand.isAddSubImm()); 8857 if (DP.isMatch()) 8859 if (DP.isNearMatch()) 8865 DiagnosticPredicate DP(Operand.isAdrLabel()); 8866 if (DP.isMatch()) 8868 if (DP.isNearMatch()) 8874 DiagnosticPredicate DP(Operand.isAdrpLabel()); [all …]
|