Home
last modified time | relevance | path

Searched refs:DP (Results 1 – 25 of 101) sorted by relevance

12345

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DDiagnosticInfo.cpp65 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/
DPPCScheduleP9.td102 // 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 …]
DP9InstrResources.td26 // - 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 …]
DREADME_P9.txt306 - 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/mbedtls/programs/fuzz/
Dfuzz_privkey.c29 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in LLVMFuzzerTestOneInput() local
33 mbedtls_mpi_init( &D ); mbedtls_mpi_init( &E ); mbedtls_mpi_init( &DP ); in LLVMFuzzerTestOneInput()
40 if ( mbedtls_rsa_export_crt( rsa, &DP, &DQ, &QP ) != 0 ) { in LLVMFuzzerTestOneInput()
45 mbedtls_mpi_free( &D ); mbedtls_mpi_free( &E ); mbedtls_mpi_free( &DP ); in LLVMFuzzerTestOneInput()
Dfuzz_pubkey.c18 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()
/third_party/mbedtls/programs/pkey/
Drsa_genkey.c68 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in main() local
76 mbedtls_mpi_init( &D ); mbedtls_mpi_init( &E ); mbedtls_mpi_init( &DP ); in main()
105 ( ret = mbedtls_rsa_export_crt( &rsa, &DP, &DQ, &QP ) ) != 0 ) in main()
138 ( ret = mbedtls_mpi_write_file( "DP = ", &DP, 16, fpriv ) ) != 0 || in main()
158 mbedtls_mpi_free( &D ); mbedtls_mpi_free( &E ); mbedtls_mpi_free( &DP ); in main()
Drsa_sign.c64 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in main() local
69 mbedtls_mpi_init( &D ); mbedtls_mpi_init( &E ); mbedtls_mpi_init( &DP ); in main()
98 ( ret = mbedtls_mpi_read_file( &DP , 16, f ) ) != 0 || in main()
177 mbedtls_mpi_free( &D ); mbedtls_mpi_free( &E ); mbedtls_mpi_free( &DP ); in main()
Drsa_decrypt.c65 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in main() local
93 mbedtls_mpi_init( &D ); mbedtls_mpi_init( &E ); mbedtls_mpi_init( &DP ); in main()
121 ( ret = mbedtls_mpi_read_file( &DP , 16, f ) ) != 0 || in main()
196 mbedtls_mpi_free( &D ); mbedtls_mpi_free( &E ); mbedtls_mpi_free( &DP ); in main()
Dkey_app.c101 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in main() local
113 mbedtls_mpi_init( &D ); mbedtls_mpi_init( &E ); mbedtls_mpi_init( &DP ); in main()
221 ( ret = mbedtls_rsa_export_crt( rsa, &DP, &DQ, &QP ) ) != 0 ) in main()
232 MBEDTLS_MPI_CHK( mbedtls_mpi_write_file( "DP: ", &DP, 16, NULL ) ); in main()
324 mbedtls_mpi_free( &D ); mbedtls_mpi_free( &E ); mbedtls_mpi_free( &DP ); in main()
Dgen_key.c195 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in main() local
208 mbedtls_mpi_init( &D ); mbedtls_mpi_init( &E ); mbedtls_mpi_init( &DP ); in main()
372 ( ret = mbedtls_rsa_export_crt( rsa, &DP, &DQ, &QP ) ) != 0 ) in main()
383 mbedtls_mpi_write_file( "DP: ", &DP, 16, NULL ); in main()
431 mbedtls_mpi_free( &D ); mbedtls_mpi_free( &E ); mbedtls_mpi_free( &DP ); in main()
Dkey_app_writer.c216 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in main() local
230 mbedtls_mpi_init( &D ); mbedtls_mpi_init( &E ); mbedtls_mpi_init( &DP ); in main()
340 ( ret = mbedtls_rsa_export_crt( rsa, &DP, &DQ, &QP ) ) != 0 ) in main()
351 mbedtls_mpi_write_file( "DP: ", &DP, 16, NULL ); in main()
449 mbedtls_mpi_free( &D ); mbedtls_mpi_free( &E ); mbedtls_mpi_free( &DP ); in main()
Drsa_priv.txt6 DP = 0D0E21C07BF434B4A83B116472C2147A11D8EB98A33CFBBCF1D275EF19D815941622435AAF3839B6C432CA53CE9E77…
/third_party/mesa3d/src/intel/tools/tests/gen8/
Dsend.asm410 …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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DDiagnosticInfo.h121 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/
Drsa_alt_helpers.c241 const mbedtls_mpi *D, mbedtls_mpi *DP, in mbedtls_rsa_deduce_crt() argument
249 if( DP != NULL ) in mbedtls_rsa_deduce_crt()
252 MBEDTLS_MPI_CHK( mbedtls_mpi_mod_mpi( DP, D, &K ) ); in mbedtls_rsa_deduce_crt()
402 const mbedtls_mpi *D, const mbedtls_mpi *DP, in mbedtls_rsa_validate_crt() argument
412 if( DP != NULL ) in mbedtls_rsa_validate_crt()
421 MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mpi( &L, DP, D ) ); in mbedtls_rsa_validate_crt()
Drsa_alt_helpers.h143 const mbedtls_mpi *D, mbedtls_mpi *DP,
213 const mbedtls_mpi *D, const mbedtls_mpi *DP,
Drsa.c197 ( mbedtls_mpi_cmp_int( &ctx->DP, 0 ) <= 0 || in rsa_check_context()
247 have_DP = ( mbedtls_mpi_cmp_int( &ctx->DP, 0 ) != 0 ); in mbedtls_rsa_complete()
320 &ctx->DP, &ctx->DQ, &ctx->QP ); in mbedtls_rsa_complete()
427 mbedtls_mpi *DP, mbedtls_mpi *DQ, mbedtls_mpi *QP ) in mbedtls_rsa_export_crt() argument
446 if( ( DP != NULL && ( ret = mbedtls_mpi_copy( DP, &ctx->DP ) ) != 0 ) || in mbedtls_rsa_export_crt()
454 DP, DQ, QP ) ) != 0 ) in mbedtls_rsa_export_crt()
629 &ctx->DP, &ctx->DQ, &ctx->QP ) ); in mbedtls_rsa_gen_key()
701 &ctx->DP, &ctx->DQ, &ctx->QP ) != 0 ) in mbedtls_rsa_check_privkey()
899 mbedtls_mpi *DP = &ctx->DP; in mbedtls_rsa_private() local
997 &ctx->DP ) ); in mbedtls_rsa_private()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/ARM/
DARMGenAsmMatcher.inc7355 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/boost/libs/geometry/index/test/algorithms/
Dpath_intersection.cpp68 typedef bg::model::linestring<double_point_type> DP; in test_large_integers() typedef
69 DP double_path; in test_large_integers()
80 bg::default_length_result<DP>::type double_value; in test_large_integers()
/third_party/libinput/doc/user/
Dtools.rst105 -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/
DMipsGenAsmMatcher.inc3475 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/
DXCoreRegisterInfo.td38 def DP : Ri<13, "dp">, DwarfRegNum<[13]>;
56 R11, CP, DP, SP, LR)> {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DLegacyDivergenceAnalysis.cpp347 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/llvm/lib/Linker/
DLinkDiagnosticInfo.h20 void print(DiagnosticPrinter &DP) const override;

12345