| /linux/arch/sh/kernel/ |
| H A D | ptrace.c | 13 const struct pt_regs_offset *roff; in regs_query_register_offset() local 14 for (roff = regoffset_table; roff->name != NULL; roff++) in regs_query_register_offset() 15 if (!strcmp(roff->name, name)) in regs_query_register_offset() 16 return roff->offset; in regs_query_register_offset() 29 const struct pt_regs_offset *roff; in regs_query_register_name() local 30 for (roff = regoffset_table; roff->name != NULL; roff++) in regs_query_register_name() 31 if (roff->offset == offset) in regs_query_register_name() 32 return roff->name; in regs_query_register_name()
|
| /linux/drivers/i2c/busses/ |
| H A D | i2c-thunderx-pcidrv.c | 167 i2c->roff.sw_twsi = 0x1000; in thunder_i2c_probe_pci() 168 i2c->roff.twsi_int = 0x1010; in thunder_i2c_probe_pci() 169 i2c->roff.sw_twsi_ext = 0x1018; in thunder_i2c_probe_pci() 170 i2c->roff.mode = 0x1038; in thunder_i2c_probe_pci() 171 i2c->roff.block_ctl = 0x1048; in thunder_i2c_probe_pci() 172 i2c->roff.block_sts = 0x1050; in thunder_i2c_probe_pci() 173 i2c->roff.block_fifo = 0x1058; in thunder_i2c_probe_pci()
|
| /linux/tools/perf/Documentation/ |
| H A D | asciidoc.conf | 30 ifndef::perf-asciidoc-no-roff[] 45 endif::perf-asciidoc-no-roff[] 47 ifdef::perf-asciidoc-no-roff[] 66 endif::perf-asciidoc-no-roff[]
|
| H A D | Makefile | 117 ASCIIDOC_EXTRA += -a perf-asciidoc-no-roff 123 ASCIIDOC_EXTRA += -a perf-asciidoc-no-roff
|
| /linux/tools/lib/perf/Documentation/ |
| H A D | asciidoc.conf | 30 ifndef::tep-asciidoc-no-roff[] 45 endif::tep-asciidoc-no-roff[] 47 ifdef::tep-asciidoc-no-roff[] 66 endif::tep-asciidoc-no-roff[]
|
| /linux/drivers/pinctrl/sunplus/ |
| H A D | sppctl.h | 56 .roff = o, \ 66 .roff = o, \ 152 const u8 roff; /* register offset */ member
|
| H A D | sppctl.c | 720 sppctl_gmx_set(pctl, f->roff, f->boff, f->blen, f->grps[g2fpm.g_idx].gval); in sppctl_set_mux() 957 sppctl_gmx_set(pctl, f->roff, f->boff, f->blen, 0); in sppctl_dt_node_to_map()
|
| /linux/arch/x86/kernel/ |
| H A D | ptrace.c | 127 const struct pt_regs_offset *roff; in regs_query_register_offset() local 128 for (roff = regoffset_table; roff->name != NULL; roff++) in regs_query_register_offset() 129 if (!strcmp(roff->name, name)) in regs_query_register_offset() 130 return roff->offset; in regs_query_register_offset() 143 const struct pt_regs_offset *roff; in regs_query_register_name() local 144 for (roff = regoffset_table; roff->name != NULL; roff++) in regs_query_register_name() 145 if (roff->offset == offset) in regs_query_register_name() 146 return roff->name; in regs_query_register_name()
|
| /linux/fs/ntfs3/ |
| H A D | inode.c | 45 u16 roff, rsize, names = 0, links = 0; in ntfs_read_mft() local 149 roff = attr->non_res ? 0 : le16_to_cpu(attr->res.data_off); in ntfs_read_mft() 173 asize < sizeof(struct ATTR_STD_INFO) + roff || in ntfs_read_mft() 180 std5 = Add2Ptr(attr, roff); in ntfs_read_mft() 192 if (asize >= sizeof(struct ATTR_STD_INFO5) + roff && in ntfs_read_mft() 210 if (attr->non_res || asize < SIZEOF_ATTRIBUTE_FILENAME + roff || in ntfs_read_mft() 215 fname = Add2Ptr(attr, roff); in ntfs_read_mft() 286 root = Add2Ptr(attr, roff); in ntfs_read_mft() 400 roff = le16_to_cpu(attr->nres.run_off); in ntfs_read_mft() 402 if (roff > asize) { in ntfs_read_mft() [all …]
|
| H A D | frecord.c | 501 u32 roff, rs = sbi->record_size; in ni_repack() 543 roff = le16_to_cpu(attr->nres.run_off); in ni_repack() 545 if (roff > le32_to_cpu(attr->size)) { in ni_repack() 551 Add2Ptr(attr, roff), in ni_repack() 552 le32_to_cpu(attr->size) - roff); in ni_repack() 1563 u16 roff; in ni_delete_all() local 1593 roff = le16_to_cpu(attr->nres.run_off); in ni_delete_all() 1595 if (roff > asize) { in ni_delete_all() 1602 Add2Ptr(attr, roff), asize - roff); in ni_delete_all() 2109 u32 asize, roff; in ni_decompress_file() local [all …]
|
| H A D | fslog.c | 3144 u16 roff = le16_to_cpu(lrh->record_off); in do_action() local 3204 attr = Add2Ptr(rec, roff); in do_action() 3236 attr = Add2Ptr(rec, roff); in do_action() 3268 bytes += roff; in do_action() 3292 if (roff + dlen > record_size) in do_action() 3295 memcpy(Add2Ptr(rec, roff), data, dlen); in do_action() 3307 if (!check_if_attr(rec, lrh) || roff + dlen > record_size) in do_action() 3311 rec->used = cpu_to_le32(ALIGN(roff + dlen, 8)); in do_action() 3328 memmove(Add2Ptr(attr, asize), attr, used - roff); in do_action() 3357 memmove(attr, Add2Ptr(attr, asize), used - asize - roff); in do_action() [all …]
|
| H A D | super.c | 1466 u16 roff; in ntfs_fill_super() local 1476 roff = le16_to_cpu(a->nres.run_off); in ntfs_fill_super() 1480 Add2Ptr(a, roff), in ntfs_fill_super() 1481 le32_to_cpu(a->size) - roff); in ntfs_fill_super()
|
| /linux/arch/loongarch/kernel/ |
| H A D | ptrace.c | 843 const struct pt_regs_offset *roff; in regs_query_register_offset() local 845 for (roff = regoffset_table; roff->name != NULL; roff++) in regs_query_register_offset() 846 if (!strcmp(roff->name, name)) in regs_query_register_offset() 847 return roff->offset; in regs_query_register_offset()
|
| /linux/include/uapi/linux/ |
| H A D | scif_ioctl.h | 181 __s64 roff; member
|
| /linux/fs/xfs/ |
| H A D | xfs_trace.h | 5579 __field(xfs_fileoff_t, roff) 5596 __entry->roff = right->br_startoff; 5607 __entry->roff, __entry->rstart, __entry->rcount,
|