HomeSort by relevance Sort by last modified time
    Searched defs:x2 (Results 51 - 75 of 2524) sorted by null

1 23 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-powerpc/
tocopt5.s 12 x2: label
31 addis 4,2,x2@got@ha
32 addi 5,4,x2@got@l
  /libcore/luni/src/test/java/libcore/java/math/
OldBigDecimalScaleOperationsTest.java 84 BigDecimal x2 = x1.setScale(75); local
86 assertEquals(0, x1.compareTo(x2));
87 assertEquals(0, x2.compareTo(x1));
91 assertEquals(0, x1.compareTo(x2));
92 assertEquals(0, x2.compareTo(x1));
94 x2.precision();
96 assertEquals(0, x1.compareTo(x2));
97 assertEquals(0, x2.compareTo(x1));
  /external/v8/test/mjsunit/
top-level-assignments.js 62 var x2 = new Object(); class
65 x2.a = 7;
66 x2.b = function() { return 42; };
69 x2.c = 88;
70 x2.d = "A Man Called Horse";
77 assertEquals(7, x2.a);
78 assertEquals(42, x2.b());
79 assertEquals(88, x2.c);
80 assertEquals("A Man Called Horse", x2.d);
  /device/google/dragon/audio/hal/dsp/
crossover.h 23 float x1, x2; member in struct:lr4
  /external/ceres-solver/examples/
powell.cc 35 // f1 = x1 + 10*x2;
37 // f3 = (x2 - 2*x3)^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 const T* const x2,
62 // f1 = x1 + 10 * x2;
63 residual[0] = x1[0] + T(10.0) * x2[0];
79 template <typename T> bool operator()(const T* const x2,
82 // f3 = (x2 - 2 x3)^2
83 residual[0] = (x2[0] - T(2.0) * x4[0]) * (x2[0] - T(2.0) * x4[0])
106 double x2 = -1.0; local
    [all...]
  /external/ceres-solver/internal/ceres/
numeric_diff_test_utils.cc 46 const double* x2,
50 residuals[0] += x1[i] * x2[i];
51 residuals[2] += x2[i] * x2[i];
61 double x2[] = { 9.0, 9.0, 5.0, 5.0, 1.0 }; local
62 double *parameters[] = { &x1[0], &x2[0] };
81 ExpectClose(x2[i], dydx1[5 * 0 + i], tolerance); // y1
83 ExpectClose(2 * x2[i] * residuals[0], dydx1[5 * 1 + i], tolerance); // y2
86 ExpectClose(2 * x2[i], dydx2[5 * 2 + i], tolerance);
91 const double* x2,
107 double x2[5]; member in struct:ceres::internal::__anon5945
131 double *x2 = &(kTests[k].x2[0]); local
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.init/
p6.cpp 14 const HasUserDefault x2; local
  /external/clang/test/CXX/dcl.decl/dcl.meaning/
p1.cpp 5 template<typename T> struct x2;
13 struct PR8019::x2 { }; // expected-error{{non-friend class member 'x2' cannot have a qualified name}} struct in class:PR8019::y::PR8019
  /external/clang/test/CodeGenCXX/
global-llvm-constant.cpp 18 // CHECK: @x2 = constant
19 extern const X x2;
20 const X x2 = { &add }; variable
26 struct X2 {
31 extern const X2 x2b;
32 const X2 x2b = { { { 1 }, { 2 }, { 3 } } };
  /external/clang/test/SemaCXX/
attr-selectany.cpp 8 const __declspec(selectany) int x2 = 2; // expected-error{{'selectany' can only be applied to data items with external linkage}} variable
cxx0x-class.cpp 25 static constexpr float x2 = 5.0f; member in struct:rdar8367341::A
self-comparison.cpp 13 X x2; member in struct:A
17 bool g() { return x2 == x2; } // no-warning
type-definition-in-specifier.cpp 33 e19018_1 x2; // expected-error{{unknown type name 'e19018_1'}} variable
58 enum en_3 x2; // expected-error{{ISO C++ forbids forward references to 'enum' types}} \ member in struct:s19018b
warn-dangling-field.cpp 27 X &x1, *x2; member in struct:S3
28 S3(Y y) : x1(y), x2(y) {} // no-warning: conversion operator
  /external/eigen/test/
smallvectors.cpp 20 x2 = internal::random<Scalar>(), local
23 V2 v2(x1, x2);
24 V3 v3(x1, x2, x3);
25 V4 v4(x1, x2, x3, x4);
29 VERIFY_IS_APPROX(x2, v2.y());
30 VERIFY_IS_APPROX(x2, v3.y());
31 VERIFY_IS_APPROX(x2, v4.y());
  /external/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.star/
op_star.pass.cpp 39 typename std::iterator_traits<It>::value_type x2 = *r; local
40 assert(x2 == x);
  /external/libvncserver/rfb/
rfbregion.h 14 int x2; member in struct:_rect
23 extern sraRegion *sraRgnCreateRect(int x1, int y1, int x2, int y2);
62 extern rfbBool sraClipRect2(int *x, int *y, int *x2, int *y2,
  /external/mesa3d/src/gallium/state_trackers/vega/
bezier.h 35 float x2, y2; member in struct:bezier
52 float x2, float y2,
  /external/webrtc/webrtc/common_audio/signal_processing/
spl_sqrt.c 28 int32_t A, B, x2; local
45 x2 = ((int32_t)x_half) * ((int32_t)x_half) * 2; // A = (x/2)^2
46 A = -x2; // A = -(x/2)^2
60 t16 = (int16_t)(x2 >> 16);
  /frameworks/av/media/libeffects/loudness/common/core/
math.h 58 const T x2 = x * x; local
59 const T x3 = x2 * x;
60 const T x4 = x2 * x2;
61 const T x5 = x3 * x2;
62 return 1.0f + x + 0.5f * x2 +
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
post_pro.cpp 291 Word16 i, x2;
296 x2 = st->x1;
307 L_tmp = L_mac (L_tmp, x2, b[2]);
351 Word16 i, x2; local
365 x2 = st->x1;
378 L_tmp += ((Word32) x2) * c_b2;
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
highpass_400hz_at_12k8.cpp 149 int16 i, x2; local
171 x2 = x1;
174 L_tmp2 = fxp_mac_16by16(x2, 915, L_tmp2);
highpass_50hz_at_12k8.cpp 151 int16 i, x2; local
176 x2 = x1;
179 L_tmp2 = fxp_mac_16by16(x2, 8106, L_tmp2);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
hp400.c 63 Word16 x2; local
76 x2 = x1;
85 L_tmp += (y1_hi * a[1] + y2_hi * a[2] + (x0 + x2)* b[0] + x1 * b[1]) << 1;
hp50.c 48 static Word16 a[3] = {8192, 16211, -8021}; /* Q12 (x2) */
64 Word16 x2; local
78 x2 = x1;
87 L_tmp += (y1_hi * a[1] + y2_hi * a[2] + (x0 + x2) * b[0] + x1 * b[1]) << 1;

Completed in 604 milliseconds

1 23 4 5 6 7 8 91011>>