Searched refs:sx (Results 1 - 25 of 285) sorted by relevance

1234567891011>>

/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/blt/
H A Dspline.rb15 def self.natural(x, y, sx, sy)
16 tk_call('::blt::spline', 'natural', x, y, sx, sy)
19 def self.quadratic(x, y, sx, sy)
20 tk_call('::blt::spline', 'quadratic', x, y, sx, sy)
/macosx-10.10/ntp-92/scripts/monitoring/
H A Dlr.pl48 $self->{sx} = 0.0;
61 $self->{sx} += $_x;
72 return 1 unless ($self->{n} * $self->{sx2} - $self->{sx}**2);
73 return ($self->{n} * $self->{sxy} - $self->{sx} * $self->{sy})
74 / ($self->{n} * $self->{sx2} - $self->{sx}**2);
81 return ($self->{sy} - B() * $self->{sx}) / $self->{n};
102 my $s = ($self->{n} * $self->{sx2} - $self->{sx}**2)
107 return ($self->{n} * $self->{sxy} - $self->{sx} * $self->{sy}) / sqrt($s);
114 return ($self->{sxy} - $self->{sx} * $self->{sy} / $self->{n})
140 sx
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/transforms/
H A DScaleTransformOperation.h34 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, OperationType type) argument
36 return adoptRef(new ScaleTransformOperation(sx, sy, 1, type));
39 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, double sz, OperationType type) argument
41 return adoptRef(new ScaleTransformOperation(sx, sy, sz, type));
64 ScaleTransformOperation(double sx, double sy, double sz, OperationType type) argument
65 : m_x(sx)
H A DAffineTransform.cpp154 AffineTransform& AffineTransform::scale(double sx, double sy) argument
156 m_transform[0] *= sx;
157 m_transform[1] *= sx;
177 AffineTransform& AffineTransform::scaleNonUniform(double sx, double sy) argument
179 return scale(sx, sy);
197 AffineTransform& AffineTransform::shear(double sx, double sy) argument
204 m_transform[2] += sx * a;
205 m_transform[3] += sx * b;
358 double sx = xScale(); local
366 sx
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/x509v3/
H A Dv3_sxnet.c70 static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out, int indent);
104 static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out,
111 v = ASN1_INTEGER_get(sx->version);
113 for(i = 0; i < sk_SXNETID_num(sx->ids); i++) {
114 id = sk_SXNETID_value(sx->ids, i);
135 SXNET *sx = NULL;
139 if(!SXNET_add_id_asc(&sx, cnf->name, cnf->value, -1))
142 return sx;
186 SXNET *sx = NULL;
198 if(!(sx
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/hash/
H A Dhashview.c48 register Hash_bucket_t** sx; local
60 sx = &top->table[top->size];
62 while (sp < sx)
75 sx = &top->table[top->size];
77 while (sp < sx)
H A Dhashfree.c45 Hash_bucket_t** sx; local
65 sx = &tab->table[tab->size];
67 while (sp < sx)
/macosx-10.10/Libc-1044.1.2/gdtoa/FreeBSD/
H A Dgdtoa-dmisc.c109 ULong *bx, *bxe, q, *sx, *sxe; local
126 sx = S->x;
127 sxe = sx + --n;
140 ys = *sx++ * (ULLong)q + carry;
147 si = *sx++;
157 ys = *sx++ * q + carry;
165 while(sx <= sxe);
178 sx = S->x;
181 ys = *sx++ + carry;
188 si = *sx
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/efl/DefaultTheme/widget/progressbar/
H A Dprogressbar.edc34 new Float:x, Float:sx;
36 sx = getfarg(3);
38 if (sx >= 0.0) {
39 set_drag_size(PART:"img.progressbar_fill", sx, 1.0);
/macosx-10.10/dtrace-147/test/tst/common/types/
H A Dtst.complex.d62 } sx;
/macosx-10.10/CPANInternal-159.1/Perl4-CoreLibs-0.003/lib/
H A Dbigint.pl124 local($sx, $sy) = (substr($cx, 0, 1), substr($cy, 0, 1));
127 if ($sx eq '+') {
132 } else { # $sx eq '-'
150 local($sx, $sy) = (shift @x, shift @y); # get signs
151 if ($sx eq $sy) {
152 &external($sx, &add(*x, *y)); # if same sign add
158 &external($sx, &sub(*x, *y));
199 local(*sx, *sy) = @_;
201 for $sx (@sx) {
[all...]
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/plotchart/
H A Dxyplot.tcl147 proc xyplot::rescale { path mx Mx my My sx Sx sy Sy } {
152 if {$sx>=$Sx} {
153 set Sx [expr {$sx+1.0}]
161 set data($path,minmax) [list $mx $Mx $my $My $sx $Sx $sy $Sy]
162 set dx [expr {($Sx-$sx)/double($data($path,xticks))}]
164 $data($path,xyplot) rescale [list $sx $Sx $dx] [list $sy $Sy $dy]
167 set gx $sx
281 lassign $data($path,minmax) mx Mx my My sx Sx sy Sy
282 set data($path,after_id) [after idle [list xyplot::draw $path [list $sx $Sx $sy $Sy]]]
323 lassign $data($path,minmax) mx Mx my My sx S
[all...]
/macosx-10.10/tcl-105/tcl_ext/tktable/tktable/demos/
H A Dbasic.tcl39 -yscrollcommand {.sy set} -xscrollcommand {.sx set} \
45 scrollbar .sx -command [list $table(table) xview] -orient horizontal
50 grid .sx -sticky ew
H A Dcommand.tcl59 -yscrollcommand {.sy set} -xscrollcommand {.sx set} \
73 scrollbar .sx -command [list $table(table) xview] -orient h
77 grid .sx - -sticky ew
H A Ddynarows.tcl58 -xscrollcommand { .sx set } \
69 scrollbar .sx -command [list $t xview] -orient horizontal
72 grid .sx -sticky ew
H A Dmaxsize.tcl42 -xscrollcommand {.sx set} \
51 scrollbar .sx -command [list $table(table) xview] -orient horizontal
55 grid .sx -sticky ew
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/tktable/
H A Dbasic.rb40 sx = table.xscrollbar(TkScrollbar.new)
47 Tk.grid(sx, :sticky=>:ew)
H A Dbuttons.rb24 sx = table.xscrollbar(TkScrollbar.new)
28 Tk.grid(sx, :sticky=>:ew)
H A Dmaxsize.rb37 sx = table.xscrollbar(TkScrollbar.new)
44 Tk.grid(sx, :sticky=>:ew)
H A Dvalid.rb73 sx = table.xscrollbar(TkScrollbar.new)
80 Tk.grid(sx, :sticky=>:ew)
/macosx-10.10/ncurses-44/ncurses/ncurses/base/
H A Dlib_overlay.c142 int sx, sy, dx, dy; local
172 for (dx = dmincol, sx = smincol;
174 sx++, dx++) {
176 if ((CharOf(src->_line[sy].text[sx]) != L(' ')) &&
178 src->_line[sy].text[sx]))) {
180 src->_line[sy].text[sx];
182 ((AttrOf(src->_line[sy].text[sx]) &
188 src->_line[sy].text[sx])) {
190 src->_line[sy].text[sx];
/macosx-10.10/screen-22/screen/
H A Dsearch.c74 int x = 0, sx, ex, y; local
83 sx = markdata->cx + 1;
85 for (y = markdata->cy; y < p->w_histheight + flayer->l_height; y++, sx = 0)
87 if ((x = matchword(markdata->isstr, y, sx, ex)) >= 0)
105 int sx, ex, x = -1, y; local
115 sx = 0;
116 while ((sx = matchword(markdata->isstr, y, sx, ex)) >= 0)
117 x = sx++;
131 matchword(pattern, y, sx, e
[all...]
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGTransform.idl38 [StrictTypeChecking] void setScale(unrestricted float sx, unrestricted float sy);
/macosx-10.10/ruby-106/ruby/lib/minitest/
H A Dbenchmark.rb230 sx = sigma xs
232 c = n * sx2 - sx ** 2
233 a = (slny * sx2 - sx * sxlny) / c
234 b = ( n * sxlny - sx * slny ) / c
249 sx = sigma xs
254 c = n * sx2 - sx**2
255 a = (sy * sx2 - sx * sxy) / c
256 b = ( n * sxy - sx * sy ) / c
/macosx-10.10/Heimdal-398.1.2/lib/libedit/src/
H A Drefresh.c452 * the line. fx and sx is the number of characters inserted or deleted
457 re_clear_eol(EditLine *el, int fx, int sx, int diff) argument
460 ELRE_DEBUG(1, (__F, "re_clear_eol sx %d, fx %d, diff %d\n",
461 sx, fx, diff));
465 if (sx < 0)
466 sx = -sx;
469 if (sx > diff)
470 diff = sx;
506 int fx, sx; local
[all...]

Completed in 281 milliseconds

1234567891011>>