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

12

/barrelfish-master/lib/openssl-1.0.0d/crypto/rc4/asm/
H A Drc4-586.pl39 $tx="ecx";
49 &add (&LB($yy),&LB($tx));
51 &mov (&DWP(0,$dat,$yy,4),$tx);
53 &add ($ty,$tx);
58 &mov ($tx,&DWP(0,$dat,$xx,4));
60 &mov ($tx,&wparam(3)); # reload [re-biased] out
82 &lea ($tx,&DWP(0,$inp,$ty));
84 &mov (&wparam(1),$tx); # save input+len
92 &mov ($tx,&DWP(0,$dat,$xx,4));
106 &mov (&DWP(0,$tx,
[all...]
/barrelfish-master/lib/tommath/
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);
/barrelfish-master/lib/libc/stdio/
H A Dxprintf_time.c64 intmax_t t, tx; local
92 tx = t;
97 if (tx >= DAY && (t != 0 || prec != 0)) {
101 if (tx >= HOUR && (t != 0 || prec != 0)) {
105 if (tx >= MINUTE && (t != 0 || prec != 0)) {
109 if (t != 0 || tx == 0 || prec != 0)
/barrelfish-master/lib/msun/src/
H A De_rem_pio2f.c50 double tx[1],ty[1]; local
80 tx[0] = z;
81 n = __kernel_rem_pio2(tx,ty,e0,1,0);
H A De_rem_pio2.c58 double tx[3],ty[2]; local
177 tx[i] = (double)((int32_t)(z));
178 z = (z-tx[i])*two24;
180 tx[2] = z;
182 while(tx[nx-1]==zero) nx--; /* skip zero term */
183 n = __kernel_rem_pio2(tx,ty,e0,nx,1);
/barrelfish-master/lib/msun/ld128/
H A De_rem_pio2l.h66 double tx[5],ty[3]; local
128 tx[i] = (double)((int32_t)(z));
129 z = (z-tx[i])*two24;
131 tx[4] = z;
133 while(tx[nx-1]==zero) nx--; /* skip zero term */
134 n = __kernel_rem_pio2(tx,ty,e0,nx,3);
/barrelfish-master/lib/msun/ld80/
H A De_rem_pio2l.h78 double tx[3],ty[2]; local
138 tx[i] = (double)((int32_t)(z));
139 z = (z-tx[i])*two24;
141 tx[2] = z;
143 while(tx[nx-1]==zero) nx--; /* skip zero term */
144 n = __kernel_rem_pio2(tx,ty,e0,nx,2);
/barrelfish-master/lib/openssl-1.0.0d/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);
/barrelfish-master/usr/eclipseclp/Kernel/src/
H A Dsepia.h533 #define Unify_Pw(vx,tx,vy,ty) ec_unify_(vx,tx,vy,ty,&MU)
537 #define Request_Unify_Pw(vx,tx,vy,ty) \
538 uNiFy_result = uNiFy_result == PFAIL ? PFAIL : ec_unify_(vx,tx,vy,ty,&MU);
540 #define Request_Unify_Type(vx,tx,valytype,v,t) \
545 Request_Unify_Pw(vx,tx,py.val,py.tag)\
549 #define Request_Unify_Integer(vx,tx,vy) Request_Unify_Type(vx,tx,nint,vy,TINT)
550 #define Request_Unify_Atom(vx,tx,vy) \
551 Request_Unify_Type(vx,tx,di
[all...]
H A Dintervals.c1297 p_breal_from_bounds(value vl, type tl, value vu, type tu, value vx, type tx) argument
1305 Check_Output_Type(tx, TIVL);
1334 Return_Unify_Interval(vx, tx, lo, hi);
1339 p_breal_min(value vx, type tx, value vmin, type tmin) argument
1345 if (IsDouble(tx)) {
1346 Return_Unify_Pw(vmin, tmin, vx, tx);
1347 } else if (IsInterval(tx)) {
1353 Check_Number(tx);
1354 result = tag_desc[TagType(tx)].coerce_to[TIVL](vx, &ivl);
1363 p_breal_max(value vx, type tx, valu argument
1385 p_breal_bounds(value vx, type tx, value vmin, type tmin, value vmax, type tmax) argument
[all...]
H A Dbip_arith.c127 p_succ(value x, type tx, value y, type ty) argument
131 if (!(IsRef(tx) || IsNumber(tx))) { Bip_Error(ARITH_TYPE_ERROR) }
132 if (NonIntNum(tx)) { Bip_Error(TYPE_ERROR) }
137 if (IsInteger(tx))
148 else if (IsRef(tx))
155 Return_Numeric(x, tx, result);
159 return unary_arith_op(y, ty, x, tx, ARITH_PREV, TINT);
162 return unary_arith_op(x, tx, y, ty, ARITH_NEXT, TINT);
167 p_plus(value x, type tx, valu argument
215 p_times(value x, type tx, value y, type ty, value z, type tz) argument
[all...]
H A Dbip_domain.c105 p_gec_insert_suspension(value vx, type tx, value vk, type tk, value vy, type ty, value vs, type ts),
106 p_gec_start(value vx, type tx, value vk, type tk, value vy, type ty, value vc, type tc, value vd, type td, value ve, type te, value vres, type tres),
107 p_gec_ent_start(value vx, type tx, value vk, type tk, value vy, type ty, value vc, type tc, value vd, type td, value ve, type te, value vres, type tres),
108 p_gec_test(value vx, type tx, value vk, type tk, value vy, type ty, value vc, type tc, value vres, type tres),
109 p_gec_comp(value vx, type tx, value vk, type tk, value vy, type ty, value vc, type tc, value vres, type tres),
805 p_gec_insert_suspension(value vx, type tx, value vk, type tk, value vy, type ty, value vs, type ts) argument
809 if (IsRef(tx)) {
829 p_gec_start(value vx, type tx, value vk, type tk, value vy, type ty, value vc, type tc, value vd, type td, value ve, type te, value vres, type tres) argument
836 if (IsMeta(tx)) {
839 } else if (!IsInteger(tx)) {
871 p_gec_ent_start(value vx, type tx, value vk, type tk, value vy, type ty, value vc, type tc, value vd, type td, value ve, type te, value vres, type tres) argument
907 p_gec_comp(value vx, type tx, value vk, type tk, value vy, type ty, value vc, type tc, value vres, type tres) argument
1101 p_gec_test(value vx, type tx, value vk, type tk, value vy, type ty, value vc, type tc, value vres, type tres) argument
[all...]
/barrelfish-master/usr/monitor/
H A Dsend_cap.c27 intermon_captx_t *tx = err_is_ok(status) ? &st->captx : NULL; local
29 st->send_cont(status, st, tx, st->st);
/barrelfish-master/usr/drivers/e1000/
H A De1000n_devq.h45 struct dmem tx; member in struct:e1000_queue
H A Ddevif_backend_e1000.c706 &device->tx);
707 device->transmit_ring = (void*) device->tx.vbase;
713 __func__, __LINE__, device->tx.size, (void*) device->tx.vbase,
714 (void*) device->tx.devaddr);
728 e1000_setup_tx(device, device->tx.devaddr);
H A De1000n_hwinit.c861 static void e1000_setup_tx(struct e1000_driver_state *device, struct capref tx) argument
867 err = frame_identify(tx, &frameid);
990 size_t rx_bufs, struct capref tx, size_t tx_bufs)
995 e1000_setup_tx(eds, tx);
989 e1000_init_queues(struct e1000_driver_state* eds, struct capref rx, size_t rx_bufs, struct capref tx, size_t tx_bufs) argument
/barrelfish-master/usr/eclipseclp/icparc_solvers/
H A Dbitmap.h66 #define Request_Unify_Bitmap(vx,tx,vy) Request_Unify_Type(vx,tx,wptr,vy,TBITMAP)
67 #define Return_Unify_Bitmap(vx,tx,vy) Return_Unify_Type(vx,tx,wptr,vy,TBITMAP)
/barrelfish-master/lib/bulk_transfer/backends/net/
H A De10k_queue.h57 static inline e10k_queue_t* e10k_queue_init(void* tx, size_t tx_size, argument
63 q->tx_ring = tx;
82 memset(tx, 0, tx_size * e10k_q_tdesc_adv_wb_size);
H A Dbulk_net_e10k.c268 void *virt, *rx, *tx, *txhwb; local
289 err = allocmap_frame(bu->ring_size * E10K_DESCSZ, &tx, NULL, &bu->txframe);
294 bu->q = e10k_queue_init(tx, bu->ring_size, txhwb, rx, bu->ring_size,
409 /** Check thee tx queues for transmits that have finshed */
492 /** Thread polling rx and tx queues */
511 /** Callback for queue manager (writes tx tail index) */
/barrelfish-master/lib/devif/backends/idc/
H A Ddesc_queue.c410 struct capref rx, struct capref tx,
419 slots*DESCQ_ALIGNMENT, tx,
468 struct capref rx, struct capref tx)
472 err = rpc_mp_create(b, slots, rx, tx, &err2, &qid);
569 struct capref tx; local
628 err = frame_alloc(&tx, DESCQ_ALIGNMENT*slots, &bytes);
644 slots*DESCQ_ALIGNMENT, tx,
691 err = tmp->binding->rpc_tx_vtbl.create_queue(tmp->binding, slots, rx, tx, &err2, queue_id);
733 cap_destroy(tx);
409 rpc_mp_create(struct descq_binding* b, uint32_t slots, struct capref rx, struct capref tx, errval_t *err, uint64_t *queue_id) argument
467 mp_create(struct descq_binding* b, uint32_t slots, struct capref rx, struct capref tx) argument
/barrelfish-master/usr/drivers/e10k/
H A Ddevif_backend_e10k.c564 &q->tx);
571 DEBUG_QUEUE("Allocated TX queue memory is=%lu requested=%lu \n", q->tx.size, q->tx_ring_size);
599 e10k_queue_init(q, (void*) q->tx.vbase, NUM_TX_DESC, (void*) q->txhwb.vbase,
607 q->tx_frame = q->tx.mem;
645 err = q->binding->rpc_tx_vtbl.create_queue(q->binding, q->tx.mem, q->txhwb.mem,
H A De10k_devif_vf.c267 DEBUG_VF("tx.phys=%"PRIx64" tx.virt=%p tx.size=%"PRIu64"\n", q->tx.devaddr, q->tx_ring, q->tx_ring_size);
347 e10k_vf_vftdbal_wr(d, n, q->tx.devaddr);
348 e10k_vf_vftdbah_wr(d, n, q->tx.devaddr >> 32);
/barrelfish-master/usr/drivers/solarflare/
H A Dhw_queue.h124 static inline sfn5122f_queue_t* sfn5122f_queue_init(void* tx, argument
137 q->tx_ring.user = tx;
139 q->tx_ring.ker = tx;
169 memset(tx, 0xff, tx_size * sfn5122f_q_tx_ker_desc_size);
172 memset(tx, 0xff, tx_size * sfn5122f_q_tx_user_desc_size);

Completed in 498 milliseconds

12