Searched refs:x1 (Results 51 - 75 of 1008) sorted by relevance

1234567891011>>

/external/compiler-rt/test/Unit/
H A Dfixxfti_test.c86 if (test__fixxfti(0x1.FFFFFEp+62, 0x7FFFFF8000000000LL))
88 if (test__fixxfti(0x1.FFFFFCp+62, 0x7FFFFF0000000000LL))
91 if (test__fixxfti(-0x1.FFFFFEp+62, make_ti(0xFFFFFFFFFFFFFFFFLL,
94 if (test__fixxfti(-0x1.FFFFFCp+62, make_ti(0xFFFFFFFFFFFFFFFFLL,
98 if (test__fixxfti(0x1.FFFFFFFFFFFFFp+62, 0x7FFFFFFFFFFFFC00LL))
100 if (test__fixxfti(0x1.FFFFFFFFFFFFEp+62, 0x7FFFFFFFFFFFF800LL))
103 if (test__fixxfti(-0x1.FFFFFFFFFFFFFp+62, make_ti(0xFFFFFFFFFFFFFFFFLL,
106 if (test__fixxfti(-0x1.FFFFFFFFFFFFEp+62, make_ti(0xFFFFFFFFFFFFFFFFLL,
110 if (test__fixxfti(0x1.FFFFFFFFFFFFFFFCp+62L, 0x7FFFFFFFFFFFFFFFLL))
112 if (test__fixxfti(0x1
[all...]
H A Dfixunsdfdi_test.c77 if (test__fixunsdfdi(0x1.FFFFFEp+62, 0x7FFFFF8000000000LL))
79 if (test__fixunsdfdi(0x1.FFFFFCp+62, 0x7FFFFF0000000000LL))
83 if (test__fixunsdfdi(-0x1.FFFFFEp+62, 0))
85 if (test__fixunsdfdi(-0x1.FFFFFCp+62, 0))
89 if (test__fixunsdfdi(0x1.FFFFFFFFFFFFFp+63, 0xFFFFFFFFFFFFF800LL))
91 if (test__fixunsdfdi(0x1.0000000000000p+63, 0x8000000000000000LL))
93 if (test__fixunsdfdi(0x1.FFFFFFFFFFFFFp+62, 0x7FFFFFFFFFFFFC00LL))
95 if (test__fixunsdfdi(0x1.FFFFFFFFFFFFEp+62, 0x7FFFFFFFFFFFF800LL))
99 if (test__fixunsdfdi(-0x1.FFFFFFFFFFFFFp+62, 0))
101 if (test__fixunsdfdi(-0x1
[all...]
H A Dfloatundixf_test.c56 if (test__floatundixf(0x7FFFFF8000000000ULL, 0x1.FFFFFEp+62))
58 if (test__floatundixf(0x7FFFFFFFFFFFF800ULL, 0x1.FFFFFFFFFFFFEp+62))
60 if (test__floatundixf(0x7FFFFF0000000000ULL, 0x1.FFFFFCp+62))
62 if (test__floatundixf(0x7FFFFFFFFFFFF000ULL, 0x1.FFFFFFFFFFFFCp+62))
85 if (test__floatundixf(0x0007FB72E8000000ULL, 0x1.FEDCBAp+50))
88 if (test__floatundixf(0x0007FB72EA000000ULL, 0x1.FEDCBA8p+50))
90 if (test__floatundixf(0x0007FB72EB000000ULL, 0x1.FEDCBACp+50))
92 if (test__floatundixf(0x0007FB72EBFFFFFFULL, 0x1.FEDCBAFFFFFFCp+50))
94 if (test__floatundixf(0x0007FB72EC000000ULL, 0x1.FEDCBBp+50))
96 if (test__floatundixf(0x0007FB72E8000001ULL, 0x1
[all...]
H A Dfixunssfti_test.c89 if (test__fixunssfti(0x1.FFFFFEp+63F, 0xFFFFFF0000000000LL))
91 if (test__fixunssfti(0x1.000000p+63F, 0x8000000000000000LL))
93 if (test__fixunssfti(0x1.FFFFFEp+62F, 0x7FFFFF8000000000LL))
95 if (test__fixunssfti(0x1.FFFFFCp+62F, 0x7FFFFF0000000000LL))
98 if (test__fixunssfti(0x1.FFFFFEp+127F, make_ti(0xFFFFFF0000000000LL, 0)))
100 if (test__fixunssfti(0x1.000000p+127F, make_ti(0x8000000000000000LL, 0)))
102 if (test__fixunssfti(0x1.FFFFFEp+126F, make_ti(0x7FFFFF8000000000LL, 0)))
104 if (test__fixunssfti(0x1.FFFFFCp+126F, make_ti(0x7FFFFF0000000000LL, 0)))
108 if (test__fixunssfti(-0x1.FFFFFEp+62F, 0x0000000000000000LL))
110 if (test__fixunssfti(-0x1
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGPathSegCurvetoQuadratic.h31 SVGPathSegCurvetoQuadratic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
35 , m_x1(x1)
54 float x1() const { return m_x1; } function in class:WebCore::SVGPathSegCurvetoQuadratic
55 void setX1(float x1) argument
57 m_x1 = x1;
77 static PassRefPtr<SVGPathSegCurvetoQuadraticAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
79 return adoptRef(new SVGPathSegCurvetoQuadraticAbs(element, role, x, y, x1, y1));
83 SVGPathSegCurvetoQuadraticAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
84 : SVGPathSegCurvetoQuadratic(element, role, x, y, x1, y1)
94 static PassRefPtr<SVGPathSegCurvetoQuadraticRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, floa argument
100 SVGPathSegCurvetoQuadraticRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
[all...]
H A DSVGPathSegCurvetoCubic.h31 SVGPathSegCurvetoCubic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
35 , m_x1(x1)
56 float x1() const { return m_x1; } function in class:WebCore::SVGPathSegCurvetoCubic
57 void setX1(float x1) argument
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) argument
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) argument
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, floa argument
118 SVGPathSegCurvetoCubicRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
[all...]
/external/skia/src/animator/
H A DSkDrawLine.cpp18 SK_MEMBER(x1, Float),
28 SkLine::SkLine() : x1(0), x2(0), y1(0), y2(0) {
33 maker.fCanvas->drawLine(x1, y1, x2, y2, *maker.fPaint);
/external/libvpx/vpx_scale/
H A Dscale_mode.h23 SCALE_TO_FIT = 0x1,
/external/dropbear/libtommath/etc/
H A Dmersenne.c74 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/clang/test/CXX/expr/expr.post/expr.call/
H A Dp7-0x.cpp14 void f(X1 x1, X2 x2) { argument
15 vararg(x1); // okay
/external/clang/test/CXX/temp/temp.res/temp.local/
H A Dp1.cpp31 X1<42, i, &i> x1; (void)x1; local
/external/clang/test/Lexer/
H A Dhexfloat.cpp6 float g = 0x1.2p2; // expected-warning{{hexadecimal floating constants are a C99 feature}}
7 double h = 0x1.p2; // expected-warning{{hexadecimal floating constants are a C99 feature}}
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonBaseInfo.h57 SoloMask = 0x1,
61 PredicatedMask = 0x1
/external/stlport/stlport/
H A Dalgorithm29 # 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 )
/external/v8/test/mjsunit/regress/
H A Dregress-117794.js45 var x1 = new Object(); class
48 new Function("A Man Called Horse", x1.d);
/external/kernel-headers/original/linux/mfd/
H A Dtimpani-audio.h16 #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/skia/src/utils/
H A DSkCubicInterval.cpp49 SkScalar SkEvalCubicInterval(SkScalar x1, SkScalar y1, argument
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/v8/test/mjsunit/
H A Dtop-level-assignments.js61 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/compiler-rt/lib/ppc/
H A Dfloatunditf.c14 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/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jquery/
H A Djquery.flot.dashes.js69 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...]
/external/chromium/chrome/browser/ui/views/
H A Dtheme_helpers.h21 // 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/
H A Dp15.cpp5 X<X<int> > *x1; variable
/external/clang/test/SemaTemplate/
H A Dextern-templates.cpp56 void g_X1(X1<void*> x1, void *ptr) { argument
57 x1.g(ptr);
62 void g_X1_2(X1<const void *> x1, const void *ptr) { argument
63 x1.g(ptr);
H A Dunused-variables.cpp12 X1 x1; // expected-warning{{unused variable 'x1'}} local
/external/compiler-rt/SDKs/linux/usr/include/sys/
H A Dmman.h22 #define PROT_READ 0x1

Completed in 748 milliseconds

1234567891011>>