HomeSort by relevance Sort by last modified time
    Searched refs:x1 (Results 126 - 150 of 2735) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/
algorithm 29 # define _STLP_OUTERMOST_HEADER_ID 0x1
34 #if (_STLP_OUTERMOST_HEADER_ID == 0x1)
45 #if (_STLP_OUTERMOST_HEADER_ID != 0x1) || defined (_STLP_IMPORT_VENDOR_STD)
53 #if (_STLP_OUTERMOST_HEADER_ID == 0x1 )
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
connector.h 33 #define CN_IDX_PROC 0x1
34 #define CN_VAL_PROC 0x1
36 #define CN_VAL_CIFS 0x1
38 #define CN_W1_VAL 0x1
40 #define CN_VAL_V86D_UVESAFB 0x1
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
connector.h 33 #define CN_IDX_PROC 0x1
34 #define CN_VAL_PROC 0x1
36 #define CN_VAL_CIFS 0x1
38 #define CN_W1_VAL 0x1
40 #define CN_VAL_V86D_UVESAFB 0x1
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
connector.h 33 #define CN_IDX_PROC 0x1
34 #define CN_VAL_PROC 0x1
36 #define CN_VAL_CIFS 0x1
38 #define CN_W1_VAL 0x1
40 #define CN_VAL_V86D_UVESAFB 0x1
  /bionic/libm/upstream-freebsd/lib/msun/bsdsrc/
b_exp.c 77 static const double p1 = 0x1.555555555553ep-3;
78 static const double p2 = -0x1.6c16c16bebd93p-9;
79 static const double p3 = 0x1.1566aaf25de2cp-14;
80 static const double p4 = -0x1.bbd41c5d26bf1p-20;
81 static const double p5 = 0x1.6376972bea4d0p-25;
82 static const double ln2hi = 0x1.62e42fee00000p-1;
83 static const double ln2lo = 0x1.a39ef35793c76p-33;
84 static const double lnhuge = 0x1.6602b15b7ecf2p9;
85 static const double lntiny = -0x1.77af8ebeae354p9;
86 static const double invln2 = 0x1.71547652b82fep0
    [all...]
  /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...]
  /bionic/libc/kernel/common/linux/mfd/
timpani-audio.h 31 #define TIMPANI_MREF_MREF_BG_EN_DISABLE 0x1
36 #define TIMPANI_MREF_MREF_BG_REF_CUR_EN_DISABLE 0x1
41 #define TIMPANI_MREF_MREF_200K_MODE_EN_DISABLE 0x1
46 #define TIMPANI_MREF_MREF_PRE_CHARGE_EN_ENABLE 0x1
51 #define TIMPANI_MREF_MREF_100UA_CUR_CONN_ATEST 0x1
56 #define TIMPANI_MREF_MREF_PTAT_CURRENT_V_5UA_PTAT_BIAS_CURRENT 0x1
61 #define TIMPANI_MREF_MREF_400K_MODE_EN_DISABLE 0x1
64 #define TIMPANI_MREF_RESERVED_M 0x1
75 #define TIMPANI_CDAC_IDAC_REF_CUR_CDAC_REF_BUFF_CUR_V_6UA 0x1
87 #define TIMPANI_CDAC_IDAC_REF_CUR_CDAC_BIAS_CUR_V_9_0UA 0x1
    [all...]
  /external/kernel-headers/original/linux/mfd/
timpani-audio.h 16 #define TIMPANI_MREF_MREF_BG_EN_DISABLE 0x1
21 #define TIMPANI_MREF_MREF_BG_REF_CUR_EN_DISABLE 0x1
26 #define TIMPANI_MREF_MREF_200K_MODE_EN_DISABLE 0x1
31 #define TIMPANI_MREF_MREF_PRE_CHARGE_EN_ENABLE 0x1
36 #define TIMPANI_MREF_MREF_100UA_CUR_CONN_ATEST 0x1
41 #define TIMPANI_MREF_MREF_PTAT_CURRENT_V_5UA_PTAT_BIAS_CURRENT 0x1
46 #define TIMPANI_MREF_MREF_400K_MODE_EN_DISABLE 0x1
49 #define TIMPANI_MREF_RESERVED_M 0x1
63 #define TIMPANI_CDAC_IDAC_REF_CUR_CDAC_REF_BUFF_CUR_V_6UA 0x1
74 #define TIMPANI_CDAC_IDAC_REF_CUR_CDAC_BIAS_CUR_V_9_0UA 0x1
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGPathSegCurvetoCubic.h 31 SVGPathSegCurvetoCubic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
35 , m_x1(x1)
56 float x1() const { return m_x1; } function in class:WebCore::SVGPathSegCurvetoCubic
57 void setX1(float x1)
59 m_x1 = x1;
95 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
97 return adoptRef(new SVGPathSegCurvetoCubicAbs(element, role, x, y, x1, y1, x2, y2));
101 SVGPathSegCurvetoCubicAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
102 : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2)
112 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2
    [all...]
  /external/ceres-solver/internal/ceres/
