Lines Matching refs:offset

953 csx_Put8(acc_handle_t handle, uint32_t offset, uint8_t value)
957 ddi_put8(handle, (uint8_t *)(hp->ah_addr + offset), value);
961 csx_Put16(acc_handle_t handle, uint32_t offset, uint16_t value)
965 ddi_put16(handle, (uint16_t *)(hp->ah_addr + offset), value);
969 csx_Put32(acc_handle_t handle, uint32_t offset, uint32_t value)
973 ddi_put32(handle, (uint32_t *)(hp->ah_addr + offset), value);
977 csx_Put64(acc_handle_t handle, uint32_t offset, uint64_t value)
981 ddi_put64(handle, (uint64_t *)(hp->ah_addr + offset), value);
985 csx_Get8(acc_handle_t handle, uint32_t offset)
989 return (ddi_get8(handle, (uint8_t *)(hp->ah_addr + offset)));
993 csx_Get16(acc_handle_t handle, uint32_t offset)
997 return (ddi_get16(handle, (uint16_t *)(hp->ah_addr + offset)));
1001 csx_Get32(acc_handle_t handle, uint32_t offset)
1005 return (ddi_get32(handle, (uint32_t *)(hp->ah_addr + offset)));
1009 csx_Get64(acc_handle_t handle, uint32_t offset)
1013 return (ddi_get64(handle, (uint64_t *)(hp->ah_addr + offset)));
1017 csx_RepPut8(acc_handle_t handle, uint8_t *hostaddr, uint32_t offset,
1022 ddi_rep_put8(handle, hostaddr, (uint8_t *)(hp->ah_addr + offset),
1027 csx_RepPut16(acc_handle_t handle, uint16_t *hostaddr, uint32_t offset,
1032 ddi_rep_put16(handle, hostaddr, (uint16_t *)(hp->ah_addr + offset),
1037 csx_RepPut32(acc_handle_t handle, uint32_t *hostaddr, uint32_t offset,
1042 ddi_rep_put32(handle, hostaddr, (uint32_t *)(hp->ah_addr + offset),
1047 csx_RepPut64(acc_handle_t handle, uint64_t *hostaddr, uint32_t offset,
1052 ddi_rep_put64(handle, hostaddr, (uint64_t *)(hp->ah_addr + offset),
1057 csx_RepGet8(acc_handle_t handle, uint8_t *hostaddr, uint32_t offset,
1062 ddi_rep_get8(handle, hostaddr, (uint8_t *)(hp->ah_addr + offset),
1067 csx_RepGet16(acc_handle_t handle, uint16_t *hostaddr, uint32_t offset,
1072 ddi_rep_get16(handle, hostaddr, (uint16_t *)(hp->ah_addr + offset),
1077 csx_RepGet32(acc_handle_t handle, uint32_t *hostaddr, uint32_t offset,
1082 ddi_rep_get32(handle, hostaddr, (uint32_t *)(hp->ah_addr + offset),
1087 csx_RepGet64(acc_handle_t handle, uint64_t *hostaddr, uint32_t offset,
1092 ddi_rep_get64(handle, hostaddr, (uint64_t *)(hp->ah_addr + offset),
1189 csx_GetHandleOffset(acc_handle_t handle, uint32_t *offset)
1198 *offset = hp->ah_offset;
1204 csx_SetHandleOffset(acc_handle_t handle, uint32_t offset)
1213 hp->ah_offset = offset;