HomeSort by relevance Sort by last modified time
    Searched defs:y1 (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /external/clang/test/CXX/temp/temp.param/
p15.cpp 11 Y<(1 >> 2)> *y1; variable
p15-cxx0x.cpp 7 Y<(1 >> 2)> *y1; variable
  /external/skia/src/animator/
SkDrawLine.h 31 SkScalar y1; member in class:SkLine
  /external/clang/test/PCH/
pr4489.c 44 void y1(void) function
  /external/valgrind/main/memcheck/tests/
badrw.c 12 char y1; local
25 y1 = *x1;
26 *x1 = y1;
  /bionic/libm/src/
e_hypot.c 34 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
36 * y1= y with lower 32 bits chopped, y2 = y-y1.
56 double a=x,b=y,t1,t2,y1,y2,w; local
110 y1 = 0;
111 SET_HIGH_WORD(y1,hb);
112 y2 = b - y1;
116 w = sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
e_hypotf.c 26 float a=x,b=y,t1,t2,y1,y2,w; local
73 SET_FLOAT_WORD(y1,hb&0xfffff000);
74 y2 = b - y1;
77 w = __ieee754_sqrtf(t1*y1-(w*(-w)-(t1*y2+t2*b)));
  /external/clang/test/SemaCXX/
converting-constructor.cpp 45 void y1() { function
warn-literal-conversion.cpp 9 int y1 = (1.2222F); // expected-warning {{implicit conversion turns literal floating-point number into integer}} local
  /external/dropbear/libtommath/
bn_mp_karatsuba_mul.c 49 mp_int x0, x1, y0, y1, t1, x0y0, x1y1; local
68 if (mp_init_size (&y1, b->used - B) != MP_OKAY)
73 goto Y1;
82 y1.used = b->used - B;
106 tmpy = y1.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 */
128 if (s_mp_add (&y1, &y0, &x0) != MP_OKAY
    [all...]
  /external/fdlibm/
e_hypot.c 30 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
32 * y1= y with lower 32 bits chopped, y2 = y-y1.
55 double a=x,b=y,t1,t2,y1,y2,w; local
102 y1 = 0;
103 __HI(y1) = hb;
104 y2 = b - y1;
108 w = ieee_sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
  /frameworks/compile/libbcc/runtime/lib/ppc/
gcc_qdiv.c 18 y = src.s.hi, y1 = src.s.lo; local
48 tmp = ((tmp + x1) - y1 * q) / y;
  /external/clang/test/Sema/
bitfield-promote.c 9 long long y1; variable
10 __typeof__(((long long)x1.x + 1)) y1;
  /external/webkit/Source/WebCore/svg/
SVGPathSegCurvetoQuadratic.h 31 SVGPathSegCurvetoQuadratic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1)
36 , m_y1(y1)
61 float y1() const { return m_y1; } function in class:WebCore::SVGPathSegCurvetoQuadratic
62 void setY1(float y1)
64 m_y1 = y1;
77 static PassRefPtr<SVGPathSegCurvetoQuadraticAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1)
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)
84 : SVGPathSegCurvetoQuadratic(element, role, x, y, x1, y1)
94 static PassRefPtr<SVGPathSegCurvetoQuadraticRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1)
    [all...]
LinearGradientAttributes.h 41 SVGLength y1() const { return m_y1; } function in struct:WebCore::LinearGradientAttributes
SVGPathSegCurvetoCubic.h 31 SVGPathSegCurvetoCubic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
36 , m_y1(y1)
63 float y1() const { return m_y1; } function in class:WebCore::SVGPathSegCurvetoCubic
64 void setY1(float y1)
66 m_y1 = y1;
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...]
SVGPathStringSource.cpp 163 float y1; local
169 || !parseNumber(m_current, m_end, y1)
175 point1 = FloatPoint(x1, y1);
184 float y1; local
188 || !parseNumber(m_current, m_end, y1)
192 point1 = FloatPoint(x1, y1);
  /frameworks/base/services/audioflinger/
AudioResamplerCubic.h 43 int32_t a, b, c, y0, y1, y2, y3; member in struct:android::AudioResamplerCubic::__anon15444
51 return (((((p->a * x >> 14) + p->b) * x >> 14) + p->c) * x >> 14) + p->y1;
54 p->y0 = p->y1;
55 p->y1 = p->y2;
58 p->a = (3 * (p->y1 - p->y2) - p->y0 + p->y3) >> 1;
59 p->b = (p->y2 << 1) + p->y0 - (((5 * p->y1 + p->y3)) >> 1);
  /external/clang/test/CXX/over/over.over/
p1.cpp 85 template<float(float)> struct Y1 { };
91 Y1<f0> y1; variable
92 Y1<&f0> y1a;
  /external/qemu/android/skin/
rect.h 60 int x1, y1; member in struct:__anon9280
64 extern void skin_box_init( SkinBox* box, int x1, int y1, int x2, int y2 );
  /external/tremolo/Tremolo/
asm_arm.h 73 int x1, y1, l; local
79 : "=&r" (l), "=&r" (x1), "=&r" (y1), "=r" (a)
84 *y = y1;
92 int x1, y1, l; local
98 : "=&r" (l), "=&r" (x1), "=&r" (y1), "=r" (a)
103 *y = y1 << 1;
111 int x1, y1, l; local
117 : "=&r" (l), "=&r" (x1), "=&r" (y1)
122 *y = y1 << 1;
  /external/webkit/Source/WebCore/css/
CSSTimingFunctionValue.h 69 static PassRefPtr<CSSCubicBezierTimingFunctionValue> create(double x1, double y1, double x2, double y2)
71 return adoptRef(new CSSCubicBezierTimingFunctionValue(x1, y1, x2, y2));
75 double y1() const { return m_y1; } function in class:WebCore::CSSCubicBezierTimingFunctionValue
80 CSSCubicBezierTimingFunctionValue(double x1, double y1, double x2, double y2)
82 , m_y1(y1)
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
conceal.cpp 142 uint8 *y1, *y2, *u1, *u2, *v1, *v2; local
154 y1 = curr->yChan + lumstart;
162 oscl_memcpy(y1, y2, MB_SIZE);
163 y1 += width_Y;
165 oscl_memcpy(y1, y2, MB_SIZE);
166 y1 += width_Y;
168 oscl_memcpy(y1, y2, MB_SIZE);
169 y1 += width_Y;
171 oscl_memcpy(y1, y2, MB_SIZE);
172 y1 += width_Y
    [all...]
get_pred_adv_b_add.cpp 867 uint32 x1, x2, x1m, x2m, y1, y2, y1m, y2m; /* new way */ local
    [all...]
  /system/media/mca/filterfw/java/android/filterfw/geometry/
Quad.java 76 float y1 = Collections.max(ys); local
77 return new Rectangle(x0, y0, x1 - x0, y1 - y0);

Completed in 1428 milliseconds

1 2 3 4 5 6