| /NextBSD/contrib/gdb/gdb/gdbserver/ |
| HD | mem-break.c | 222 int copy_offset, copy_len, buf_offset; in check_mem_read() local 239 buf_offset = start - mem_addr; in check_mem_read() 241 memcpy (buf + buf_offset, bp->old_data + copy_offset, copy_len); in check_mem_read() 255 int copy_offset, copy_len, buf_offset; in check_mem_write() local 272 buf_offset = start - mem_addr; in check_mem_write() 274 memcpy (bp->old_data + copy_offset, buf + buf_offset, copy_len); in check_mem_write() 276 memcpy (buf + buf_offset, breakpoint_data + copy_offset, copy_len); in check_mem_write()
|
| /NextBSD/sys/dev/usb/controller/ |
| HD | ehci.c | 1578 uint32_t buf_offset; in ehci_setup_standard_chain_sub() local 1589 buf_offset = 0; in ehci_setup_standard_chain_sub() 1692 usbd_get_page(temp->pc, buf_offset, &buf_res); in ehci_setup_standard_chain_sub() 1701 buf_offset += EHCI_PAGE_SIZE; in ehci_setup_standard_chain_sub() 1702 usbd_get_page(temp->pc, buf_offset, &buf_res); in ehci_setup_standard_chain_sub() 1718 buf_offset += average; in ehci_setup_standard_chain_sub() 1719 usbd_get_page(temp->pc, buf_offset - 1, &buf_res); in ehci_setup_standard_chain_sub() 2485 uint32_t buf_offset; in ehci_device_isoc_fs_enter() local 2509 buf_offset = (nframes - xfer->endpoint->isoc_next) & in ehci_device_isoc_fs_enter() 2513 (buf_offset < xfer->nframes)) { in ehci_device_isoc_fs_enter() [all …]
|
| HD | ohci.c | 1254 uint32_t buf_offset; in ohci_setup_standard_chain_sub() local 1261 buf_offset = 0; in ohci_setup_standard_chain_sub() 1338 usbd_get_page(temp->pc, buf_offset, &buf_res); in ohci_setup_standard_chain_sub() 1340 buf_offset += (average - 1); in ohci_setup_standard_chain_sub() 1342 usbd_get_page(temp->pc, buf_offset, &buf_res); in ohci_setup_standard_chain_sub() 1344 buf_offset++; in ohci_setup_standard_chain_sub() 1843 uint32_t buf_offset; in ohci_device_isoc_enter() local 1878 buf_offset = ((xfer->endpoint->isoc_next - nframes) & 0xFFFF); in ohci_device_isoc_enter() 1884 (usb_isoc_time_expand(&sc->sc_bus, nframes) + buf_offset + in ohci_device_isoc_enter() 1891 buf_offset = 0; in ohci_device_isoc_enter() [all …]
|
| HD | uhci.c | 132 uint32_t buf_offset; member 209 ml->buf_offset = 0; in uhci_mem_layout_init() 217 usbd_get_page(ml->buf_pc, ml->buf_offset, &ml->buf_res); in uhci_mem_layout_fixup() 252 usbd_copy_out(ml->buf_pc, ml->buf_offset, in uhci_mem_layout_fixup() 270 ml->buf_offset += td->len; in uhci_mem_layout_fixup() 1546 temp->ml.buf_offset = 0; in uhci_setup_standard_chain_sub()
|
| HD | xhci.c | 1695 uint32_t buf_offset; in xhci_setup_generic_chain_sub() local 1705 buf_offset = 0; in xhci_setup_generic_chain_sub() 1780 usbd_copy_out(temp->pc, temp->offset + buf_offset, in xhci_setup_generic_chain_sub() 1819 buf_offset, &buf_res); in xhci_setup_generic_chain_sub() 1903 buf_offset += buf_res.length; in xhci_setup_generic_chain_sub()
|
| /NextBSD/sys/dev/cfe/ |
| HD | cfe_api.c | 255 xiocb.plist.xiocb_buffer.buf_offset = 0; in cfe_getdevinfo() 405 xiocb.plist.xiocb_buffer.buf_offset = offset; in cfe_ioctl() 429 xiocb.plist.xiocb_buffer.buf_offset = 0; in cfe_open() 460 xiocb.plist.xiocb_buffer.buf_offset = offset; in cfe_readblk() 528 xiocb.plist.xiocb_buffer.buf_offset = offset; in cfe_writeblk()
|
| HD | cfe_api_int.h | 95 cfe_xuint_t buf_offset; /* offset on device (bytes) */ member
|
| /NextBSD/contrib/gdb/gdb/ |
| HD | mips-tdep.c | 292 const bfd_byte * out, int buf_offset) in mips_xfer_register() argument 315 reg_num, reg_offset, buf_offset, length); in mips_xfer_register() 321 fprintf_unfiltered (gdb_stdlog, "%02x", out[buf_offset + i]); in mips_xfer_register() 325 in + buf_offset); in mips_xfer_register() 328 out + buf_offset); in mips_xfer_register() 334 fprintf_unfiltered (gdb_stdlog, "%02x", in[buf_offset + i]); in mips_xfer_register() 2595 int buf_offset; member 2614 lo->buf_offset = TARGET_BYTE_ORDER == BFD_ENDIAN_BIG ? 4 : 0; in return_value_location() 2615 hi->buf_offset = TARGET_BYTE_ORDER == BFD_ENDIAN_BIG ? 0 : 4; in return_value_location() 2637 lo->buf_offset = 0; in return_value_location() [all …]
|
| /NextBSD/sys/dev/firewire/ |
| HD | fwohcivar.h | 57 int buf_offset; /* signed */ member
|
| HD | fwohci.c | 1460 dbch->buf_offset = 0; 2766 len -= dbch->buf_offset; 2767 ld += dbch->buf_offset; 2779 offset = dbch->buf_offset; 2786 rlen, dbch->buf_offset); 2787 if (dbch->buf_offset < 0) { 2825 dbch->buf_offset = - dbch->buf_offset; 2865 dbch->buf_offset = ld - (uint8_t *)db_tr->buf; 2908 dbch->buf_offset, len, 2929 dbch->buf_offset = 0; [all …]
|
| /NextBSD/cddl/contrib/opensolaris/cmd/zstreamdump/ |
| HD | zstreamdump.c | 175 int buf_offset = i + j; in print_block() local 180 if (buf_offset % DUMP_GROUPING == 0) { in print_block() 187 unsigned char hex_print = buf[buf_offset]; in print_block()
|
| /NextBSD/contrib/llvm/tools/lldb/source/Target/ |
| HD | Process.cpp | 2363 size_t buf_offset = intersect_addr - bp_addr; in RemoveBreakpointOpcodesFromBuffer() local 2364 … ::memcpy(buf + buf_offset, bp_site->GetSavedOpcodeBytes() + opcode_offset, intersect_size); in RemoveBreakpointOpcodesFromBuffer()
|
| /NextBSD/contrib/ofed/management/opensm/include/iba/ |
| HD | ib_types.h | 10377 uint32_t buf_offset; member
|