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

1 23 4 5 6 7

  /external/eigen/bench/btl/libs/blitz/
tiny_blitz_interface.hh 99 static inline void axpy(const real coef, const gene_vector & X, gene_vector & Y, int N){
100 Y += coef * X;
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/eigen/bench/btl/libs/tvmet/
tvmet_interface.hh 97 static inline void axpy(const real coef, const gene_vector & X, gene_vector & Y, int N){
98 Y+=coef*X;
  /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...]
  /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/libopus/silk/arm/
arm_silk_map.c 94 const opus_int32 *data0, opus_int32 *data1, const opus_int16 *coef,
  /frameworks/base/core/java/android/widget/
Scroller.java 121 float x, tx, coef; external variable declarations
124 coef = 3.0f * x * (1.0f - x);
125 tx = coef * ((1.0f - x) * P1 + x * P2) + x * x * x;
130 SPLINE_POSITION[i] = coef * ((1.0f - x) * START_TENSION + x) + x * x * x;
136 coef = 3.0f * y * (1.0f - y);
137 dy = coef * ((1.0f - y) * START_TENSION + y) + y * y * y;
142 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
  /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/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...]
  /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/eigen/bench/btl/libs/blaze/
blaze_interface.hh 107 static inline void axpy(const real coef, const gene_vector & X, gene_vector & Y, int N){
108 Y += coef * X;
  /external/eigen/bench/btl/libs/gmm/
gmm_interface.hh 105 static inline void axpy(const real coef, const gene_vector & X, gene_vector & Y, int N){
106 gmm::add(gmm::scaled(X,coef), Y);
  /external/eigen/bench/btl/libs/mtl4/
mtl4_interface.hh 111 static inline void axpy(const real coef, const gene_vector & X, gene_vector & Y, int N){
112 Y += coef * X;
  /external/eigen/bench/btl/libs/tensors/
tensor_interface.hh 88 static inline void axpy(real coef, const gene_vector & X, gene_vector & Y, int /*N*/){
89 Y += X.constant(coef) * X;
  /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;
  /bionic/libc/kernel/uapi/linux/
joystick.h 46 __s32 coef[8]; member in struct:js_corr
  /external/aac/libAACenc/src/
aacenc_tns.h 206 INT coef[TRANS_FAC][MAX_NUM_OF_FILTERS][TNS_MAX_ORDER]; member in struct:__anon13651
  /external/kernel-headers/original/uapi/linux/
joystick.h 81 __s32 coef[8]; member in struct:js_corr
  /external/libjpeg-turbo/
jdtrans.c 56 /* Absorb whole file into the coef buffer */
86 return cinfo->coef->coef_arrays;
jidctfst.c 132 #define DEQUANTIZE(coef,quantval) (((IFAST_MULT_TYPE) (coef)) * (quantval))
134 #define DEQUANTIZE(coef,quantval) \
135 DESCALE((coef)*(quantval), IFAST_SCALE_BITS-PASS1_BITS)
  /external/libvpx/libvpx/vp9/common/
vp9_entropymode.h 66 vp9_coeff_count_model coef[TX_SIZES][PLANE_TYPES]; member in struct:FRAME_COUNTS
  /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]);
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Scroller.java 79 float x, tx, coef; external variable declarations
82 coef = 3.0f * x * (1.0f - x);
83 tx = coef * ((1.0f - x) * START_TENSION + x * END_TENSION) + x * x * x;
88 final float d = coef + x * x * x;

Completed in 980 milliseconds

1 23 4 5 6 7