/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ |
H A D | myson.c | 304 if ( ( rc = myson_create_ring ( myson, &myson->tx ) ) != 0 ) 323 myson_destroy_ring ( myson, &myson->tx ); 382 myson_destroy_ring ( myson, &myson->tx ); 395 struct myson_descriptor *tx; local 408 if ( ( myson->tx.prod - myson->tx.cons ) >= MYSON_NUM_TX_DESC ) { 413 tx_idx = ( myson->tx.prod++ % MYSON_NUM_TX_DESC ); 414 tx = &myson->tx.desc[tx_idx]; 417 tx 444 struct myson_descriptor *tx; local [all...] |
H A D | natsemi.c | 566 if ( ( rc = natsemi_create_ring ( natsemi, &natsemi->tx ) ) != 0 ) 606 natsemi_destroy_ring ( natsemi, &natsemi->tx ); 638 natsemi_destroy_ring ( natsemi, &natsemi->tx ); 651 union natsemi_descriptor *tx; local 664 if ( ( natsemi->tx.prod - natsemi->tx.cons ) >= NATSEMI_NUM_TX_DESC ) { 669 tx_idx = ( natsemi->tx.prod++ % NATSEMI_NUM_TX_DESC ); 670 tx = &natsemi->tx.desc[tx_idx]; 674 tx 700 union natsemi_descriptor *tx; local [all...] |
H A D | intel.c | 496 if ( ( rc = intel_create_ring ( intel, &intel->tx ) ) != 0 ) 534 intel_destroy_ring ( intel, &intel->tx ); 565 intel_destroy_ring ( intel, &intel->tx ); 581 struct intel_descriptor *tx; local 587 if ( ( intel->tx.prod - intel->tx.cons ) >= INTEL_NUM_TX_DESC ) { 591 tx_idx = ( intel->tx.prod++ % INTEL_NUM_TX_DESC ); 592 tx_tail = ( intel->tx.prod % INTEL_NUM_TX_DESC ); 593 tx = &intel->tx 621 struct intel_descriptor *tx; local [all...] |
H A D | realtek.c | 518 if ( ( rc = realtek_create_ring ( rtl, &rtl->tx ) ) != 0 ) 557 realtek_destroy_ring ( rtl, &rtl->tx ); 588 realtek_destroy_ring ( rtl, &rtl->tx ); 601 struct realtek_descriptor *tx; local 607 if ( ( rtl->tx.prod - rtl->tx.cons ) >= RTL_NUM_TX_DESC ) { 611 tx_idx = ( rtl->tx.prod++ % RTL_NUM_TX_DESC ); 637 tx = &rtl->tx.desc[tx_idx]; 638 tx 665 struct realtek_descriptor *tx; local [all...] |
H A D | b44.c | 362 bw32(bp, B44_DMATX_ADDR, VIRT_TO_B44(bp->tx)); 461 if (bp->tx) { 462 free_dma(bp->tx, B44_TX_RING_LEN_BYTES); 463 bp->tx = NULL; 472 bp->tx = malloc_dma(B44_TX_RING_LEN_BYTES, B44_DMA_ALIGNMENT); 473 if (!bp->tx) 476 memset(bp->tx, 0, B44_TX_RING_LEN_BYTES); 479 DBG("Init TX rings: tx=0x%08lx\n", VIRT_TO_B44(bp->tx)); 791 if (bp->tx[cu [all...] |
H A D | intel.h | 245 struct intel_ring tx; member in struct:intel_nic
|
H A D | myson.h | 173 struct myson_ring tx; member in struct:myson_nic
|
H A D | vmxnet3.c | 346 le32_to_cpu ( vmxnet->dma->queues.tx.status.error ), 437 queues->tx.cfg.desc_address = 439 queues->tx.cfg.comp_address = 441 queues->tx.cfg.num_desc = cpu_to_le32 ( VMXNET3_NUM_TX_DESC ); 442 queues->tx.cfg.num_comp = cpu_to_le32 ( VMXNET3_NUM_TX_COMP );
|
H A D | natsemi.h | 294 struct natsemi_ring tx; member in struct:natsemi_nic
|
H A D | realtek.h | 262 struct realtek_ring tx; member in struct:realtek_nic
|
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ |
H A D | ath_hw.c | 139 u32 cycles, busy, rx, tx; local 149 tx = REG_READ(ah, AR_TFCNT); 164 common->cc_ani.tx_frame += tx; 169 common->cc_survey.tx_frame += tx;
|
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/math/ |
H A D | m_norm_tmp.h | 61 GLfloat tx, ty, tz; local 64 tx = ux * m0 + uy * m1 + uz * m2; 69 GLdouble len = tx*tx + ty*ty + tz*tz; 72 out[i][0] = tx * scale; 90 GLfloat tx, ty, tz; local 93 tx = ux * m0 + uy * m1 + uz * m2; 99 out[i][0] = tx * len; 128 GLfloat tx, ty, tz; local 131 tx 155 GLfloat tx, ty, tz; local [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/ |
H A D | ath9k_xmit.c | 87 if (list_empty(&sc->tx.txbuf)) { 91 bf = list_first_entry(&sc->tx.txbuf, struct ath_buf, list); 99 list_add_tail(&bf->list, &sc->tx.txbuf); 124 * We mark tx descriptors to receive a DESC interrupt 125 * when a tx queue gets deep; otherwise waiting for the 130 * The only potential downside is if the tx queue backs 132 * due to a lack of tx descriptors. 144 * normally on parts with too few tx queues 148 if ((unsigned int)axq_qnum >= ARRAY_SIZE(sc->tx.txq)) { 150 axq_qnum, ARRAY_SIZE(sc->tx [all...] |
H A D | mac.h | 250 /* ATH9K_TXDESC_INTREQ forces a tx interrupt to be generated for 251 * the descriptor its marked on. We take a tx interrupt to reap 301 } tx; member in union:ar5416_desc::__anon15154 319 #define ds_ctl2 u.tx.ctl2 320 #define ds_ctl3 u.tx.ctl3 321 #define ds_ctl4 u.tx.ctl4 322 #define ds_ctl5 u.tx.ctl5 323 #define ds_ctl6 u.tx.ctl6 324 #define ds_ctl7 u.tx.ctl7 325 #define ds_ctl8 u.tx [all...] |
H A D | ath9k_init.c | 289 * are required to handle both tx+rx MIC keys. 302 sc->tx.txq_map[i] = ath_txq_setup(sc, ATH9K_TX_QUEUE_DATA, i); 303 sc->tx.txq_map[i]->mac80211_qnum = i; 421 ath_tx_cleanupq(sc, &sc->tx.txq[i]); 564 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Math/ |
H A D | e_rem_pio2.c | 79 double tx[3]; local 160 tx[i] = (double)((int32_t)(z)); 161 z = (z-tx[i])*two24; 163 tx[2] = z; 165 while(tx[nx-1]==zero) nx--; /* skip zero term */ 166 n = __kernel_rem_pio2(tx,y,e0,nx,2,two_over_pi);
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | tcpip.h | 95 int ( * tx ) ( struct io_buffer *iobuf, member in struct:tcpip_net_protocol
|
H A D | wpa.h | 239 u8 tx[WPA_TKIP_MIC_KEY_LEN]; member in struct:tkip_tk::__anon15755
|
/vbox/src/VBox/Devices/PC/ipxe/src/net/ |
H A D | tcpip.c | 72 return tcpip_net->tx ( iobuf, tcpip_protocol, st_src,
|
H A D | fcels.c | 268 if ( ( rc = els->handler->tx ( els ) ) != 0 ) { 443 .tx = fc_els_unknown_tx, 564 .tx = fc_els_flogi_tx, 715 .tx = fc_els_plogi_tx, 893 .tx = fc_els_logo_tx, 1060 if ( ( rc = els->handler->tx ( els ) ) != 0 ) 1202 .tx = fc_els_unknown_tx, 1335 .tx = fc_els_echo_tx,
|
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/phantom/ |
H A D | phantom_hw.h | 174 struct phantom_tx_cds_pb tx; member in union:phantom_cds_pb
|
/vbox/src/VBox/Main/src-server/solaris/ |
H A D | PerformanceSolaris.cpp | 75 virtual int getRawHostNetworkLoad(const char *name, uint64_t *rx, uint64_t *tx); 378 * WARNING! This function expects the previous values of rx and tx counter to 382 int CollectorSolaris::getRawHostNetworkLoad(const char *name, uint64_t *rx, uint64_t *tx) argument 439 *tx = wrapCorrection(kn->value.ul, *tx, "obytes"); 442 *tx = wrapDetection(kn->value.ull, *tx, "obytes64");
|
/vbox/src/VBox/Frontends/VBoxSDL/ |
H A D | VBoxSDLTest.cpp | 421 GLfloat tx = (GLfloat)((float)rect.w) / guTextureWidth; local 427 glTexCoord2f(tx, ty); glVertex2i(rect.x + rect.w, rect.y + rect.h); 428 glTexCoord2f(tx, 0.0); glVertex2i(rect.x + rect.w, rect.y );
|
/vbox/src/VBox/Devices/PC/ipxe/src/net/udp/ |
H A D | dhcp.c | 168 int ( * tx ) ( struct dhcp_session *dhcp, member in struct:dhcp_session_state 462 .tx = dhcp_discovery_tx, 599 .tx = dhcp_request_tx, 700 .tx = dhcp_proxy_tx, 847 .tx = dhcp_pxebs_tx, 1116 if ( ( rc = dhcp->state->tx ( dhcp, &dhcppkt, &peer ) ) != 0 ) {
|
/vbox/src/VBox/Main/src-server/linux/ |
H A D | PerformanceLinux.cpp | 57 virtual int getRawHostNetworkLoad(const char *name, uint64_t *rx, uint64_t *tx); 319 int CollectorLinux::getRawHostNetworkLoad(const char *pszFile, uint64_t *rx, uint64_t *tx) argument 341 *tx = cSize;
|