HomeSort by relevance Sort by last modified time
    Searched defs:x1 (Results 26 - 50 of 511) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/eigen/test/eigen2/
eigen2_smallvectors.cpp 17 Scalar x1 = ei_random<Scalar>(), local
21 V2 v2(x1, x2);
22 V3 v3(x1, x2, x3);
23 V4 v4(x1, x2, x3, x4);
24 VERIFY_IS_APPROX(x1, v2.x());
25 VERIFY_IS_APPROX(x1, v3.x());
26 VERIFY_IS_APPROX(x1, v4.x());
  /external/valgrind/main/memcheck/tests/
badrw.c 9 char *x1; local
16 x1 = x-1;
25 y1 = *x1;
26 *x1 = y1;
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
post_pro.h 107 Word16 x1; member in struct:__anon19277
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
pre_proc.h 79 Word16 x1; member in struct:__anon19292
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_Clip8_s.s 35 x1 RN 4 label
48 LDMIA pSrc!,{x0, x1}
52 USAT16 x1, #8, x1 ;// clip two samples to [0,255]
56 STRB x1, [pDst,#2]
57 MOV x1, x1, LSR #16
58 STRB x1, [pDst,#3]
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh2.cpp 15 void x1 () function
24 x1 ();
  /ndk/tests/device/test-stlport_static-exception/jni/
eh2.cpp 15 void x1 () function
24 x1 ();
  /libcore/luni/src/test/java/libcore/java/math/
OldBigDecimalScaleOperationsTest.java 83 BigDecimal x1 = new BigDecimal(1.23400); local
84 BigDecimal x2 = x1.setScale(75);
86 assertEquals(0, x1.compareTo(x2));
87 assertEquals(0, x2.compareTo(x1));
89 x1.precision();
91 assertEquals(0, x1.compareTo(x2));
92 assertEquals(0, x2.compareTo(x1));
96 assertEquals(0, x1.compareTo(x2));
97 assertEquals(0, x2.compareTo(x1));
  /external/v8/test/mjsunit/
top-level-assignments.js 61 var x1 = new Object(); class
63 x1.a = 7;
64 x1.b = function() { return 42; };
67 x1.c = 88;
68 x1.d = "A Man Called Horse";
72 assertEquals(7, x1.a);
73 assertEquals(42, x1.b());
74 assertEquals(88, x1.c);
75 assertEquals("A Man Called Horse", x1.d);
  /external/ceres-solver/examples/
powell.cc 35 // f1 = x1 + 10*x2;
38 // f4 = sqrt(10) * (x1 - x4)^2
40 // The starting values are x1 = 3, x2 = -1, x3 = 0, x4 = 1.
41 // The minimum is 0 at (x1, x2, x3, x4) = 0.
60 template <typename T> bool operator()(const T* const x1,
63 // f1 = x1 + 10 * x2;
64 residual[0] = x1[0] + T(10.0) * x2[0];
93 template <typename T> bool operator()(const T* const x1,
96 // f4 = sqrt(10) (x1 - x4)^2
97 residual[0] = T(sqrt(10.0)) * (x1[0] - x4[0]) * (x1[0] - x4[0])
106 double x1 = 3.0; local
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.init/
p6.cpp 13 const NoUserDefault x1; // expected-error{{default initialization of an object of const type 'const NoUserDefault' requires a user-provided default constructor}} local
  /external/clang/test/Sema/
block-misc.c 45 int^^ x1; // expected-error {{block pointer to non-function type is invalid}} expected-error {{block pointer to non-function type is invalid}} variable
typeof-use-deprecated.c 17 bar x1; // expected-warning {{'bar' is deprecated}} variable
19 int main() { typeof(x1) y; } // expected-warning {{'foo' is deprecated}}
  /external/clang/test/SemaTemplate/
instantiate-decl-init.cpp 27 struct X1 {
28 explicit X1(const X0 &x0 = X0());
33 X1 x1; local
  /external/compiler-rt/lib/ppc/
gcc_qdiv.c 17 register double x = dst.s.hi, x1 = dst.s.lo, local
48 tmp = ((tmp + x1) - y1 * q) / y;
  /external/dropbear/libtommath/
bn_mp_karatsuba_mul.c 49 mp_int x0, x1, y0, y1, t1, x0y0, x1y1; local
64 if (mp_init_size (&x1, a->used - B) != MP_OKAY)
67 goto X1;
81 x1.used = a->used - B;
101 tmpx = x1.dp;
113 * upper words x1/y1 must have a known number of digits
122 if (mp_mul (&x1, &y1, &x1y1) != MP_OKAY)
123 goto X1Y1; /* x1y1 = x1*y1 */
125 /* now calc x1+x0 and y1+y0 */
126 if (s_mp_add (&x1, &x0, &t1) != MP_OKAY
    [all...]
bn_mp_karatsuba_sqr.c 27 mp_int x0, x1, t1, t2, x0x0, x1x1; local
41 if (mp_init_size (&x1, a->used - B) != MP_OKAY)
46 goto X1;
66 dst = x1.dp;
73 x1.used = a->used - B;
77 /* now calc the products x0*x0 and x1*x1 */
80 if (mp_sqr (&x1, &x1x1) != MP_OKAY)
81 goto X1X1; /* x1x1 = x1*x1 */
    [all...]
  /external/dropbear/libtommath/etc/
mersenne.c 74 long x1, x2; local
78 x1 = x2;
79 x2 = x1 - ((x1 * x1) - x) / (2 * x1);
80 } while (x1 != x2);
82 if (x1 * x1 > x) {
83 --x1;
    [all...]
  /external/eigen/test/
smallvectors.cpp 19 Scalar x1 = internal::random<Scalar>(), local
23 V2 v2(x1, x2);
24 V3 v3(x1, x2, x3);
25 V4 v4(x1, x2, x3, x4);
26 VERIFY_IS_APPROX(x1, v2.x());
27 VERIFY_IS_APPROX(x1, v3.x());
28 VERIFY_IS_APPROX(x1, v4.x());
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
highpass_400hz_at_12k8.cpp 150 int16 y2_hi, y2_lo, y1_hi, y1_lo, x0, x1; local
159 x1 = mem[5];
171 x2 = x1;
172 x1 = x0;
175 L_tmp2 = fxp_mac_16by16(x1, -1830, L_tmp2);
197 mem[5] = x1;
highpass_50hz_at_12k8.cpp 152 int16 y2_hi, y2_lo, y1_hi, y1_lo, x0, x1; local
162 x1 = mem[5];
176 x2 = x1;
177 x1 = x0;
180 L_tmp2 = fxp_mac_16by16(x1, -16212, L_tmp2);
202 mem[5] = x1;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
hp400.c 64 Word16 y2_hi, y2_lo, y1_hi, y1_lo, x0, x1; local
72 x1 = *mem;
76 x2 = x1;
77 x1 = x0;
85 L_tmp += (y1_hi * a[1] + y2_hi * a[2] + (x0 + x2)* b[0] + x1 * b[1]) << 1;
96 *mem-- = x1;
hp50.c 65 Word16 y2_hi, y2_lo, y1_hi, y1_lo, x0, x1; local
74 x1 = *mem;
78 x2 = x1;
79 x1 = x0;
87 L_tmp += (y1_hi * a[1] + y2_hi * a[2] + (x0 + x2) * b[0] + x1 * b[1]) << 1;
96 *mem-- = x1;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_InterpolateLuma_Copy_unsafe_s.s 40 x1 RN 5 label
63 M_LDR x1, [pSrc], srcStep
66 M_STR x1, [pDst], dstStep
73 LDR x1, [pSrc, #4]
78 ORR x0, x0, x1, LSL #24
82 LDR x1, [pSrc, #4]
88 ORR x0, x0, x1, LSL #24
96 LDR x1, [pSrc, #4]
101 ORR x0, x0, x1, LSL #16
107 LDR x1, [pSrc, #4
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
armVCM4P10_InterpolateLuma_Copy_unsafe_s.s 40 x1 RN 5 label
63 M_LDR x1, [pSrc], srcStep
66 M_STR x1, [pDst], dstStep
73 LDR x1, [pSrc, #4]
78 ORR x0, x0, x1, LSL #24
82 LDR x1, [pSrc, #4]
88 ORR x0, x0, x1, LSL #24
96 LDR x1, [pSrc, #4]
101 ORR x0, x0, x1, LSL #16
107 LDR x1, [pSrc, #4
    [all...]

Completed in 2692 milliseconds

12 3 4 5 6 7 8 91011>>