HomeSort by relevance Sort by last modified time
    Searched defs:x1 (Results 151 - 175 of 2879) sorted by null

1 2 3 4 5 67 8 91011>>

  /device/google/dragon/audio/hal/dsp/
eq.c 48 float x1 = q->x1; local
60 + b1*x1 + b2*x2
63 x2 = x1;
64 x1 = x;
68 q->x1 = x1;
83 float x1 = q->x1; local
95 + b1*x1 + b2*x
110 float x1 = q->x1; local
    [all...]
  /external/aac/libFDK/src/
mdct.cpp 345 FIXP_DBL x0, x1; local
347 cplxMult(&x1, &x0, *pCurr++, - *pOvl--, pWindow[i]);
349 *pOut1 = IMDCT_SCALE_DBL(-x1);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
MullerSolver.java 201 // x1 is the last approximation and an interpolation point in (x0, x2)
202 // x is the new root approximation and new x1 for next round
209 double x1 = 0.5 * (x0 + x2); local
210 double y1 = f.value(x1);
224 // x0, x1, x2 and x is the zero of the interpolating parabola.
227 final double d01 = (y1 - y0) / (x1 - x0);
228 final double d12 = (y2 - y1) / (x2 - x1);
230 final double c1 = d01 + (x1 - x0) * d012;
232 final double xplus = x1 + (-2.0 * y1) / (c1 + FastMath.sqrt(delta));
233 final double xminus = x1 + (-2.0 * y1) / (c1 - FastMath.sqrt(delta))
350 double x1 = max; local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
AbstractIntegerDistribution.java 75 * to this distribution, this method returns P(x0 ≤ X ≤ x1).
78 * @param x1 the (inclusive) upper bound
80 * will take a value between <code>x0</code> and <code>x1</code>,
84 * @throws IllegalArgumentException if <code>x0 > x1</code>
87 public double cumulativeProbability(double x0, double x1)
89 if (x0 > x1) {
91 LocalizedFormats.LOWER_ENDPOINT_ABOVE_UPPER_ENDPOINT, x0, x1);
95 (int) FastMath.floor(x1)); // don't want to count mass below x0
98 (int) FastMath.floor(x1));
136 * to this distribution, this method returns P(x0 &le; X &le; x1)
173 int x1 = getDomainUpperBound(p); local
    [all...]
  /external/boringssl/src/crypto/poly1305/
poly1305_arm.c 42 uint32_t x1 = r->v[2]; local
54 x1 += x0 >> 26;
56 x2 += x1 >> 26;
57 x1 &= 0x3ffffff;
67 y1 = x1 + (y0 >> 26);
79 y1 ^= x1;
91 y1 ^= x1;
105 uint32_t x1 = x->v[2]; local
110 x1 += x0 >> 26;
112 x2 += x1 >> 26
    [all...]
  /external/ceres-solver/examples/
more_garbow_hillstrom.cc 85 const T x1 = x[0]; member in namespace:ceres::examples
87 residual[0] = T(10.0) * (x2 - x1 * x1);
88 residual[1] = T(1.0) - x1;
100 const T x1 = x[0]; member in namespace:ceres::examples
102 residual[0] = T(-13.0) + x1 + ((T(5.0) - x2) * x2 - T(2.0)) * x2;
103 residual[1] = T(-29.0) + x1 + ((x2 + T(1.0)) * x2 - T(14.0)) * x2;
115 const T x1 = x[0]; member in namespace:ceres::examples
117 residual[0] = T(10000.0) * x1 * x2 - T(1.0);
118 residual[1] = exp(-x1) + exp(-x2) - T(1.0001)
129 const T x1 = x[0]; member in namespace:ceres::examples
144 const T x1 = x[0]; member in namespace:ceres::examples
159 const T x1 = x[0]; member in namespace:ceres::examples
177 const T x1 = x[0]; member in namespace:ceres::examples
195 const T x1 = x[0]; member in namespace:ceres::examples
222 const T x1 = x[0]; member in namespace:ceres::examples
244 const T x1 = x[0]; member in namespace:ceres::examples
    [all...]
  /external/clang/test/ASTMerge/Inputs/
enum1.c 6 } x1; variable in typeref:enum:E1
enum2.c 6 } x1; variable in typeref:enum:E1
struct1.c 18 struct S1 x1; variable in typeref:struct:S1
struct2.c 15 struct S1 x1; variable in typeref:struct:S1
  /external/clang/test/CodeGen/
decl.c 113 typedef long (*x1)(x0 x0a, x5 x6); typedef
115 x1 x4;
regparm-struct.c 10 int x1; member in struct:s1
20 int x1; member in struct:s2
37 int x1; member in struct:s3
55 int x1; member in struct:s4
74 float x1; member in struct:s5
84 float x1; member in struct:s6
95 float x1; member in struct:s7
107 float x1; member in struct:s8
118 float x1; member in struct:s9
130 double x1; member in struct:s10
140 double x1; member in struct:s11
151 double x1; member in struct:s12
    [all...]
  /external/clang/test/CodeGenCXX/
