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

1234567891011>>

/macosx-10.9.5/ruby-104/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.9.5/ntp-88/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.9.5/WebCore-7537.78.1/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));
70 ScaleTransformOperation(double sx, double sy, double sz, OperationType type) argument
71 : m_x(sx)
H A DAffineTransform.cpp152 AffineTransform& AffineTransform::scale(double sx, double sy) argument
154 m_transform[0] *= sx;
155 m_transform[1] *= sx;
175 AffineTransform& AffineTransform::scaleNonUniform(double sx, double sy) argument
177 return scale(sx, sy);
195 AffineTransform& AffineTransform::shear(double sx, double sy) argument
202 m_transform[2] += sx * a;
203 m_transform[3] += sx * b;
356 double sx = xScale(); local
364 sx
[all...]
/macosx-10.9.5/ksh-20/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.9.5/Libc-997.90.3/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.9.5/WebCore-7537.78.1/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.9.5/dtrace-118.1/test/tst/common/types/
H A Dtst.complex.d62 } sx;
/macosx-10.9.5/CPANInternal-140/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.9.5/tcl-102/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.9.5/tcl-102/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.9.5/ncurses-42/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.9.5/ruby-104/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.9.5/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.9.5/WebCore-7537.78.1/svg/
H A DSVGTransform.idl40 [StrictTypeChecking] void setScale(float sx, float sy);
/macosx-10.9.5/ruby-104/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.9.5/Heimdal-323.92.1/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...]
/macosx-10.9.5/libedit-39/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 169 milliseconds

1234567891011>>