Searched refs:tx (Results 1 - 25 of 76) sorted by relevance

1234

/macosx-10.10.1/OpenSSL098-52/src/crypto/rc4/asm/
H A Drc4-586.pl33 $tx="ecx";
68 # &mov( $tx, &DWP(0,$d,$x,4)) if $p < 0;
70 &add( &LB($y), &LB($tx));
74 &add( $ty, $tx);
75 &mov( &DWP(0,$d,$y,4),$tx);
78 &mov( $tx, &DWP(0,$d,$x,4)) if $p < 1; # NEXT ROUND
145 &mov( $tx, &DWP(0,$d,$x,4));
169 &mov( $tx, &swtmp(0));
171 &xor( $tx, $ty);
173 &mov( &DWP(-8,$out,"",0), $tx);
[all...]
H A Drc4-ia64.S89 .rotr dat[4],key_x[4],tx[2],rnd[2],key_y[2],ty[1];
128 (p18) dep rnd[1]=rnd[1],r0,OFF,8 } // ((tx+ty)&255)<<OFF
131 { .mmi; (p16) LDKEY tx[0]=[key_x[1]] // tx=key[xx]
134 { .mmi; (p18) add rnd[1]=ksch,rnd[1] // &key[(tx+ty)&255]
136 { .mmi; (p18) LDKEY rnd[1]=[rnd[1]] // rnd=key[(tx+ty)&255]
139 { .mmi; (p21) add yy=yy,tx[1] // (p16)
140 (p20) add yy=yy,tx[0] // (p16) y+=tx
141 (p21) mov tx[
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn_fast_s_mp_mul_digs.c53 int tx, ty; local
59 tx = ix - ty;
62 tmpx = a->dp + tx;
66 while (tx++ < a->used && ty-- >= 0) { ... }
68 iy = MIN(a->used-tx, ty+1);
H A Dbn_fast_s_mp_mul_high_digs.c45 int tx, ty, iy; local
50 tx = ix - ty;
53 tmpx = a->dp + tx;
57 while (tx++ < a->used && ty-- >= 0) { ... }
59 iy = MIN(a->used-tx, ty+1);
H A Dbn_fast_s_mp_sqr.c22 * (ty-tx) so that it never happens. You double all those
45 int tx, ty, iy; local
54 tx = ix - ty;
57 tmpx = a->dp + tx;
61 while (tx++ < a->used && ty-- >= 0) { ... }
63 iy = MIN(a->used-tx, ty+1);
65 /* now for squaring tx can never equal ty
69 iy = MIN(iy, (ty-tx+1)>>1);
/macosx-10.10.1/tcl-105/tcl/tcl/libtommath/
H A Dbn_fast_s_mp_mul_digs.c53 int tx, ty; local
59 tx = ix - ty;
62 tmpx = a->dp + tx;
66 while (tx++ < a->used && ty-- >= 0) { ... }
68 iy = MIN(a->used-tx, ty+1);
H A Dbn_fast_s_mp_sqr.c22 * (ty-tx) so that it never happens. You double all those
45 int tx, ty, iy; local
54 tx = ix - ty;
57 tmpx = a->dp + tx;
61 while (tx++ < a->used && ty-- >= 0) { ... }
63 iy = MIN(a->used-tx, ty+1);
65 /* now for squaring tx can never equal ty
69 iy = MIN(iy, (ty-tx+1)>>1);
/macosx-10.10.1/Libc-1044.1.2/stdio/FreeBSD/
H A Dxprintf_time.c65 intmax_t t, tx; local
93 tx = t;
98 if (tx >= DAY && (t != 0 || prec != 0)) {
102 if (tx >= HOUR && (t != 0 || prec != 0)) {
106 if (tx >= MINUTE && (t != 0 || prec != 0)) {
110 if (t != 0 || tx == 0 || prec != 0)
/macosx-10.10.1/OpenSSL098-52/src/crypto/rc4/
H A Drc4_enc.c74 register RC4_INT x,y,tx,ty; local
115 tx=d[x], \
116 y=(tx+y)&0xff, \
118 d[y]=tx, \
120 (RC4_CHUNK)d[(tx+ty)&0xff]\
267 tx=d[x]; \
268 y=(tx+y)&0xff; \
270 d[y]=tx; \
271 (out) = d[(tx+ty)&0xff]^ (in);
/macosx-10.10.1/tcsh-65/tcsh/
H A Dtc.disc.c134 union txname tx; local
136 tx.tx_which = 0;
138 if (ioctl(f, TXGETLD, (ioctl_t) & tx) == 0) {
139 if (strcmp(tx.tx_name, strPOSIX) != 0)
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cgaffinetransform.py12 self.failUnless(hasattr(v, "tx"))
21 self.failUnlessIsInstance(CGAffineTransformIdentity.tx, float)
31 self.failUnlessEqual(tf.tx, 5.5)
40 self.failUnlessEqual(tf.tx, 2.5)
49 self.failUnlessEqual(tf.tx, 0.0)
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cgaffinetransform.py12 self.assertTrue(hasattr(v, "tx"))
21 self.assertIsInstance(CGAffineTransformIdentity.tx, float)
31 self.assertEqual(tf.tx, 5.5)
40 self.assertEqual(tf.tx, 2.5)
49 self.assertEqual(tf.tx, 0.0)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/PyObjCTest/
H A Dtest_cgaffinetransform.py12 self.assertTrue(hasattr(v, "tx"))
21 self.assertIsInstance(CGAffineTransformIdentity.tx, float)
31 self.assertEqual(tf.tx, 5.5)
40 self.assertEqual(tf.tx, 2.5)
49 self.assertEqual(tf.tx, 0.0)
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Base/
H A DImageUtilities.js67 function _logSQLError(tx, error)
94 _generatedImageCacheDatabase.transaction(function(tx) {
95 tx.executeSql("SELECT key, imageVersion, data FROM CachedImages WHERE pixelRatio = ? AND formatVersion = ?", [window.devicePixelRatio, _imageStorageFormatVersion], function(tx, result) {
102 }, function(tx, error) {
106 tx.executeSql("DROP TABLE IF EXISTS CachedImages");
107 tx.executeSql("CREATE TABLE CachedImages (key TEXT, pixelRatio INTEGER, formatVersion NUMERIC, imageVersion NUMERIC, data BLOB, UNIQUE(key, pixelRatio))", [], null, _logSQLError);
139 _generatedImageCacheDatabase.transaction(function(tx) {
140 tx.executeSql("INSERT OR REPLACE INTO CachedImages (key, pixelRatio, imageVersion, formatVersion, data) VALUES (?, ?, ?, ?, ?)", [storageKey, window.devicePixelRatio, imageVersion, _imageStorageFormatVersion, imageDataString], null, _logSQLError);
177 _generatedImageCacheDatabase.readTransaction(function(tx) {
[all...]
/macosx-10.10.1/lsof-53/lsof/
H A Dmisc.c509 int al, i, j, oc, nn, ns, off, tx;
521 tx = 0;
523 tx = 1;
534 if (tx) {
592 if ((nr < 0) && ((off = -nr) > (tx ? UdpStOff : TcpStOff))) {
593 if (tx ? UdpSt : TcpSt) {
600 oc = off - (tx ? UdpStOff : TcpStOff);
601 al = tx ? UdpStAlloc : TcpStAlloc;
602 ns = tx ? UdpNstates : TcpNstates;
608 if (tx) {
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DHoverMenu.js153 _addPath: function(commands, tx, ty)
157 path.setAttribute("transform", "translate(" + (tx + 1) + "," + (ty + 1) + ")");
173 var tx = -secondRect.minX(); variable
184 ], tx, ty);
194 ], tx, ty);
/macosx-10.10.1/ntp-92/ntpd/
H A Drefclock_palisade.c218 struct packettx tx; local
220 tx.size = 0;
221 tx.data = (u_char *) malloc(100);
224 sendsupercmd (&tx, 0x8E, 0xA2);
225 sendbyte (&tx, 0x3);
226 sendetx (&tx, fd);
229 sendsupercmd (&tx, 0x8F, 0xA5);
230 sendint (&tx, 0x5);
231 sendetx (&tx, fd);
233 free(tx
246 struct packettx tx; local
[all...]
/macosx-10.10.1/screen-22/screen/
H A Dmark.c954 void revto(tx, ty)
955 int tx, ty;
957 revto_line(tx, ty, -1);
960 /* tx, ty: WINDOW, line: DISPLAY */
961 void revto_line(tx, ty, line)
962 int tx, ty, line;
972 if (tx < 0)
973 tx = 0;
974 else if (tx > fore->w_width - 1)
975 tx
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/string/
H A Dbase64.c168 register unsigned char* tx; local
191 tx = te - tz;
196 te = tx = tp;
211 if (tp >= tx)
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/C/CoordinatedGraphics/
H A DWKView.cpp109 void WKViewSetUserViewportTranslation(WKViewRef viewRef, double tx, double ty) argument
111 toImpl(viewRef)->setUserViewportTranslation(tx, ty);
H A DWKView.h91 WK_EXPORT void WKViewSetUserViewportTranslation(WKViewRef, double tx, double ty);
/macosx-10.10.1/groff-38/groff/src/devices/xditview/
H A Ddraw.c646 int sx, sy, tx, ty; local
662 tx = sx + DeviceToX (dw, dx);
668 appendPoint (points, &pointi, (sx + tx)/2, (sy + ty)/2);
674 (sx + tx*5)/6, (sy + ty*5)/6,
675 (tx*5 + ux)/6, (ty*5 + uy)/6,
676 (tx + ux)/2, (ty + uy)/2);
677 sx = tx;
679 tx = ux;
683 appendPoint (points, &pointi, tx, ty);
/macosx-10.10.1/ncurses-44/ncurses/ncurses/tty/
H A Dlib_mvcur.c112 #define NOT_LOCAL(fy, fx, ty, tx) ((tx > LONG_DIST) \
113 && (tx < screen_columns - 1 - LONG_DIST) \
114 && (abs(ty-fy) + abs(tx-fx) > LONG_DIST))
1039 int fy, fx, ty, tx, n, i; local
1048 puts("fy fx ty tx -- (4 numbers) display (fy,fx)->(ty,tx) move");
1063 } else if (sscanf(buf, "%d %d %d %d", &fy, &fx, &ty, &tx) == 4) {
1069 mvcur(fy, fx, ty, tx);
1076 } else if (sscanf(buf, "s %d %d %d %d", &fy, &fx, &ty, &tx)
[all...]
/macosx-10.10.1/ruby-106/ruby/test/rexml/
H A Dtest_listener.rb79 def text(tx)
80 #p tx
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/tests/visualtests/utils/
H A DtestReadWrite.tcl237 set tx [expr $x + $size * 2]
239 .t.c create text $tx $y -anchor nw -fill black -text "$color box" -font $font

Completed in 208 milliseconds

1234