Home
last modified time | relevance | path

Searched refs:dB (Results 1 – 25 of 245) sorted by relevance

12345678910

/external/adhd/cras/src/dsp/tests/
Dplot_fftl.m17 yticklabels={"18dB","12dB","6dB","0dB","-6dB","-12dB","-18dB","-24dB"};
/external/eigen/Eigen/src/LU/arch/
DInverse_SSE.h79 __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/
Dkronecker_product.cpp196 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/
Dsparse_solver.h290 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/python/cryptography/vectors/cryptography_vectors/asymmetric/ECDH/
Dbrainpool.txt8 dB = 55E40BC41E37E3E2AD25C3C6654511FFA8474A91A0032087593852D3E7D76BD3
19 dB = 032640BC6003C59260F7250C3DB58CE647F98E1260ACCE4ACDA3DD869F74E01F8BA5E0324309DB6A9831497ABAC966…
30 dB = 230E18E1BCC88A362FA54E4EA3902009292F7F8033624FD471B5D8ACE49D12CFABBC19963DAB8E2F1EBA00BFFB29E4…
/external/pdfium/core/fxge/
Dcfx_color.cpp46 CFX_Color ConvertRGB2GRAY(float dR, float dG, float dB) { in ConvertRGB2GRAY() argument
47 if (!InRange(dR) || !InRange(dG) || !InRange(dB)) in ConvertRGB2GRAY()
49 return CFX_Color(CFX_Color::kGray, 0.3f * dR + 0.59f * dG + 0.11f * dB); in ConvertRGB2GRAY()
60 CFX_Color ConvertRGB2CMYK(float dR, float dG, float dB) { in ConvertRGB2CMYK() argument
61 if (!InRange(dR) || !InRange(dG) || !InRange(dB)) in ConvertRGB2CMYK()
66 float y = 1.0f - dB; in ConvertRGB2CMYK()
/external/skia/modules/sksg/src/
DSkSGColorFilter.cpp113 dB = c1.fB - c0.fB; in Make2ColorGradient() local
146 dB*SK_LUM_COEFF_R, dB*SK_LUM_COEFF_G, dB*SK_LUM_COEFF_B, 0, c0.fB, in Make2ColorGradient()
178 dB = (SkColorGetB(c1) - b) / span_size; in MakeNColorGradient() local
186 b += dB; in MakeNColorGradient()
/external/tcpdump/tests/
Dieee802.11_rates_oobr.out1 fhset 48 fhpat 48 48dBm signal 48dB signal 48dB noise [|802.11]Beacon IBSS, PRIVACY[|802.11]
/external/mesa3d/src/mesa/swrast/
Ds_blend.c492 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/
Ddigital_agc.c644 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/skqp/src/pathops/
DSkPathOpsPoint.h196 SkDPoint dA, dB; in ApproximatelyEqual() local
198 dB.set(b); in ApproximatelyEqual()
199 double dist = dA.distance(dB); // OPTIMIZATION: can we compare against distSq instead ? in ApproximatelyEqual()
248 SkDPoint dA, dB; in RoughlyEqual() local
250 dB.set(b); in RoughlyEqual()
251 double dist = dA.distance(dB); // OPTIMIZATION: can we compare against distSq instead ? in RoughlyEqual()
/external/sonivox/arm-wt-22k/lib_src/
DARM-E_interpolate_noloop_gnu.s89 @ 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
DARM-E_interpolate_loop_gnu.s97 @ 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
/external/skia/src/pathops/
DSkPathOpsPoint.h202 SkDPoint dA, dB; in ApproximatelyEqual() local
204 dB.set(b); in ApproximatelyEqual()
205 double dist = dA.distance(dB); // OPTIMIZATION: can we compare against distSq instead ? in ApproximatelyEqual()
254 SkDPoint dA, dB; in RoughlyEqual() local
256 dB.set(b); in RoughlyEqual()
257 double dist = dA.distance(dB); // OPTIMIZATION: can we compare against distSq instead ? in RoughlyEqual()
/external/adhd/cras-config/daisy/
DDAISY-I2S105 volume_curve = simple_step ; Headphones allowed full range, 0.5dB per step, 50dB total range.
/external/adhd/cras/
DREADME.dbus-api11 0 to 100, and will be translated to dB based on the
17 0 to 100, and will be translated to dB based on the
36 in dBFS * 100. For example 5dB of gain would be
43 in dBFS * 100. For example 5dB of gain would be
DREADME68 volume_step - Number of dB per volume 'tick' specified in dBFS * 100.
70 dB_at_N - The value in dB*100 that should be used for the volume at step
/external/u-boot/arch/powerpc/dts/
Dgazerbeam.dts190 3 2 1 0>; /* 3.5 dB for all pe values for all lanes */
198 3 2 1 0>; /* 3.5 dB for all pe values for all lanes */
410 3 2 1 0>; /* 3.5 dB for all pe values for all lanes */
418 3 2 1 0>; /* 3.5 dB for all pe values for all lanes */
/external/honggfuzz/examples/apache-httpd/corpus_http2/
D26304cc92903afafc0ef5a6de1eb346a.00005f21.honggfuzz.cov19 …��ǫ�<HI�d�*|SiQ�_1��6�5N�>8��L��h=[���*��� �jal�1��[/x�q�}Mo�BP��&dB�x'������� *50�iԟ�…
88 …��ǫ�<HI�d�*|SiQ�_1��6�5N�>8��L��h=[���*��� �jal�1��[/x�q�}Mo�BP��&dB�x'������� *50�iԟ�…
111 …��ǫ�<HI�d�*|SiQ�_1��6�5N�>8��L��h=[���*��� �jal�1��[/x�q�}Mo�BP��&dB�x'������� *50�iԟ�…
Dcd03fd2428c26f342634991ba0538a87.0000801c.honggfuzz.cov42 …��ǫ�<HI�d�*|SiQ�_1��6�5N�>8��L��h=[���*��� �jal�1��[/x�q�}Mo�BP��&dB�x'������� *50�iԟ�…
/external/honggfuzz/examples/apache-httpd/corpus_http1/
D26304cc92903afafc0ef5a6de1eb346a.00005f21.honggfuzz.cov19 …��ǫ�<HI�d�*|SiQ�_1��6�5N�>8��L��h=[���*��� �jal�1��[/x�q�}Mo�BP��&dB�x'������� *50�iԟ�…
88 …��ǫ�<HI�d�*|SiQ�_1��6�5N�>8��L��h=[���*��� �jal�1��[/x�q�}Mo�BP��&dB�x'������� *50�iԟ�…
111 …��ǫ�<HI�d�*|SiQ�_1��6�5N�>8��L��h=[���*��� �jal�1��[/x�q�}Mo�BP��&dB�x'������� *50�iԟ�…
/external/swiftshader/src/Renderer/
DETC_Decoder.cpp154 int b = (B + dB); in decodeBlock()
209 signed char dB : 3; member
381 int b2 = extend_5to8bits(B + dB); in decodeDifferentialBlock()
/external/swiftshader/src/Device/
DETC_Decoder.cpp153 int b = (B + dB); in decodeBlock()
208 signed char dB : 3; member
380 int b2 = extend_5to8bits(B + dB); in decodeDifferentialBlock()
/external/exoplayer/tree/testdata/src/test/assets/amr/
Dsample_wb_cbr.amr22 ….� 8��h0I�l�LQ<0�� ���u��(-��+֋���pe��� ���$ٺ)��L߃3�ye�z�*� ĝK���쬌8� 0dB�J�� � ��,�r�8����滁…
Dsample_wb.amr22 ….� 8��h0I�l�LQ<0�� ���u��(-��+֋���pe��� ���$ٺ)��L߃3�ye�z�*� ĝK���쬌8� 0dB�J�� � ��,�r�8����滁…

12345678910