HomeSort by relevance Sort by last modified time
    Searched refs:coef (Results 76 - 100 of 153) sorted by null

1 2 34 5 6 7

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
joystick.h 80 __s32 coef[8]; member in struct:js_corr
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
complexity.cc 98 result.coef = sigma_time_gn / sigma_gn_squared;
103 double fit = result.coef * fitting_curve(n[i]);
293 big_o.real_accumulated_time = result_real.coef;
294 big_o.cpu_accumulated_time = result_cpu.coef;
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
filter_functions.c 23 double* Coef,
32 //if (fabs(Coef[0]-1.0)<0.001) {
33 if ( (Coef[0] > 0.9999) && (Coef[0] < 1.0001) )
37 sum = Coef[1] * InOut[-1];
39 sum += Coef[k] * InOut[-k];
46 scal = 1.0 / Coef[0];
51 *InOut -= scal*Coef[k]*InOut[-k];
60 double* Coef,
72 tmp = In[0] * Coef[0]
    [all...]
  /external/libvpx/libvpx/vp9/encoder/arm/neon/
vp9_frame_scale_neon.c 176 const uint8x8_t *const coef) {
177 const uint16x8_t h0 = vmull_u8(s[0], coef[0]);
178 const uint16x8_t h1 = vmlal_u8(h0, s[1], coef[1]);
186 const int16_t *const coef,
192 const int16x8_t filters = vld1q_s16(coef);
302 const int16_t *const coef,
308 const int16x8_t filters = vld1q_s16(coef);
566 const InterpKernel *const coef,
578 vld1q_s16(coef[(phase_scaler + 0 * step_q4) & SUBPEL_MASK]);
580 vld1q_s16(coef[(phase_scaler + 1 * step_q4) & SUBPEL_MASK])
    [all...]
  /external/speex/libspeex/
lsp.c 141 spx_word16_t *coef, /* P or Q coefs in Q13 format */
162 sum = ADD32(EXTEND32(coef[m]), EXTEND32(MULT16_16_P14(coef[m-1],x)));
168 sum = ADD32(sum, EXTEND32(MULT16_16_P14(coef[m-i],b0)));
177 static float cheb_poly_eva(spx_word32_t *coef, spx_word16_t x, int m, char *stack)
192 b0=x*b0-b1+coef[m-k]; /* b0 holds its new value based on b0 and b1 */
196 return(-b1+.5*x*b0+coef[m]);
  /frameworks/base/core/java/android/widget/
OverScroller.java 611 float x, tx, coef; external variable declarations
614 coef = 3.0f * x * (1.0f - x);
615 tx = coef * ((1.0f - x) * P1 + x * P2) + x * x * x;
620 SPLINE_POSITION[i] = coef * ((1.0f - x) * START_TENSION + x) + x * x * x;
626 coef = 3.0f * y * (1.0f - y);
627 dy = coef * ((1.0f - y) * START_TENSION + y) + y * y * y;
632 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
OverScroller.java 610 float x, tx, coef; external variable declarations
613 coef = 3.0f * x * (1.0f - x);
614 tx = coef * ((1.0f - x) * P1 + x * P2) + x * x * x;
619 SPLINE_POSITION[i] = coef * ((1.0f - x) * START_TENSION + x) + x * x * x;
625 coef = 3.0f * y * (1.0f - y);
626 dy = coef * ((1.0f - y) * START_TENSION + y) + y * y * y;
631 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsics_x86.cpp 81 const short *coef, uint32_t count) {
89 x = _mm_loadl_epi64((const __m128i *)(coef+0));
92 x = _mm_loadl_epi64((const __m128i *)(coef+4));
95 x = _mm_loadl_epi64((const __m128i *)(coef+8));
143 const short *coef, uint32_t count) {
157 c0 = _mm_loadl_epi64((const __m128i *)(coef+0));
158 c1 = _mm_loadl_epi64((const __m128i *)(coef+4));
161 c2 = _mm_loadl_epi64((const __m128i *)(coef+8));
162 c3 = _mm_loadl_epi64((const __m128i *)(coef+12));
198 const short *coef, uint32_t count)
    [all...]
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_frame_scale_ssse3.c 227 const int16_t *const coef,
240 shuffle_filter_ssse3(coef, f);
343 const int16_t *const coef,
356 shuffle_filter_ssse3(coef, f);
450 const InterpKernel *const coef,
481 shuffle_filter_ssse3(coef[(phase_scaler + 0 * step_q4) & SUBPEL_MASK], f0);
482 shuffle_filter_funcs[offset_idx1](coef[offset1_q4 & SUBPEL_MASK], f1);
483 shuffle_filter_funcs[offset_idx2](coef[offset2_q4 & SUBPEL_MASK], f2);
486 // Coef 128 would be treated as -128 in PMADDUBSW. Sub 64 here.
487 // Coef 128 is in either fx[1] or fx[2] depending on the phase idx
    [all...]
  /external/libxaac/decoder/
