/third_party/ffmpeg/libavcodec/ |
D | mqcenc.c | 81 int qe; in ff_mqc_encode() local 83 qe = ff_mqc_qe[*cxstate]; in ff_mqc_encode() 84 mqc->a -= qe; in ff_mqc_encode() 87 if (mqc->a < qe) in ff_mqc_encode() 88 mqc->a = qe; in ff_mqc_encode() 90 mqc->c += qe; in ff_mqc_encode() 94 mqc->c += qe; in ff_mqc_encode() 96 if (mqc->a < qe) in ff_mqc_encode() 97 mqc->c += qe; in ff_mqc_encode() 99 mqc->a = qe; in ff_mqc_encode()
|
D | mqc.c | 37 uint16_t qe; member 102 ff_mqc_qe[2 * i + 1] = cx_states[i].qe; in ff_mqc_init_context_tables()
|
/third_party/skia/src/gpu/effects/ |
D | GrBezierEffect.cpp | 209 const GrQuadEffect& qe = geomProc.cast<GrQuadEffect>(); in setData() local 211 SetTransform(pdman, shaderCaps, fViewMatrixUniform, qe.fViewMatrix, &fViewMatrix); in setData() 212 SetTransform(pdman, shaderCaps, fLocalMatrixUniform, qe.fLocalMatrix, &fLocalMatrix); in setData() 214 if (qe.fColor != fColor) { in setData() 215 pdman.set4fv(fColorUniform, 1, qe.fColor.vec()); in setData() 216 fColor = qe.fColor; in setData() 219 if (qe.fCoverageScale != 0xff && qe.fCoverageScale != fCoverageScale) { in setData() 220 pdman.set1f(fCoverageScaleUniform, GrNormalizeByteToFloat(qe.fCoverageScale)); in setData() 221 fCoverageScale = qe.fCoverageScale; in setData()
|
/third_party/flutter/skia/src/gpu/effects/ |
D | GrBezierEffect.cpp | 281 const GrQuadEffect& qe = primProc.cast<GrQuadEffect>(); in setData() local 283 if (!qe.viewMatrix().isIdentity() && !fViewMatrix.cheapEqualTo(qe.viewMatrix())) { in setData() 284 fViewMatrix = qe.viewMatrix(); in setData() 290 if (qe.color() != fColor) { in setData() 291 pdman.set4fv(fColorUniform, 1, qe.color().vec()); in setData() 292 fColor = qe.color(); in setData() 295 if (qe.coverageScale() != 0xff && qe.coverageScale() != fCoverageScale) { in setData() 296 pdman.set1f(fCoverageScaleUniform, GrNormalizeByteToFloat(qe.coverageScale())); in setData() 297 fCoverageScale = qe.coverageScale(); in setData() 299 this->setTransformDataHelper(qe.localMatrix(), pdman, &transformIter); in setData()
|
/third_party/boost/libs/geometry/test/algorithms/overlay/ |
D | assemble.cpp | 152 for (int qe = 0; qe < 4; qe++) in generate() local 159 std::string qs = "POLYGON(" + exteriors[qe] + "," + interiors[qi] + ")"; in generate() 174 out << pe << qe << pi << qi; in generate()
|
/third_party/uboot/u-boot-2020.01/drivers/qe/ |
D | Makefile | 5 obj-$(CONFIG_QE) += qe.o uccf.o uec.o uec_phy.o 6 obj-$(CONFIG_U_QE) += qe.o
|
/third_party/libjpeg/ |
D | jdarith.c | 110 register INT32 qe, temp; in arith_decode() local 152 qe = jpeg_aritab[sv & 0x7F]; /* => Qe_Value */ in arith_decode() 153 nl = qe & 0xFF; qe >>= 8; /* Next_Index_LPS + Switch_MPS */ in arith_decode() 154 nm = qe & 0xFF; qe >>= 8; /* Next_Index_MPS */ in arith_decode() 157 temp = e->a - qe; in arith_decode() 163 if (e->a < qe) { in arith_decode() 164 e->a = qe; in arith_decode() 167 e->a = qe; in arith_decode() 173 if (e->a < qe) { in arith_decode()
|
D | jcarith.c | 223 register INT32 qe, temp; in arith_encode() local 230 qe = jpeg_aritab[sv & 0x7F]; /* => Qe_Value */ in arith_encode() 231 nl = qe & 0xFF; qe >>= 8; /* Next_Index_LPS + Switch_MPS */ in arith_encode() 232 nm = qe & 0xFF; qe >>= 8; /* Next_Index_MPS */ in arith_encode() 235 e->a -= qe; in arith_encode() 238 if (e->a >= qe) { in arith_encode() 244 e->a = qe; in arith_encode() 251 if (e->a < qe) { in arith_encode() 256 e->a = qe; in arith_encode()
|
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/ |
D | jdarith.c | 119 register JLONG qe, temp; in arith_decode() local 161 qe = jpeg_aritab[sv & 0x7F]; /* => Qe_Value */ in arith_decode() 162 nl = qe & 0xFF; qe >>= 8; /* Next_Index_LPS + Switch_MPS */ in arith_decode() 163 nm = qe & 0xFF; qe >>= 8; /* Next_Index_MPS */ in arith_decode() 166 temp = e->a - qe; in arith_decode() 172 if (e->a < qe) { in arith_decode() 173 e->a = qe; in arith_decode() 176 e->a = qe; in arith_decode() 182 if (e->a < qe) { in arith_decode()
|
D | jcarith.c | 229 register JLONG qe, temp; in arith_encode() local 236 qe = jpeg_aritab[sv & 0x7F]; /* => Qe_Value */ in arith_encode() 237 nl = qe & 0xFF; qe >>= 8; /* Next_Index_LPS + Switch_MPS */ in arith_encode() 238 nm = qe & 0xFF; qe >>= 8; /* Next_Index_MPS */ in arith_encode() 241 e->a -= qe; in arith_encode() 244 if (e->a >= qe) { in arith_encode() 250 e->a = qe; in arith_encode() 257 if (e->a < qe) { in arith_encode() 262 e->a = qe; in arith_encode()
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
D | jdarith.c | 119 register JLONG qe, temp; in arith_decode() local 161 qe = jpeg_aritab[sv & 0x7F]; /* => Qe_Value */ in arith_decode() 162 nl = qe & 0xFF; qe >>= 8; /* Next_Index_LPS + Switch_MPS */ in arith_decode() 163 nm = qe & 0xFF; qe >>= 8; /* Next_Index_MPS */ in arith_decode() 166 temp = e->a - qe; in arith_decode() 172 if (e->a < qe) { in arith_decode() 173 e->a = qe; in arith_decode() 176 e->a = qe; in arith_decode() 182 if (e->a < qe) { in arith_decode()
|
D | jcarith.c | 229 register JLONG qe, temp; in arith_encode() local 236 qe = jpeg_aritab[sv & 0x7F]; /* => Qe_Value */ in arith_encode() 237 nl = qe & 0xFF; qe >>= 8; /* Next_Index_LPS + Switch_MPS */ in arith_encode() 238 nm = qe & 0xFF; qe >>= 8; /* Next_Index_MPS */ in arith_encode() 241 e->a -= qe; in arith_encode() 244 if (e->a >= qe) { in arith_encode() 250 e->a = qe; in arith_encode() 257 if (e->a < qe) { in arith_encode() 262 e->a = qe; in arith_encode()
|
/third_party/flutter/skia/third_party/externals/icu/source/data/unit/ |
D | ku.txt | 26 dnam{"deqîqe"} 27 one{"{0} deqîqe"} 28 other{"{0} deqîqe"}
|
/third_party/uboot/u-boot-2020.01/board/freescale/p1_p2_rdb_pc/ |
D | README | 42 CPLD. QE-UEC and QE-UART can be enabled for linux kernel by setting "qe" 44 enable QE-TDM for linux kernel, set "qe;tdm" in hwconfig. Syntax is as below 46 'setenv hwconfig qe' to enable QE UEC/UART and disable Nor-Flash/CPLD. 47 'setenv hwconfig 'qe;tdm'' to enalbe QE TDM and disable Nor-Flash/CPLD.
|
/third_party/boost/tools/build/src/engine/ |
D | execvms.cpp | 225 char * qe = cmd_string + MIN( len, WRTLEN ); in exec_cmd() local 230 for ( ; q < qe; ++q ) in exec_cmd() 246 for ( q = qe; q < ( cmd_string + len ) in exec_cmd()
|
/third_party/icu/icu4c/source/data/unit/ |
D | ku.txt | 65 dnam{"deqîqe"} 66 one{"{0} deqîqe"} 67 other{"{0} deqîqe"}
|
/third_party/uboot/u-boot-2020.01/doc/device-tree-bindings/gpio/ |
D | gpio.txt | 122 compatible = "fsl,qe-pario-bank-a", "fsl,qe-pario-bank"; 129 compatible = "fsl,qe-pario-bank-e", "fsl,qe-pario-bank"; 183 compatible = "fsl,qe-pario-bank-e", "fsl,qe-pario-bank"; 197 compatible = "fsl,qe-pario-bank-e", "fsl,qe-pario-bank";
|
/third_party/skia/src/gpu/ops/ |
D | AAConvexPathRenderer.cpp | 602 const QuadEdgeEffect& qe = geomProc.cast<QuadEdgeEffect>(); in makeProgramImpl() local 603 SetTransform(pdman, shaderCaps, fLocalMatrixUniform, qe.fLocalMatrix, &fLocalMatrix); in makeProgramImpl() 608 const QuadEdgeEffect& qe = args.fGeomProc.cast<QuadEdgeEffect>(); in makeProgramImpl() local 615 varyingHandler->emitAttributes(qe); in makeProgramImpl() 621 vertBuilder->codeAppendf("%s = %s;", v.vsOut(), qe.fInQuadEdge.name()); in makeProgramImpl() 625 varyingHandler->addPassThroughAttribute(qe.fInColor.asShaderVar(), args.fOutputColor); in makeProgramImpl() 628 WriteOutputPosition(vertBuilder, gpArgs, qe.fInPosition.name()); in makeProgramImpl() 629 if (qe.fUsesLocalCoords) { in makeProgramImpl() 634 qe.fInPosition.asShaderVar(), in makeProgramImpl() 635 qe.fLocalMatrix, in makeProgramImpl()
|
/third_party/skia/third_party/externals/icu/source/data/unit/ |
D | ku.txt | 65 dnam{"deqîqe"} 66 one{"{0} deqîqe"} 67 other{"{0} deqîqe"}
|
/third_party/flutter/skia/src/gpu/ops/ |
D | GrAAConvexPathRenderer.cpp | 550 const QuadEdgeEffect& qe = args.fGP.cast<QuadEdgeEffect>(); in onEmitCode() local 556 varyingHandler->emitAttributes(qe); in onEmitCode() 560 vertBuilder->codeAppendf("%s = %s;", v.vsOut(), qe.fInQuadEdge.name()); in onEmitCode() 563 varyingHandler->addPassThroughAttribute(qe.fInColor, args.fOutputColor); in onEmitCode() 568 this->writeOutputPosition(vertBuilder, gpArgs, qe.fInPosition.name()); in onEmitCode() 574 qe.fInPosition.asShaderVar(), in onEmitCode() 575 qe.fLocalMatrix, in onEmitCode() 609 const QuadEdgeEffect& qe = gp.cast<QuadEdgeEffect>(); in setData() local 610 this->setTransformDataHelper(qe.fLocalMatrix, pdman, &transformIter); in setData()
|
/third_party/uboot/u-boot-2020.01/drivers/ |
D | Makefile | 99 obj-$(CONFIG_QE) += qe/ 100 obj-$(CONFIG_U_QE) += qe/
|
/third_party/mbedtls/tests/data_files/ |
D | rsa_pkcs8_pbe_sha1_2048_rc4_128.pem | 12 qe/ch/KDfIUNyy/51uNMjSdOweJqG9SIIlfDG6Pd2bMFkao1Y7VsG4AM89mGYIWo
|
/third_party/uboot/u-boot-2020.01/configs/ |
D | P1021RDB-PC_36BIT_defconfig | 34 …ef000000.nor:256k(vsc7385-firmware),256k(dtb),4608k(kernel),9728k(fs),256k(qe-ucode-firmware),1280…
|
D | P1021RDB-PC_defconfig | 33 …ef000000.nor:256k(vsc7385-firmware),256k(dtb),4608k(kernel),9728k(fs),256k(qe-ucode-firmware),1280…
|
D | TWR-P1025_defconfig | 33 …c000000.nor:256k(vsc7385-firmware),256k(dtb),5632k(kernel),57856k(fs),256k(qe-ucode-firmware),1280…
|