/src/sys/arch/playstation2/dev/ |
if_smap.c | 96 u_int32_t *tx_buf; member in struct:smap_softc 201 sc->tx_buf = (u_int32_t *)ROUND16((vaddr_t)txbuf); 488 p = (u_int8_t *)sc->tx_buf; 507 r = sc->tx_buf;
|
/src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
amdgpu_atombios_dp.c | 137 u8 tx_buf[20]; local in function:amdgpu_atombios_dp_aux_transfer 144 tx_buf[0] = msg->address & 0xff; 145 tx_buf[1] = msg->address >> 8; 146 tx_buf[2] = (msg->request << 4) | 148 tx_buf[3] = msg->size ? (msg->size - 1) : 0; 154 * table needs the info in tx_buf[3]. 158 tx_buf[3] |= BARE_ADDRESS_SIZE << 4; 160 tx_buf[3] |= tx_size << 4; 161 memcpy(tx_buf + HEADER_SIZE, msg->buffer, msg->size); 163 tx_buf, tx_size, NULL, 0, delay, &ack) [all...] |
/src/sys/external/bsd/drm2/dist/drm/radeon/ |
radeon_atombios_dp.c | 171 u8 tx_buf[20]; local in function:radeon_dp_aux_transfer_atom 178 tx_buf[0] = msg->address & 0xff; 179 tx_buf[1] = (msg->address >> 8) & 0xff; 180 tx_buf[2] = (msg->request << 4) | 182 tx_buf[3] = msg->size ? (msg->size - 1) : 0; 196 * table needs the info in tx_buf[3]. 200 tx_buf[3] |= BARE_ADDRESS_SIZE << 4; 202 tx_buf[3] |= tx_size << 4; 203 memcpy(tx_buf + HEADER_SIZE, msg->buffer, msg->size); 206 tx_buf, tx_size, NULL, 0, delay, &ack) [all...] |
/src/sys/dev/pci/ |
if_ena.c | 3416 struct ena_tx_buffer *tx_buf; local in function:check_missing_comp_in_queue 3423 tx_buf = &tx_ring->tx_buffer_info[i]; 3425 if (bintime_isset(&tx_buf->timestamp) == 0) 3429 bintime_sub(&time, &tx_buf->timestamp); 3434 if (!tx_buf->print_once) 3439 tx_buf->print_once = true;
|