HomeSort by relevance Sort by last modified time
    Searched full:coef (Results 51 - 75 of 234) sorted by null

1 23 4 5 6 7 8 910

  /external/aac/libAACdec/src/
pulsedata.cpp 149 FIXP_DBL *coef) /*!< pointer to spectrum */
158 if (coef[k] > (FIXP_DBL)0)
159 coef[k] += (FIXP_DBL)(int)PulseData->PulseAmp[i];
161 coef[k] -= (FIXP_DBL)(int)PulseData->PulseAmp[i];
aacdec_tns.cpp 205 UCHAR coef, s_mask; local
222 coef = (UCHAR)FDKreadBits(bs, filter->Resolution - coef_compress);
223 filter->Coeff[i] = (coef & s_mask) ? (coef | n_mask) : coef;
  /external/google-benchmark/src/
complexity.cc 97 result.coef = sigma_time_gn / sigma_gn_squared;
102 double fit = result.coef * fitting_curve(n[i]);
189 big_o.real_accumulated_time = result_real.coef;
190 big_o.cpu_accumulated_time = result_cpu.coef;
  /external/libcxx/utils/google-benchmark/src/
complexity.cc 97 result.coef = sigma_time_gn / sigma_gn_squared;
102 double fit = result.coef * fitting_curve(n[i]);
189 big_o.real_accumulated_time = result_real.coef;
190 big_o.cpu_accumulated_time = result_cpu.coef;
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
bw_expand.h 32 int16_t *coef, /* (i) the bandwidth expansion factor Q15 */
interpolate.h 32 int16_t coef, /* (i) weight coefficient in Q14 */
lsf_interpolate_to_poly_dec.h 32 int16_t coef, /* (i) weighting coefficient to use between
lsf_interpolate_to_poly_enc.h 33 int16_t coef, /* (i) weighting coefficient to use between
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
lp_dec2.c 32 /* fixed-point: sum of coef = 32767 to avoid overflow on DC */
  /external/eigen/bench/btl/libs/blitz/
blitz_interface.hh 123 static inline void axpy(const real coef, const gene_vector & X, gene_vector & Y, int N)
126 Y = Y(i) + coef * X(i);
127 //Y += coef * X;
  /external/puffin/src/
puffdiff.cc 37 size_t coef) {
41 tmp->set_offset(ext.offset * coef);
42 tmp->set_length(ext.length * coef);
  /frameworks/av/media/libeffects/testlibs/
AudioPeakingFilter.h 127 // Fractional index into the gain dimension of the coef table in
130 // Fractional index into the bandwidth dimension of the coef table in
133 // Fractional index into the frequency dimension of the coef table in
AudioCommon.h 31 // Accumulator type for coef x sample.
  /external/speex/libspeex/
scal.c 230 //float coef = .5*0.78130;
231 float coef = M_PI*0.075063 * 0.93763 * amount * .8 * 0.707; local
241 gain = coef*sqrt(.1+st->curve[i]);
245 frame[0] = coef*uni_rand(&st->seed)*sqrt(.1+st->curve[0]);
246 frame[2*st->frame_size-1] = coef*uni_rand(&st->seed)*sqrt(.1+st->curve[st->frame_size-1]);
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
CropView.java 289 float[] coef = mTempCoef; local
290 coef[0] = 1;
291 coef[1] = 1;
292 mRotateMatrix.mapPoints(coef);
307 if (coef[dim] > 0) adjustment[dim] = (float) Math.ceil(adjustment[dim]);
  /packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/
CropView.java 300 float[] coef = mTempCoef; local
301 coef[0] = 1;
302 coef[1] = 1;
303 mRotateMatrix.mapPoints(coef);
318 if (coef[dim] > 0) adjustment[dim] = (float) Math.ceil(adjustment[dim]);
  /external/scapy/scapy/modules/
p0f.py 426 coef = int(opt[2:])
427 if mss_hint is not None and mss_hint % coef == 0:
431 'MSS', coef*random.randint(1, maxmss//coef)))
443 coef = int(opt[2:])
444 if wscale_hint is not None and wscale_hint % coef == 0:
448 'WScale', coef*RandNum(min=1, max=(2**8-1)//coef)))
503 coef = int(pers[0][1:])
504 pkt.payload.window = coef * RandNum(min=1, max=(2**16-1)//coef
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherScroller.java 89 float x, tx, coef; external variable declarations
92 coef = 3.0f * x * (1.0f - x);
93 tx = coef * ((1.0f - x) * P1 + x * P2) + x * x * x;
98 SPLINE_POSITION[i] = coef * ((1.0f - x) * START_TENSION + x) + x * x * x;
104 coef = 3.0f * y * (1.0f - y);
105 dy = coef * ((1.0f - y) * START_TENSION + y) + y * y * y;
110 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
  /external/aac/libAACenc/src/
aacenc_tns.cpp 795 tnsInfo->coef[subBlockNumber][HIFILT][i] =
796 tnsInfo->coef[subBlockNumber][LOFILT][i] = 0;
825 FDKaacEnc_Parcor2Index(parcor_tmp, tnsInfo->coef[subBlockNumber][HIFILT],
831 if (tnsInfo->coef[subBlockNumber][HIFILT][i] != 0) {
840 sumSqrCoef += tnsInfo->coef[subBlockNumber][HIFILT][i] *
841 tnsInfo->coef[subBlockNumber][HIFILT][i];
878 tnsInfo->coef[subBlockNumber][LOFILT],
884 if (tnsInfo->coef[subBlockNumber][LOFILT][i] != 0) {
892 sumSqrCoef += tnsInfo->coef[subBlockNumber][LOFILT][i] *
893 tnsInfo->coef[subBlockNumber][LOFILT][i]
    [all...]
  /external/libopus/celt/
quant_bands.c 165 opus_val16 coef; local
172 coef = 0;
176 coef = pred_coef[LM];
194 f = SHL32(EXTEND32(x),7) - PSHR32(MULT16_16(coef,oldE), 8) - prev[c];
200 f = x-coef*oldE-prev[c];
250 tmp = PSHR32(MULT16_16(coef,oldE),8) + prev[c] + SHL32(q,7);
433 opus_val16 coef; local
440 coef = 0;
444 coef = pred_coef[LM];
483 tmp = PSHR32(MULT16_16(coef,oldEBands[i+c*m->nbEBands]),8) + prev[c] + SHL32(q,7)
    [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...]
  /bionic/libc/kernel/uapi/linux/
joystick.h 46 __s32 coef[8]; member in struct:js_corr
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
DGMRES.h 314 Scalar coef; local
317 coef = tv1.dot(m_V.col(i));
318 tv1 = tv1 - coef * m_V.col(i);
319 m_H(i,it) = coef;
320 m_Hes(i,it) = coef;
323 coef = tv1.norm();
324 m_V.col(it+1) = tv1/coef;
325 m_H(it+1, it) = coef;
326 // m_Hes(it+1,it) = coef;
  /external/libvpx/libvpx/vp9/common/
vp9_entropymode.h 66 vp9_coeff_count_model coef[TX_SIZES][PLANE_TYPES]; member in struct:FRAME_COUNTS
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad.h 106 const struct tgsi_interp_coef *coef; member in struct:quad_header

Completed in 1301 milliseconds

1 23 4 5 6 7 8 910