ixheaacd_lpfuncs.c 126 VOID ixheaacd_process_win_seq(WORD32 *coef, WORD32 *prev, WORD16 *out,
139 ixheaacd_mult32x16in32(coef[SIZE08 + i], window_long[2 * i]),
146 ixheaacd_mult32x16in32(-(coef[SIZE15 - 1 - i]),
153 coef_1 = &(coef[SIZE15]);
166 accu = (ixheaacd_shl32_dir_sat_limit(-(coef[SIZE15 - 1 - i]),
175 coef_1 = &(coef[SIZE15]);
298 VOID ixheaacd_nolap1_32(WORD32 *coef,
307 ixheaacd_negate32_sat(coef[SIZE07 - 1 - i]), 16 - q_shift);
311 VOID ixheaacd_neg_shift_spec_dec(WORD32 *coef, WORD16 *out, WORD16 q_shift,
317 ixheaacd_negate32_sat(coef[SIZE07 - 1 - i]), q_shift))
    [all...]
ixheaacd_channel.c 966 WORD32 coef, coef_compress; local
    [all...]
  /external/aac/libAACenc/src/
bitenc.cpp 505 if (tnsInfo->coef[i][j][k] > 3 ||
506 tnsInfo->coef[i][j][k] < -4) {
514 if (tnsInfo->coef[i][j][k] > 1 ||
515 tnsInfo->coef[i][j][k] < -2) {
527 tnsInfo->coef[i][j][k] & rmask[coefBits],
550 if (tnsInfo->coef[i][j][k] > 3 ||
551 tnsInfo->coef[i][j][k] < -4) {
559 if (tnsInfo->coef[i][j][k] > 1 ||
560 tnsInfo->coef[i][j][k] < -2) {
    [all...]
  /external/libjpeg-turbo/
jcapistd.c 154 if (! (*cinfo->coef->compress_data) (cinfo, data)) {
jcmainct.c 100 if (! (*cinfo->coef->compress_data) (cinfo, main_ptr->buffer)) {
jdapistd.c 56 /* If file has multiple scans, absorb them all into the coef buffer */
381 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
500 for (y = 0; y < coef->MCU_rows_per_iMCU_row; y++) {
572 if (! (*cinfo->coef->decompress_data) (cinfo, data))
jidctflt.c 64 #define DEQUANTIZE(coef,quantval) (((FAST_FLOAT) (coef)) * (quantval))
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_fs.c 124 machine->InterpCoefs = quads[0]->coef;
  /external/eigen/bench/btl/libs/BLAS/
blas_interface_impl.hh 57 static inline void axpy(SCALAR coef, const gene_vector & X, gene_vector & Y, int N){
58 BLAS_FUNC(axpy)(&N,&coef,X,&intone,Y,&intone);
  /external/eigen/bench/btl/libs/STL/
STL_interface.hh 182 static inline void axpy(real coef, const gene_vector & X, gene_vector & Y, int N){
184 Y[i]+=coef*X[i];
  /external/eigen/bench/btl/libs/eigen2/
eigen2_interface.hh 120 static inline void axpy(real coef, const gene_vector & X, gene_vector & Y, int N){
121 Y += coef * X;
  /external/libopus/celt/
celt.h 213 int N, int CC, int upsample, const opus_val16 *coef, celt_sig *mem, int clip);
232 void deemphasis(celt_sig *in[], opus_val16 *pcm, int N, int C, int downsample, const opus_val16 *coef, celt_sig *mem);
  /external/syslinux/com32/lib/jpeg/
jidctflt.c 81 #define DEQUANTIZE(coef,quantval) (((FAST_FLOAT) (coef)) * (quantval))
  /external/deqp/modules/gles2/functional/
es2fFlushFinishTests.cpp 400 const float coef = ndx == 0 ? normWaitCoef : normReadCoef;
404 const bool isOk = behavior == EXPECT_COEF_GREATER_THAN ? coef > threshold :
405 behavior == EXPECT_COEF_LESS_THAN ? coef < threshold : false;
  /external/libvpx/libvpx/vp8/encoder/
encodemb.c 367 int coef = bd->dqcoeff[vp8_default_zig_zag1d[i]]; local
368 sum += (coef >= 0) ? coef : -coef;
  /external/libvpx/libvpx/vp9/common/
vp9_entropy.c     [all...]

Completed in 1000 milliseconds

1 2 34 5 6 7