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

1 2 3 45 6 7 8 91011>>

  /external/opencv3/modules/videostab/src/
deblurring.cpp 104 int x1 = cvRound(M(0,0)*x + M(0,1)*y + M(0,2)); local
107 if (x1 >= 0 && x1 < neighbor.cols && y1 >= 0 && y1 < neighbor.rows)
110 const Point3_<uchar> &p1 = neighbor.at<Point3_<uchar> >(y1,x1);
  /external/pdfium/public/
fpdf_doc.h 299 FS_FLOAT x1; member in struct:_FS_QUADPOINTSF
  /external/skia/experimental/
SkSetPoly3To3.cpp 20 SkScalar x1 = pts1[i].fX - ave1.fX; local
22 op[0] += SkScalarMul(x0, x1);
24 op[2] += SkScalarMul(y0, x1);
  /external/skia/samplecode/
SampleDash.cpp 65 SkScalar x1 = x0 + SkIntToScalar(1000); local
75 canvas->drawLine(x0, y0, x1, y0, paint);
82 canvas->drawLine(x0, y0, x1, y0, paint);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
hp_wsp.c 87 Word16 x0, x1, x2, x3; local
98 x1 = mem[7];
104 x2 = x1;
105 x1 = x0;
119 L_tmp += (x1 * b[1])<<1;
142 mem[7] = x1;
  /frameworks/av/media/libstagefright/foundation/
base64.cpp 115 uint8_t x1 = data[i]; local
119 out->append(encode6Bit(x1 >> 2));
120 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f));
129 uint8_t x1 = data[i]; local
131 out->append(encode6Bit(x1 >> 2));
132 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f));
139 uint8_t x1 = data[i]; local
140 out->append(encode6Bit(x1 >> 2));
141 out->append(encode6Bit((x1 << 4) & 0x3f));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
HeadsUpAppearInterpolator.java 33 float x1 = 250f; local
39 float xTot = (x1 + x2 + x3);
40 path.cubicTo(x1 * 0.9f / xTot, 0f,
41 x1 * 0.8f / xTot, y1 / y3,
42 x1 / xTot , y1 / y3);
43 path.cubicTo((x1 + x2 * 0.4f) / xTot, y1 / y3,
44 (x1 + x2 * 0.2f) / xTot, y2 / y3,
45 (x1 + x2) / xTot, y2 / y3);
46 path.cubicTo((x1 + x2 + x3 * 0.4f) / xTot, y2 / y3,
47 (x1 + x2 + x3 * 0.2f) / xTot, 1f
    [all...]
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-auth/0.13.2/
grpc-auth-0.13.2.jar 
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
smisc.c 181 ULong *x, *x0, x1, x2; local
189 x1 = x2 = x[n];
190 x1 >>= k;
191 x1 <<= k;
192 if (x1 != x2)
  /device/google/contexthub/firmware/inc/algos/
fusion.h 41 struct Vec3 x1; member in struct:Fusion
  /device/google/dragon/audio/hal/dsp/
biquad.h 15 * are stored in x1 and x2, and the previous two outputs are stored in y1 and
24 float x1, x2; member in struct:biquad
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
RiddersSolver.java 175 // [x1, x2] is the bracketing interval in each iteration
176 // x3 is the midpoint of [x1, x2]
178 double x1 = min; local
179 double y1 = f.value(x1);
196 final double x3 = 0.5 * (x1 + x2);
204 (x3 - x1) / FastMath.sqrt(delta);
220 // Ridders' method guarantees x1 < x < x2
221 if (correction > 0.0) { // x1 < x < x3
226 x1 = x;
233 x1 = x
    [all...]
SecantSolver.java 171 double x1 = max; local
173 double y1 = f.value(x1);
183 double oldDelta = x2 - x1;
187 x0 = x1;
188 x1 = x2;
195 setResult(x1, i);
199 FastMath.max(relativeAccuracy * FastMath.abs(x1), absoluteAccuracy)) {
200 setResult(x1, i);
208 delta = (x0 - x1) / (1 - y0 / y1);
215 x0 = x1;
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.deprecated/
p1.cpp 23 X<char> x1; variable
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p4-1y.cpp 23 auto &&x1 = M(X{}); local
  /external/clang/test/CodeGen/
stdcall-fastcall.c 85 int x1; member in struct:S2
  /external/clang/test/Lexer/
ms-extensions.c 5 __int8 x1 = 3i8; variable
  /external/clang/test/Parser/
expressions.c 65 int x1 = sizeof int; // expected-error {{expected parentheses around type name in sizeof expression}} local
  /external/clang/test/Sema/
tentative-decls.c 4 struct a x1; // expected-note 2{{forward declaration of 'struct a'}} variable in typeref:struct:a
  /external/clang/test/SemaCXX/
copy-initialization.cpp 15 X x1 = y; // expected-error{{no matching constructor for initialization of 'X'}} local
  /external/clang/test/SemaTemplate/
instantiate-template-template-parm.cpp 35 struct X1 { };
39 X1<TT> x1; // expected-error{{has different template parameters}} member in struct:X2
70 template<class T> struct X1
84 template<class T> template<class U> struct X1<T>::Inner
95 X1<double> simplex_;
ms-sizeof-missing-typename.cpp 34 x1 = sizeof(typename T::/*template*/ InnerTemplate<sizeof(/*typename*/ T::InnerType)>), enumerator in enum:nested_sizeof::Foo::__anon9138
  /external/compiler-rt/lib/asan/tests/
asan_mem_test.cc 78 static bool AllocateTwoAdjacentArrays(char **x1, char **x2, size_t size) {
89 *x1 = reinterpret_cast<char*>(v[j-1]);
98 if (res && p == *x1) continue;
107 char *x1, *x2; local
108 if (!Ident(AllocateTwoAdjacentArrays)(&x1, &x2, size))
110 // fprintf(stderr, " large oob memset: %p %p %zd\n", x1, x2, size);
111 // Do a memset on x1 with huge out-of-bound access that will end up in x2.
112 EXPECT_DEATH(Ident(memset)(x1, 0, size * 2),
114 delete [] x1;
  /external/freetype/src/autofit/
afwarp.h 36 FT_Pos x1, x2; member in struct:AF_WarperRec_
  /external/libopus/celt/
celt.c 92 opus_val32 x0, x1, x2, x3, x4; local
97 x1 = x[-T+1];
103 + MULT16_32_Q15(g11,ADD32(x1,x3))
107 x2=x1;
108 x1=x0;
121 opus_val32 x0, x1, x2, x3, x4; local
140 x1 = x[-T1+1];
154 + MULT16_32_Q15(MULT16_16_Q15(f,g11),ADD32(x1,x3))
158 x2=x1;
159 x1=x0
    [all...]

Completed in 1160 milliseconds

1 2 3 45 6 7 8 91011>>