Searched refs:byte_off (Results 1 - 4 of 4) sorted by relevance

/linux-master/tools/power/acpi/tools/ec/
H A Dec_access.c129 int byte_off, bytes_read; local
140 for (byte_off = 0; byte_off < bytes_read; byte_off++) {
141 if ((byte_off % 16) == 0)
142 printf("\n%.2X: ", byte_off);
143 printf(" %.2x ", (uint8_t)buf[byte_off]);
163 for (byte_off = 0; byte_off < bytes_read; byte_off
[all...]
/linux-master/drivers/infiniband/hw/irdma/
H A Duk.c239 u32 total_size = 0, byte_off; local
284 for (byte_off = 32; i < op_info->num_lo_sges; i++) {
285 qp->wqe_ops.iw_set_fragment(wqe, byte_off,
288 byte_off += 16;
294 qp->wqe_ops.iw_set_fragment(wqe, byte_off, NULL,
332 u32 i, byte_off, total_size = 0; local
364 for (i = 1, byte_off = 32; i < op_info->num_lo_sges; ++i) {
365 qp->wqe_ops.iw_set_fragment(wqe, byte_off,
368 byte_off += 16;
374 qp->wqe_ops.iw_set_fragment(wqe, byte_off, NUL
413 u32 i, wqe_idx, total_size = 0, byte_off; local
844 u32 wqe_idx, i, byte_off; local
[all...]
/linux-master/drivers/mailbox/
H A Dmailbox-mpfs.c128 u8 byte_off = ALIGN_DOWN(msg->cmd_data_size, 4); local
129 u8 *byte_buf = msg->cmd_data + byte_off;
/linux-master/tools/lib/bpf/
H A Drelo_core.c89 case BPF_CORE_FIELD_BYTE_OFFSET: return "byte_off";
686 __u32 byte_off, byte_sz, bit_off, bit_sz, field_type_id; local
738 byte_off = bit_off / 8 / byte_sz * byte_sz;
740 while (bit_off + bit_sz - byte_off * 8 > byte_sz * 8) {
748 byte_off = bit_off / 8 / byte_sz * byte_sz;
755 byte_off = spec->bit_offset / 8;
768 *val = byte_off;
785 *val = 64 - (bit_off + bit_sz - byte_off * 8);
787 *val = (8 - byte_sz) * 8 + (bit_off - byte_off * 8);

Completed in 156 milliseconds