/third_party/ffmpeg/libavcodec/ |
D | h264data.c | 190 #define QP(qP, depth) ((qP) + 6 * ((depth) - 8)) macro 193 QP(0, d), QP(1, d), QP(2, d), QP(3, d), QP(4, d), QP(5, d), \ 194 QP(6, d), QP(7, d), QP(8, d), QP(9, d), QP(10, d), QP(11, d), \ 195 QP(12, d), QP(13, d), QP(14, d), QP(15, d), QP(16, d), QP(17, d), \ 196 QP(18, d), QP(19, d), QP(20, d), QP(21, d), QP(22, d), QP(23, d), \ 197 QP(24, d), QP(25, d), QP(26, d), QP(27, d), QP(28, d), QP(29, d), \ 198 QP(29, d), QP(30, d), QP(31, d), QP(32, d), QP(32, d), QP(33, d), \ 199 QP(34, d), QP(34, d), QP(35, d), QP(35, d), QP(36, d), QP(36, d), \ 200 QP(37, d), QP(37, d), QP(37, d), QP(38, d), QP(38, d), QP(38, d), \ 201 QP(39, d), QP(39, d), QP(39, d), QP(39, d)
|
/third_party/python/Lib/email/ |
D | charset.py | 23 QP = 1 # Quoted-Printable variable 39 'iso-8859-1': (QP, QP, None), 40 'iso-8859-2': (QP, QP, None), 41 'iso-8859-3': (QP, QP, None), 42 'iso-8859-4': (QP, QP, None), 47 'iso-8859-9': (QP, QP, None), 48 'iso-8859-10': (QP, QP, None), 50 'iso-8859-13': (QP, QP, None), 51 'iso-8859-14': (QP, QP, None), 52 'iso-8859-15': (QP, QP, None), [all …]
|
/third_party/ffmpeg/libpostproc/ |
D | postprocess.c | 220 static inline int isHorizMinMaxOk_C(const uint8_t src[], int stride, int QP) in isHorizMinMaxOk_C() argument 224 if((unsigned)(src[0] - src[5] + 2*QP) > 4*QP) return 0; in isHorizMinMaxOk_C() 226 if((unsigned)(src[2] - src[7] + 2*QP) > 4*QP) return 0; in isHorizMinMaxOk_C() 228 if((unsigned)(src[4] - src[1] + 2*QP) > 4*QP) return 0; in isHorizMinMaxOk_C() 230 if((unsigned)(src[6] - src[3] + 2*QP) > 4*QP) return 0; in isHorizMinMaxOk_C() 236 static inline int isVertMinMaxOk_C(const uint8_t src[], int stride, int QP) in isVertMinMaxOk_C() argument 241 if((unsigned)(src[ x + 0*stride] - src[ x + 5*stride] + 2*QP) > 4*QP) return 0; in isVertMinMaxOk_C() 242 if((unsigned)(src[1+x + 2*stride] - src[1+x + 7*stride] + 2*QP) > 4*QP) return 0; in isVertMinMaxOk_C() 243 if((unsigned)(src[2+x + 4*stride] - src[2+x + 1*stride] + 2*QP) > 4*QP) return 0; in isVertMinMaxOk_C() 244 if((unsigned)(src[3+x + 6*stride] - src[3+x + 3*stride] + 2*QP) > 4*QP) return 0; in isVertMinMaxOk_C() [all …]
|
D | postprocess_template.c | 371 const int first= FFABS(src[0] - src[l1]) < c->QP ? src[0] : src[l1]; in RENAME() 372 const int last= FFABS(src[l8] - src[l9]) < c->QP ? src[l9] : src[l8]; in RENAME() 519 if(d < co->QP*2){ in RENAME() 1065 if(FFABS(middleEnergy) < 8*c->QP){ in RENAME() 1330 const int QP2= c->QP/2 + 1; in RENAME() 1407 worstQP= QP; in RENAME() 3477 int QP=0, nonBQP=0; in RENAME() local 3512 QP = QPptr[(x+qp_index*BLOCK_SIZE)>>qpHShift]; in RENAME() 3515 QP= (QP* QPCorrecture + 256*128)>>16; in RENAME() 3519 c.QP_block[qp_index] = QP; in RENAME() [all …]
|
D | postprocess_internal.h | 157 int QP; member
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/doc/ |
D | PresentSemaphores.md | 8 - QP: vkQueuePresentKHR 25 CPU: ANI ... QS ... QP 40 CPU: QS QP QS QP QS QP QS QP 73 Associated with each QP operation is a semaphore signaled by the preceding QS and waited on by the 92 ## Determining When a QP Semaphore is Waited On 96 …CPU: ANI | QS | QP | ANI | QS | QP | ANI | W:F1 | QS | QP | ANI | W:F2 |… 104 CPU: ANI | W:F(X-2) | QS | QP | ... | ANI | W:F(Y-2) | QS | QP 117 => The PE has already processed the *previous* QP of I1 152 of the first QP performed on the new swapchain, at frame Y+2, when we know SPX can be destroyed, we 159 > must now be deferred to when the first QP of the new swapchain has been processed. If an
|
/third_party/mbedtls/programs/pkey/ |
D | rsa_genkey.c | 68 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in main() local 77 mbedtls_mpi_init( &DQ ); mbedtls_mpi_init( &QP ); in main() 105 ( ret = mbedtls_rsa_export_crt( &rsa, &DP, &DQ, &QP ) ) != 0 ) in main() 140 ( ret = mbedtls_mpi_write_file( "QP = ", &QP, 16, fpriv ) ) != 0 ) in main() 159 mbedtls_mpi_free( &DQ ); mbedtls_mpi_free( &QP ); in main()
|
D | rsa_sign.c | 64 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in main() local 70 mbedtls_mpi_init( &DQ ); mbedtls_mpi_init( &QP ); in main() 100 ( ret = mbedtls_mpi_read_file( &QP , 16, f ) ) != 0 ) in main() 178 mbedtls_mpi_free( &DQ ); mbedtls_mpi_free( &QP ); in main()
|
D | rsa_decrypt.c | 65 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in main() local 94 mbedtls_mpi_init( &DQ ); mbedtls_mpi_init( &QP ); in main() 123 ( ret = mbedtls_mpi_read_file( &QP , 16, f ) ) != 0 ) in main() 197 mbedtls_mpi_free( &DQ ); mbedtls_mpi_free( &QP ); in main()
|
D | key_app.c | 101 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in main() local 114 mbedtls_mpi_init( &DQ ); mbedtls_mpi_init( &QP ); in main() 221 ( ret = mbedtls_rsa_export_crt( rsa, &DP, &DQ, &QP ) ) != 0 ) in main() 234 MBEDTLS_MPI_CHK( mbedtls_mpi_write_file( "QP: ", &QP, 16, NULL ) ); in main() 325 mbedtls_mpi_free( &DQ ); mbedtls_mpi_free( &QP ); in main()
|
D | gen_key.c | 195 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in main() local 209 mbedtls_mpi_init( &DQ ); mbedtls_mpi_init( &QP ); in main() 372 ( ret = mbedtls_rsa_export_crt( rsa, &DP, &DQ, &QP ) ) != 0 ) in main() 385 mbedtls_mpi_write_file( "QP: ", &QP, 16, NULL ); in main() 432 mbedtls_mpi_free( &DQ ); mbedtls_mpi_free( &QP ); in main()
|
D | key_app_writer.c | 216 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in main() local 231 mbedtls_mpi_init( &DQ ); mbedtls_mpi_init( &QP ); in main() 340 ( ret = mbedtls_rsa_export_crt( rsa, &DP, &DQ, &QP ) ) != 0 ) in main() 353 mbedtls_mpi_write_file( "QP: ", &QP, 16, NULL ); in main() 450 mbedtls_mpi_free( &DQ ); mbedtls_mpi_free( &QP ); in main()
|
D | rsa_priv.txt | 8 QP = 97AC5BB885ABCA314375E9E4DB1BA4B2218C90619F61BD474F5785075ECA81750A735199A8C191FE2D3355E7CF601A…
|
/third_party/mbedtls/programs/fuzz/ |
D | fuzz_privkey.c | 29 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in LLVMFuzzerTestOneInput() local 34 mbedtls_mpi_init( &DQ ); mbedtls_mpi_init( &QP ); in LLVMFuzzerTestOneInput() 40 if ( mbedtls_rsa_export_crt( rsa, &DP, &DQ, &QP ) != 0 ) { in LLVMFuzzerTestOneInput() 46 mbedtls_mpi_free( &DQ ); mbedtls_mpi_free( &QP ); in LLVMFuzzerTestOneInput()
|
D | fuzz_pubkey.c | 18 mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; in LLVMFuzzerTestOneInput() local 23 mbedtls_mpi_init( &DQ ); mbedtls_mpi_init( &QP ); in LLVMFuzzerTestOneInput() 32 if ( mbedtls_rsa_export_crt( rsa, &DP, &DQ, &QP ) != MBEDTLS_ERR_RSA_BAD_INPUT_DATA ) { in LLVMFuzzerTestOneInput() 38 mbedtls_mpi_free( &DQ ); mbedtls_mpi_free( &QP ); in LLVMFuzzerTestOneInput()
|
/third_party/mbedtls/library/ |
D | rsa_alt_helpers.c | 242 mbedtls_mpi *DQ, mbedtls_mpi *QP ) in mbedtls_rsa_deduce_crt() argument 263 if( QP != NULL ) in mbedtls_rsa_deduce_crt() 265 MBEDTLS_MPI_CHK( mbedtls_mpi_inv_mod( QP, Q, P ) ); in mbedtls_rsa_deduce_crt() 403 const mbedtls_mpi *DQ, const mbedtls_mpi *QP ) in mbedtls_rsa_validate_crt() argument 452 if( QP != NULL ) in mbedtls_rsa_validate_crt() 460 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &K, QP, Q ) ); in mbedtls_rsa_validate_crt()
|
D | rsa_alt_helpers.h | 144 mbedtls_mpi *DQ, mbedtls_mpi *QP ); 214 const mbedtls_mpi *DQ, const mbedtls_mpi *QP );
|
D | rsa.c | 220 mbedtls_mpi_cmp_int( &ctx->QP, 0 ) <= 0 ) in rsa_check_context() 249 have_QP = ( mbedtls_mpi_cmp_int( &ctx->QP, 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 448 ( QP != NULL && ( ret = mbedtls_mpi_copy( QP, &ctx->QP ) ) != 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() 1030 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &TP, &T, &ctx->QP ) ); in mbedtls_rsa_private() 2246 MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &dst->QP, &src->QP ) ); in mbedtls_rsa_copy() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | README_P9.txt | 174 - QP Copy Sign: xscpsgnqp 178 - QP Absolute/Negative-Absolute/Negate: xsabsqp xsnabsqp xsnegqp 184 - QP Add/Divide/Multiply/Subtract/Square-Root: 196 - Round to Odd of QP Add/Divide/Multiply/Subtract/Square-Root: 221 - QP (Negative) Multiply-{Add/Subtract}: xsmaddqp xsmsubqp xsnmaddqp xsnmsubqp 245 - Round to Odd of QP (Negative) Multiply-{Add/Subtract}: 297 - QP Compare Ordered/Unordered: xscmpoqp xscmpuqp 306 - DP/QP Compare Exponents: xscmpexpdp xscmpexpqp 327 - Convert DP -> QP: xscvdpqp 334 - Round & Convert QP -> DP (dword[1] is set to zero): xscvqpdp xscvqpdpo [all …]
|
/third_party/mbedtls/include/mbedtls/ |
D | rsa.h | 108 mbedtls_mpi MBEDTLS_PRIVATE(QP); /*!< <code>1 / (Q % P)</code>. */ 412 mbedtls_mpi *DP, mbedtls_mpi *DQ, mbedtls_mpi *QP );
|
/third_party/python/Doc/library/ |
D | email.charset.rst | 61 header, this attribute will be set to ``Charset.QP`` (for 63 ``Charset.SHORTEST`` for the shortest of QP or BASE64 encoding. Otherwise, 108 Returns the string ``quoted-printable`` if *body_encoding* is ``QP``, 178 Optional *header_enc* and *body_enc* is either ``Charset.QP`` for
|
/third_party/libwebsockets/lib/tls/mbedtls/ |
D | lws-genrsa.c | 82 &ctx->ctx->MBEDTLS_PRIVATE(QP), 169 &ctx->ctx->MBEDTLS_PRIVATE(QP), 484 &ctx->ctx->MBEDTLS_PRIVATE(QP),
|
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/ |
D | video_encode_h265_extensions.txt | 608 * pname:initialRcQp provides the QP values for each picture type, to be 619 * pname:minQp provides the lower bound on the QP values for each picture 625 * pname:maxQp provides the upper bound on the QP values for each picture 654 [open,refpage='VkVideoEncodeH265QpEXT',desc='Structure describing H.265 QP values per picture type'… 660 * pname:qpI is the QP to be used for I-frames. 661 * pname:qpP is the QP to be used for P-frames. 662 * pname:qpB is the QP to be used for B-frames.
|
D | video_encode_h264_extensions.txt | 632 * pname:initialRcQp provides the QP values for each picture type, to be 643 * pname:minQp provides the lower bound on the QP values for each picture 649 * pname:maxQp provides the upper bound on the QP values for each picture 678 [open,refpage='VkVideoEncodeH264QpEXT',desc='Structure describing H.264 QP values per picture type'… 684 * pname:qpI is the QP to be used for I-frames. 685 * pname:qpP is the QP to be used for P-frames. 686 * pname:qpB is the QP to be used for B-frames.
|
D | video_encode_h264_extensions.adoc | 668 * pname:initialRcQp provides the QP values for each picture type, to be 679 * pname:minQp provides the lower bound on the QP values for each picture 685 * pname:maxQp provides the upper bound on the QP values for each picture 719 [open,refpage='VkVideoEncodeH264QpEXT',desc='Structure describing H.264 QP values per picture type'… 725 * pname:qpI is the QP to be used for I-frames. 726 * pname:qpP is the QP to be used for P-frames. 727 * pname:qpB is the QP to be used for B-frames.
|