/external/eigen/Eigen/src/LU/arch/ |
D | Inverse_SSE.h | 79 __m128 dA, dB, dC, dD; // determinant of the sub-matrices 94 dB = _mm_mul_ps(_mm_shuffle_ps(B, B, 0x5F),B); 95 dB = _mm_sub_ss(dB, _mm_movehl_ps(dB,dB)); 118 d2 = _mm_mul_ss(dB,dC); 145 iB = _mm_sub_ps(_mm_mul_ps(C,_mm_shuffle_ps(dB,dB,0)), iB); 222 __m128d dA, dB, dC, dD; // determinant of the sub-matrices 230 dB = _mm_shuffle_pd(B2, B2, 1); 231 dB = _mm_mul_pd(B1, dB); 232 dB = _mm_sub_sd(dB, _mm_shuffle_pd(dB,dB,3)); 284 d2 = _mm_mul_sd(dB, dC); [all …]
|
/external/eigen/unsupported/test/ |
D | kronecker_product.cpp | 196 MatrixXf dA(ra,ca), dB(rb,cb), dC; in test_kronecker_product() local 198 initSparse(density, dB, sB); in test_kronecker_product() 201 dC = kroneckerProduct(dA,dB); in test_kronecker_product() 205 dC = kroneckerProduct(dA.transpose(),dB); in test_kronecker_product() 209 dC = kroneckerProduct(dA.transpose(),dB.transpose()); in test_kronecker_product() 213 dC = kroneckerProduct(dA,dB.transpose()); in test_kronecker_product() 217 dC = kroneckerProduct(dA,dB); in test_kronecker_product() 221 dC = kroneckerProduct(dA,dB); in test_kronecker_product() 224 sC2 = kroneckerProduct(sA,dB); in test_kronecker_product() 225 dC = kroneckerProduct(dA,dB); in test_kronecker_product() [all …]
|
/external/eigen/test/ |
D | sparse_solver.h | 290 DenseMatrix dB(size,rhsCols); 291 initSparse<Scalar>(density, dB, B, ForceNonZeroDiag); 293 DenseVector dc = dB.col(0); 297 CALL_SUBTEST( check_sparse_solving(solver, A, dB, dA, dB) ); 298 CALL_SUBTEST( check_sparse_solving(solver, halfA, dB, dA, dB) ); 299 CALL_SUBTEST( check_sparse_solving(solver, A, B, dA, dB) ); 300 CALL_SUBTEST( check_sparse_solving(solver, halfA, B, dA, dB) ); 417 DenseMatrix dB(size,rhsCols); 420 initSparse<Scalar>(density, dB, B, ForceNonZeroDiag); 423 DenseVector dc = dB.col(0); [all …]
|
/external/pdfium/fpdfsdk/pdfwindow/ |
D | cpwl_color.cpp | 40 CPWL_Color ConvertRGB2GRAY(FX_FLOAT dR, FX_FLOAT dG, FX_FLOAT dB) { in ConvertRGB2GRAY() argument 41 if (!InRange(dR) || !InRange(dG) || !InRange(dB)) in ConvertRGB2GRAY() 43 return CPWL_Color(COLORTYPE_GRAY, 0.3f * dR + 0.59f * dG + 0.11f * dB); in ConvertRGB2GRAY() 54 CPWL_Color ConvertRGB2CMYK(FX_FLOAT dR, FX_FLOAT dG, FX_FLOAT dB) { in ConvertRGB2CMYK() argument 55 if (!InRange(dR) || !InRange(dG) || !InRange(dB)) in ConvertRGB2CMYK() 60 FX_FLOAT y = 1.0f - dB; in ConvertRGB2CMYK()
|
/external/mesa3d/src/mesa/swrast/ |
D | s_blend.c | 492 GLfloat dR, dG, dB, dA; /* Dest factor */ in blend_general_float() local 626 dR = dG = dB = 0.0F; in blend_general_float() 629 dR = dG = dB = 1.0F; in blend_general_float() 634 dB = Bs; in blend_general_float() 639 dB = 1.0F - Bs; in blend_general_float() 642 dR = dG = dB = As; in blend_general_float() 645 dR = dG = dB = 1.0F - As; in blend_general_float() 648 dR = dG = dB = Ad; in blend_general_float() 651 dR = dG = dB = 1.0F - Ad; in blend_general_float() 656 dB = ctx->Color.BlendColor[2]; in blend_general_float() [all …]
|
/external/webrtc/webrtc/modules/audio_processing/agc/legacy/ |
D | digital_agc.c | 644 int16_t zeros, dB; in WebRtcAgc_ProcessVad() local 706 dB = (15 - zeros) << 11; in WebRtcAgc_ProcessVad() 717 tmp32 = state->meanShortTerm * 15 + dB; in WebRtcAgc_ProcessVad() 721 tmp32 = (dB * dB) >> 12; in WebRtcAgc_ProcessVad() 731 tmp32 = state->meanLongTerm * state->counter + dB; in WebRtcAgc_ProcessVad() 736 tmp32 = (dB * dB) >> 12; in WebRtcAgc_ProcessVad() 753 tmp32 = tmp16 * (int16_t)(dB - state->meanLongTerm); in WebRtcAgc_ProcessVad()
|
/external/skia/src/pathops/ |
D | SkPathOpsPoint.h | 194 SkDPoint dA, dB; in ApproximatelyEqual() local 196 dB.set(b); in ApproximatelyEqual() 197 double dist = dA.distance(dB); // OPTIMIZATION: can we compare against distSq instead ? in ApproximatelyEqual() 246 SkDPoint dA, dB; in RoughlyEqual() local 248 dB.set(b); in RoughlyEqual() 249 double dist = dA.distance(dB); // OPTIMIZATION: can we compare against distSq instead ? in RoughlyEqual()
|
/external/sonivox/arm-wt-22k/lib_src/ |
D | ARM-E_interpolate_loop_gnu.s | 97 @ This section performs a gain adjustment of -12dB for 16-bit samples 98 @ or +36dB for 8-bit samples. For a high quality synthesizer, the output 105 MOV tmp0, tmp0, LSL #6 @ boost 8-bit signal by 36dB 107 MOV tmp0, tmp0, ASR #2 @ reduce 16-bit signal by 12dB
|
D | ARM-E_interpolate_noloop_gnu.s | 89 @ This section performs a gain adjustment of -12dB for 16-bit samples 90 @ or +36dB for 8-bit samples. For a high quality synthesizer, the output 97 MOV tmp0, tmp0, LSL #6 @ boost 8-bit signal by 36dB 99 MOV tmp0, tmp0, ASR #2 @ reduce 16-bit signal by 12dB
|
D | ARM-E_voice_gain_gnu.s | 152 MOV tmp0, tmp0, ASR #1 @ add 6dB headroom
|
/external/swiftshader/src/Renderer/ |
D | ETC_Decoder.cpp | 129 int b = (B + dB); in decodeBlock() 184 signed char dB : 3; member 356 int b2 = extend_5to8bits(B + dB); in decodeDifferentialBlock()
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-US/ |
D | en-US_lh0_kpdf_dur.pkb | 53 0AQ��e Q�r� � "�F2�dB�Q1A�g`�@!0 ҭ00aaPp@"�g���Qs�dP�S1����4q…
|
D | en-US_kdt_posp.pkb | 47 …h��J���Z���BÚ��2���4TVWbmVz��Y���9H����F=n!oAo����J=o�o����+�ˈ��;�zt&4 QF<��dB�(\2���
|
/external/libjpeg-turbo/ |
D | README-turbo.txt | 278 0.08 dB gain in PNSR.) 287 is less than 0.10 dB, whereas changing the quality level by 1 in the upper 288 range of the quality scale is typically more like a 1.0 dB difference.)
|
D | README.md | 281 0.08 dB gain in PNSR.) 291 is less than 0.10 dB, whereas changing the quality level by 1 in the upper 292 range of the quality scale is typically more like a 1.0 dB difference.)
|
D | usage.txt | 185 generally about a 1-3 dB loss (in PSNR) relative to 332 method incurs generally about a 4-6 dB loss (in PSNR)
|
/external/v8/benchmarks/ |
D | raytrace.js | 776 var dB = (0.5 * Math.pow(shadowInfo.shape.material.transparency, 0.5)); 777 color = Flog.RayTracer.Color.prototype.addScalar(vA,dB);
|
/external/deqp/framework/common/ |
D | tcuCompressedTexture.cpp | 399 deUint8 dB = (deUint8)getBits(src, 40, 42); in decompressETC1Block() local 407 baseB[1] = extend5Delta3To8(bB, dB); in decompressETC1Block()
|
/external/ImageMagick/Magick++/tests/ |
D | test_image.miff | 304 X8!gI-oN.wU2|[9~`>�dB�hJ�nJ�pI�tP 806 P9R;dBa;E,P3X:\9cBM1S;aFZ;^<`<cHlV
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/de-DE/ |
D | de-DE_gl0_kpdf_phs.pkb | 1577 …nnswpZ?*$'% &4CPWVOC6+""%''&$ G����vZ\t�������T6.6GYi|���dB,#%,10('9N\]R?+
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-GB/ |
D | en-GB_kdt_posd.pkb | 200 ]䃅�`�t��,; v�l��M�����6H9t��x&�<��uW��o#1t��dB)0�Ä��\��sغ]
|
D | en-GB_kdt_g2p.pkb | 54 …@xs("��S"ّ{3!�_R1�$F;��jL�H�0j�s"��`2 ��c��y쌩�b����*�##dB���T�r-O��FB�̇���=z…
|
/external/libxml2/macos/ |
D | libxml2.mcp.xml.sit.hqx | 118 Teq#1"dB$',jhRET3j*&b'*XN0pNbXSTG[`CEJjiH!3U5(Sp21C0*SEJrF3l2KZP
|
/external/webp/ |
D | README | 236 -psnr <float> .......... target PSNR (in dB. typically: 42)
|
/external/libvpx/libvpx/ |
D | CHANGELOG | 227 range. For VC style input the loss seen is up to 0.2dB. See commit
|