Searched refs:x2 (Results 1 - 25 of 904) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/rendering/shapes/
H A DShapeInterval.h45 // The initial values of m_x1,x2 don't matter (unless you're looking
50 ShapeInterval(T x1, T x2) argument
52 , m_x2(x2)
54 ASSERT(x2 >= x1);
59 T x2() const { return isUndefined() ? 0 : m_x2; } function in class:WebCore::ShapeInterval
63 void set(T x1, T x2) argument
65 ASSERT(x2 >= x1);
67 m_x2 = x2;
74 return x2() >= interval.x1() && x1() <= interval.x2();
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-en/
H A Dhscale.rb43 x2 = width - 30
44 if x2 < 21
45 x2 = 21
47 w.coords 'poly',20,15,20,35,x2,35,x2,45,width,25,x2,5,x2,15,20,15
48 w.coords 'line',20,15,20,35,x2,35,x2,45,width,25,x2,
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Dhscale.rb46 x2 = width - 30
47 if x2 < 21
48 x2 = 21
50 w.coords 'poly',20,15,20,35,x2,35,x2,45,width,25,x2,5,x2,15,20,15
51 w.coords 'line',20,15,20,35,x2,35,x2,45,width,25,x2,
[all...]
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGPathSegCurvetoCubicSmoothAbs.h31 static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
33 return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(element, role, x, y, x2, y2));
37 SVGPathSegCurvetoCubicSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
38 : SVGPathSegCurvetoCubicSmooth(element, role, x, y, x2, y2)
H A DSVGPathSegCurvetoCubicSmoothRel.h31 static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
33 return adoptRef(new SVGPathSegCurvetoCubicSmoothRel(element, role, x, y, x2, y2));
37 SVGPathSegCurvetoCubicSmoothRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
38 : SVGPathSegCurvetoCubicSmooth(element, role, x, y, x2, y2)
H A DSVGPathSegCurvetoCubicSmooth.h30 SVGPathSegCurvetoCubicSmooth(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
34 , m_x2(x2)
53 float x2() const { return m_x2; } function in class:WebCore::SVGPathSegCurvetoCubicSmooth
54 void setX2(float x2) argument
56 m_x2 = x2;
H A DSVGPathSegCurvetoCubicAbs.h31 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
33 return adoptRef(new SVGPathSegCurvetoCubicAbs(element, role, x, y, x1, y1, x2, y2));
37 SVGPathSegCurvetoCubicAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
38 : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2)
H A DSVGPathSegCurvetoCubicRel.h31 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
33 return adoptRef(new SVGPathSegCurvetoCubicRel(element, role, x, y, x1, y1, x2, y2));
37 SVGPathSegCurvetoCubicRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
38 : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2)
H A DSVGLineElement.idl29 readonly attribute SVGAnimatedLength x2;
H A DSVGLinearGradientElement.idl29 readonly attribute SVGAnimatedLength x2;
H A DSVGPathSegCurvetoCubicSmoothAbs.idl30 [StrictTypeChecking] attribute unrestricted float x2;
H A DSVGPathSegCurvetoCubicSmoothRel.idl30 [StrictTypeChecking] attribute unrestricted float x2;
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DUnitBezier.js26 WebInspector.UnitBezier = function(x1, y1, x2, y2)
32 this._bx = 3.0 * (x2 - x1) - this._cx;
71 var t0, t1, t2, x2, d2, i;
75 x2 = this._sampleCurveX(t2) - x;
76 if (Math.abs(x2) < epsilon)
81 t2 = t2 - x2 / d2;
95 x2 = this._sampleCurveX(t2);
96 if (Math.abs(x2 - x) < epsilon)
98 if (x > x2)
/macosx-10.10/emacs-93/emacs/mac/inc/
H A Dtermio.h49 #define ICRNL 0x2 /* map CR to NL on input */
54 #define TABDLY 0x2 /* horizontal tab delays */
59 #define B9600 0x2
63 #define ICANON 0x2 /* canonical input (erase and kill processing) */
/macosx-10.10/file_cmds-242/pax/
H A Dpat_rep.h47 #define GLOB 0x2
/macosx-10.10/tcl-105/tk/tk/library/demos/
H A Dhscale.tcl41 set x2 [expr {$width - 30}]
42 if {$x2 < 21} {
43 set x2 21
45 $w coords poly 20 15 20 35 $x2 35 $x2 45 $width 25 $x2 5 $x2 15 20 15
46 $w coords line 20 15 20 35 $x2 35 $x2 45 $width 25 $x2
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/examples/functions/
H A Dinetaddr25 local x1 x2 x3 x4
50 x2=$(( 0x${h:2:2} ))
55 printf "%d.%d.%d.%d\n" $x1 $x2 $x3 $x4
57 printf "%d.%d.%d.%d\n" $x4 $x3 $x2 $x1
/macosx-10.10/eap8021x-198/EAP8021X.fproj/
H A Deapolcfg_auth_types.h50 keapolcfg_auth_set_password = 0x2
/macosx-10.10/xnu-2782.1.97/osfmk/device/
H A Ddevice_port.h74 #define DEVICE_PAGER_COHERENT 0x2
/macosx-10.10/xnu-2782.1.97/osfmk/mach/
H A Dsync_policy.h42 #define SYNC_POLICY_REVERSED 0x2
/macosx-10.10/tcl-105/tk84/tk/library/demos/
H A Dhscale.tcl41 set x2 [expr {$width - 30}]
42 if {$x2 < 21} {
43 set x2 21
45 $w coords poly 20 15 20 35 $x2 35 $x2 45 $width 25 $x2 5 $x2 15 20 15
46 $w coords line 20 15 20 35 $x2 35 $x2 45 $width 25 $x2
[all...]
/macosx-10.10/OpenPAM-20/compat/
H A Dpam_shim_setcred_flags.h2 xlate(PAM_DELETE_CRED, 0x0004U, PAM_DELETE_CRED, 0x2)
/macosx-10.10/OpenSSL098-52/src/crypto/rc2/
H A Drc2_cbc.c140 register RC2_INT x0,x1,x2,x3,t; local
147 x2=(RC2_INT)l&0xffff;
156 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff;
158 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff;
160 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff;
161 x2=(t<<3)|(t>>13);
162 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff;
172 x2+=p1[x1&0x3f];
173 x3+=p1[x2
185 register RC2_INT x0,x1,x2,x3,t; local
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/misc/
H A Drc2_cbc.c166 register RC2_INT x0,x1,x2,x3,t; local
173 x2=(RC2_INT)l&0xffff;
182 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff;
184 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff;
186 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff;
187 x2=(t<<3)|(t>>13);
188 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff;
198 x2+=p1[x1&0x3f];
199 x3+=p1[x2
215 register RC2_INT x0,x1,x2,x3,t; local
[all...]
/macosx-10.10/libiconv-42/libiconv/lib/
H A Dcns11643_inv.h1582 0x3,0x21,0x26, 0x3,0x21,0x25, 0x2,0x21,0x26, 0x1,0x44,0x37,
1583 0x1,0x44,0x35, 0x1,0x44,0x38, 0x1,0x44,0x36, 0x2,0x21,0x27,
1584 0x1,0x44,0x62, 0x2,0x21,0x2f, 0x2,0x21,0x2d, 0x1,0x44,0x61,
1590 0x1,0x44,0x63, 0x2,0x21,0x30, 0x4,0x21,0x3a, 0x1,0x44,0x64,
1591 0x2,0x21,0x43, 0x1,0x48,0x6b, 0x2,0x25,0x31, 0x4,0x2b,0x5e,
1593 0x2,0x21,0x44, 0x3,0x27,0x40, 0x3,0x21,0x23, 0x4,0x21,0x22,
1594 0x4,0x21,0x23, 0x2,0x21,0x21, 0x1,0x44,0x25, 0x1,0x44,0x3c,
1595 0x3,0x21,0x30, 0x2,
[all...]

Completed in 300 milliseconds

1234567891011>>