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

/seL4-camkes-master/projects/musllibc/src/linux/
H A Dadjtimex.c4 int adjtimex(struct timex *tx) argument
6 return syscall(SYS_adjtimex, tx);
H A Dadjtime.c9 struct timex tx = { 0 }; local
15 tx.offset = in->tv_sec*1000000 + in->tv_usec;
16 tx.modes = ADJ_OFFSET_SINGLESHOT;
18 if (syscall(SYS_adjtimex, &tx) < 0) return -1;
20 out->tv_sec = tx.offset / 1000000;
21 if ((out->tv_usec = tx.offset % 1000000) < 0) {
/seL4-camkes-master/tools/riscv-pk/machine/
H A Duart.c20 volatile uint32_t *tx = uart + UART_REG_TXFIFO;
21 while ((int32_t)(*tx) < 0);
22 *tx = ch;
/seL4-camkes-master/projects/musllibc/src/math/
H A D__rem_pio2f.c45 double tx[1],ty[1]; local
67 tx[0] = u.f;
68 n = __rem_pio2_large(tx,ty,e0,1,0);
H A D__rem_pio2.c52 double tx[3],ty[2]; local
161 tx[i] = (double)(int32_t)z;
162 z = (z-tx[i])*0x1p24;
164 tx[i] = z;
166 while (tx[i] == 0.0)
168 n = __rem_pio2_large(tx,ty,(int)(ix>>20)-(0x3ff+23),i+1,1);
H A D__rem_pio2l.c73 double tx[NX],ty[NY]; local
118 tx[i] = (double)(int32_t)z;
119 z = (z-tx[i])*0x1p24;
121 tx[i] = z;
122 while (tx[i] == 0)
124 n = __rem_pio2_large(tx, ty, ex-0x3fff-23, i+1, NY);
/seL4-camkes-master/tools/rumprun/platform/xen/xen/
H A Dnetfront.c46 struct netif_tx_front_ring tx; member in struct:netfront_dev
153 prod = dev->tx.sring->rsp_prod;
156 for (cons = dev->tx.rsp_cons; cons != prod; cons++)
161 txrsp = RING_GET_RESPONSE(&dev->tx, cons);
178 dev->tx.rsp_cons = prod;
188 dev->tx.sring->rsp_event =
189 prod + ((dev->tx.sring->req_prod - prod) >> 1) + 1;
191 } while ((cons == prod) && (prod != dev->tx.sring->rsp_prod));
226 bmk_pgfree_one(dev->tx.sring);
293 FRONT_RING_INIT(&dev->tx, tx
527 struct netif_tx_request *tx; local
[all...]
/seL4-camkes-master/projects/projects_libs/libusbdrivers/src/plat/imx6/
H A Dehci-imx6.c53 struct usb_sct tx; /* 0x10 */ member in struct:usb_phy_regs
/seL4-camkes-master/
H A Dgriddle588 (tx[12])
/seL4-camkes-master/tools/seL4/cmake-tool/
H A Dgriddle588 (tx[12])
/seL4-camkes-master/projects/picotcp/test/unit/
H A Dmodunit_pico_6lowpan.c1304 static uint8_t tx[1500]; variable
1312 memcpy(tx, f->start, f->len);
1314 dbg("tx: ");
1315 dbg_buffer(tx, tx_len);
1523 tx[0] |= 0x60;
1524 FAIL_UNLESS(0 == memcmp(rx->start, tx, rx->len), test, "Should've received exactly the same frame as was transmitted");
/seL4-camkes-master/projects/picotcp/docs/user_manual/
H A Dchap_api_tftp.tex18 Real file transaction is started using the functions pico$\_$tftp$\_$start$\_$tx and pico$\_$tftp$\_$start$\_$rx; both require a callback that must be provided by the user to handle single chunks of the transmission. The transmitter callback must use pico$\_$tftp$\_$send function to send each block of data.
32 Once the session is created, the application can start receiving a file with a call to the function pico$\_$tftp$\_$app$\_$start$\_$rx or, if needs to transmit, invoking pico$\_$tftp$\_$app$\_$start$\_$tx.
226 This function is used to require the use of Extended Options for TFTP transfer associate to a session according to RFC 2347 and RFC 2349. It should be used before the invocation of pico$\_$tftp$\_$start$\_$rx or pico$\_$tftp$\_$start$\_$tx unless the setting is related to the timeout.
320 \item \texttt{args} - Pointer to the buffer containing the arguments: filename for listen callback and block for rx or tx callback.

Completed in 131 milliseconds