Home
last modified time | relevance | path

Searched refs:dB (Results 1 – 25 of 243) 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/skia/modules/sksg/src/
DSkSGColorFilter.cpp98 dB = c1.fB - c0.fB; in Make2ColorGradient() local
131 dB*SK_LUM_COEFF_R, dB*SK_LUM_COEFF_G, dB*SK_LUM_COEFF_B, 0, c0.fB * 255, in Make2ColorGradient()
163 dB = (SkColorGetB(c1) - b) / span_size; in MakeNColorGradient() local
171 b += dB; in MakeNColorGradient()
/external/pdfium/core/fxge/
Dcfx_color.cpp40 CFX_Color ConvertRGB2GRAY(float dR, float dG, float dB) { in ConvertRGB2GRAY() argument
41 if (!InRange(dR) || !InRange(dG) || !InRange(dB)) in ConvertRGB2GRAY()
43 return CFX_Color(CFX_Color::kGray, 0.3f * dR + 0.59f * dG + 0.11f * dB); in ConvertRGB2GRAY()
54 CFX_Color ConvertRGB2CMYK(float dR, float dG, float dB) { in ConvertRGB2CMYK() argument
55 if (!InRange(dR) || !InRange(dG) || !InRange(dB)) in ConvertRGB2CMYK()
60 float y = 1.0f - dB; in ConvertRGB2CMYK()
/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/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/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/skia/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
DARM-E_voice_gain_gnu.s152 MOV tmp0, tmp0, ASR #1 @ add 6dB headroom
/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/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ԟ�…
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_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ԟ�…
Db43a17bf17bca69685b4e1821a3e3543.0000173a.honggfuzz.cov16 …|z�Y�(�m�reP���dye#c�;���8-�6���� �r��:�6Q�"�V�5�~�X���Zk���7���dB���V�Μ����|��r�~Bf�…
De688054144168d17591bbb792be16248.00002281.honggfuzz.cov23 ���͒#���I��N��gEb�����$),�?o���h}�����?�Ԛ閲7x�a�&G��2��gŒe+w��MY�Y}�X��Cr�D6R-[��f/ԃ�����{dB�^…
/external/swiftshader/src/Device/
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/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()

12345678910