anonymous-union-member-initializer.cpp 36 X x1; local
39 x1.l = 1;
42 X x2(x1);
46 x3 = x1;
  /external/clang/test/Sema/
struct-decl.c 47 unsigned int x1; member in struct:x0
types.c 72 int __attribute__ ((vector_size(8192))) x1; // expected-error {{vector size too large}} variable
  /external/clang/test/SemaCXX/
warn-bad-memaccess.cpp 24 struct X1 { virtual void f(); } x1, x1arr[2]; variable in typeref:struct:X1
27 struct ContainsDynamic { X1 dynamic; } contains_dynamic;
29 struct ContainsArrayDynamic { X1 dynamic[1]; } contains_array_dynamic;
30 struct ContainsPointerDynamic { X1 *dynamic; } contains_pointer_dynamic;
33 memset(&x1, 0, sizeof x1); // \
44 memmove(&x1, 0, sizeof x1); // \
45 // expected-warning{{destination for this 'memmove' call is a pointer to dynamic class 'X1'; vtable pointer will be overwritten}}
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-complete.cpp 57 struct X1 { };
62 void refbind_base(X2<X1<int> > &x2) {
63 X1<int> &x1 = x2; local
72 void enum_constructors(X1<float> &x1) {
73 X3<X1<float> > x3 = x1;
  /external/dng_sdk/source/
dng_color_space.cpp 70 const real64 x1 = 8.2118790552e-4; // pow (slope0, 1.0 / (gamma - 1.0)) * 2.0 local
72 const real64 y1 = 0.019310851; // pow (x1, gamma)
74 const real64 slope1 = 13.064306598; // gamma * pow (x1, gamma - 1.0)
76 if (x <= x1)
81 x1,
126 const real64 x1 = 0.0034800731; // pow (slope0, 1.0 / (gamma - 1.0)) * 2.0 local
128 const real64 y1 = 0.0763027458; // pow (x1, gamma)
130 const real64 slope1 = 9.9661890075; // gamma * pow (x1, gamma - 1.0)
132 if (x <= x1)
137 x1,
    [all...]
dng_lens_correction.cpp 208 real64 x1 = 1.0; local
210 x1);
221 x1 + (y - y1) * (x1 - x0) / (y1 - y0),
227 x0 = x1;
230 x1 = x2;
235 return x1;
    [all...]
  /external/drm_hwcomposer/
separate_rects.h 34 TFloat x1, y1, x2, y2; member in struct:separate_rects::Rect::__anon10870::__anon10872
45 : x1(xx1), y1(yy1), x2(xx2), y2(yy2) {
  /external/freetype/src/cff/
cf2font.c 78 * | (x1,y1)
96 * (x1, y1) = (500, 400)
125 FT_Int x1 = darkenParams[0]; local
167 if ( scaledStem < cf2_intToFixed( x1 ) )
172 FT_Int xdelta = x2 - x1;
175 FT_DivFix( cf2_intToFixed( x1 ), ppem );
  /external/libavc/common/
ih264_ihadamard_scaling.c 96 WORD32 x0, x1, x2, x3, x4, x5, x6, x7; local
112 x1 = x5 + x6;
116 pi4_tmp_ptr[0] = x0 + x1;
118 pi4_tmp_ptr[2] = x0 - x1;
134 x1 = x5 + x6;
138 pi4_tmp_ptr[0] = x0 + x1;
140 pi4_tmp_ptr[8] = x0 - x1;
ih264_iquant_itrans_recon.c 123 WORD16 x0, x1, x2, x3, i; local
143 x1 = q0 - q2;
157 pi2_tmp_ptr[1] = x1 + x2;
158 pi2_tmp_ptr[2] = x1 - x2;
175 x1 = (pi2_tmp_ptr[0] - pi2_tmp_ptr[8]);
187 i_macro = x1 + x2;
194 i_macro = x1 - x2;
414 /* x1 = z2 + z5 */
699 WORD16 x0, x1, x2, x3, i; local
723 x1 = q0 - q2
    [all...]
ih264_resi_trans_quant.c 125 WORD32 x0, x1, x2, x3, x4, x5, x6, x7; local
141 x1 = x5 + x6;
145 pi2_out_tmp[0] = x0 + x1;
147 pi2_out_tmp[2] = x0 - x1;
168 x1 = x5 + x6;
174 i4_value = x0 + x1;
190 i4_value = x0 - x1;
273 WORD32 x0, x1, x2, x3, x4, x5, x6, x7; local
289 x1 = x5 + x6;
293 pi2_out_tmp[0] = x0 + x1;
422 WORD32 x0,x1,x2,x3,x4,x5,x6,x7,i4_value; local
550 WORD32 x0, x1, x2, x3, x4, x5, x6, x7; local
    [all...]
  /external/libopus/celt/
mdct.c 301 kiss_fft_scalar x1, x2; local
302 x1 = *xp1;
304 *yp1++ = MULT16_32_Q15(*wp2, x2) - MULT16_32_Q15(*wp1, x1);
305 *xp1-- = MULT16_32_Q15(*wp1, x2) + MULT16_32_Q15(*wp2, x1);

Completed in 842 milliseconds

1 2 3 4 5 67 8 91011>>