problem.cc 67 double* x0, double* x1) {
70 x0, x1);
76 double* x0, double* x1, double* x2) {
79 x0, x1, x2);
85 double* x0, double* x1, double* x2, double* x3) {
88 x0, x1, x2, x3);
94 double* x0, double* x1, double* x2, double* x3, double* x4) {
97 x0, x1, x2, x3, x4);
103 double* x0, double* x1, double* x2, double* x3, double* x4, double* x5) {
106 x0, x1, x2, x3, x4, x5)
    [all...]
  /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/skia/legacy/src/utils/
SkCubicInterval.cpp 49 SkScalar SkEvalCubicInterval(SkScalar x1, SkScalar y1,
52 x1 = SkScalarPin(x1, 0, SK_Scalar1);
57 x1 *= 3;
61 SkScalar t = find_cubic_t(x1, x2 - 2*x1, x1 - x2 + SK_Scalar1, unitX);
  /external/skia/src/utils/
SkCubicInterval.cpp 49 SkScalar SkEvalCubicInterval(SkScalar x1, SkScalar y1,
52 x1 = SkScalarPin(x1, 0, SK_Scalar1);
57 x1 *= 3;
61 SkScalar t = find_cubic_t(x1, x2 - 2*x1, x1 - x2 + SK_Scalar1, unitX);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
idct_vca.cpp 99 int32 x0, x1, x2, x4, x5; local
124 x1 = (181 * (x4 - x5) + 128) >> 8;
133 res = (x0 + x1) >> 14;
144 res2 = (x0 - x1) >> 14;
160 int32 x0, x1, x3, x5, x7;//, x8; local
162 x1 = blk[8];
166 x7 = W7 * x1;
167 x1 = W1 * x1;
170 x5 = (181 * (x1 - x7) + 128) >> 8
187 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
259 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
296 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
373 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
450 int32 x0, x1, x2, x4, x5, temp; local
507 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local
580 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local
    [all...]
  /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/compiler-rt/lib/ppc/
floatunditf.c 14 static const double twop52 = 0x1.0p52;
15 static const double twop84 = 0x1.0p84;
16 static const double twop84_plus_twop52 = 0x1.00000001p84;
21 high.x |= a >> 32; /* 0x1.0p84 + high 32 bits of a */
22 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a */
  /external/llvm/test/CodeGen/AArch64/
logical_shifted_reg.s 78 adrp x1, var2_64
79 ldr x1, [x1, #:lo12:var2_64]
80 and x2, x0, x1
83 bic x2, x0, x1
86 orr x2, x0, x1
89 orn x2, x0, x1
92 eor x2, x0, x1
95 eon x2, x1, x0
98 and x2, x0, x1, lsl #6
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jquery/
jquery.flot.dashes.js 69 var x1 = points[i - ps],
74 if (x1 == null || x2 == null) continue;
80 x1 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1;
84 x2 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1;
91 x1 = (axisy.max - y1) / (y2 - y1) * (x2 - x1) + x1;
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_rintl.c 45 0x1.0p63, -0x1.0p63
47 0x1.0p112, -0x1.0p112
  /external/chromium/chrome/browser/ui/views/
theme_helpers.h 21 // created to calculate the two colors. x1 and x2 are the two pixel positions
23 void GetRebarGradientColors(int width, int x1, int x2,
  /external/clang/test/CXX/temp/temp.param/
p15.cpp 5 X<X<int> > *x1; variable
  /external/compiler-rt/SDKs/linux/usr/include/sys/
mman.h 22 #define PROT_READ 0x1
  /external/compiler-rt/test/Unit/
fixsfdi_test.c 73 if (test__fixsfdi(0x1.FFFFFEp+62F, 0x7FFFFF8000000000LL))
75 if (test__fixsfdi(0x1.FFFFFCp+62F, 0x7FFFFF0000000000LL))
78 if (test__fixsfdi(-0x1.FFFFFEp+62F, 0x8000008000000000LL))
80 if (test__fixsfdi(-0x1.FFFFFCp+62F, 0x8000010000000000LL))
  /external/iptables/include/linux/netfilter/
xt_CT.h 4 #define XT_CT_NOTRACK 0x1
  /external/skia/legacy/src/animator/
SkDrawLine.h 21 SkScalar x1; member in class:SkLine

Completed in 524 milliseconds

1 2 3 4 56 7 8 91011>>