/Linux-v6.1/drivers/scsi/ |
D | scsi_logging.c | 41 size_t off = 0; in sdev_format_header() local 44 off += scnprintf(logbuf + off, logbuf_len - off, in sdev_format_header() 47 if (WARN_ON(off >= logbuf_len)) in sdev_format_header() 48 return off; in sdev_format_header() 51 off += scnprintf(logbuf + off, logbuf_len - off, in sdev_format_header() 53 return off; in sdev_format_header() 61 size_t off = 0, logbuf_len; in sdev_prefix_printk() local 71 off += scnprintf(logbuf + off, logbuf_len - off, in sdev_prefix_printk() 73 if (!WARN_ON(off >= logbuf_len)) { in sdev_prefix_printk() 75 off += vscnprintf(logbuf + off, logbuf_len - off, fmt, args); in sdev_prefix_printk() [all …]
|
/Linux-v6.1/arch/mips/mm/ |
D | page.c | 103 pg_addiu(u32 **buf, unsigned int reg1, unsigned int reg2, unsigned int off) in pg_addiu() argument 108 if (off > 0x7fff) { in pg_addiu() 109 uasm_i_lui(buf, T9, uasm_rel_hi(off)); in pg_addiu() 110 uasm_i_addiu(buf, T9, T9, uasm_rel_lo(off)); in pg_addiu() 112 uasm_i_addiu(buf, T9, ZERO, off); in pg_addiu() 115 if (off > 0x7fff) { in pg_addiu() 116 uasm_i_lui(buf, T9, uasm_rel_hi(off)); in pg_addiu() 117 uasm_i_addiu(buf, T9, T9, uasm_rel_lo(off)); in pg_addiu() 120 UASM_i_ADDIU(buf, reg1, reg2, off); in pg_addiu() 233 static void build_clear_store(u32 **buf, int off) in build_clear_store() argument [all …]
|
/Linux-v6.1/arch/ia64/kernel/ |
D | entry.h | 28 #define PT_REGS_SAVES(off) \ argument 30 .fframe IA64_PT_REGS_SIZE+16+(off); \ 31 .spillsp rp, PT(CR_IIP)+16+(off); \ 32 .spillsp ar.pfs, PT(CR_IFS)+16+(off); \ 33 .spillsp ar.unat, PT(AR_UNAT)+16+(off); \ 34 .spillsp ar.fpsr, PT(AR_FPSR)+16+(off); \ 35 .spillsp pr, PT(PR)+16+(off); 37 #define PT_REGS_UNWIND_INFO(off) \ argument 39 PT_REGS_SAVES(off); \ 42 #define SWITCH_STACK_SAVES(off) \ argument [all …]
|
/Linux-v6.1/drivers/ntb/hw/intel/ |
D | ntb_hw_gen3.c | 262 ssize_t ret, off; in ndev_ntb3_debugfs_read() local 274 off = 0; in ndev_ntb3_debugfs_read() 276 off += scnprintf(buf + off, buf_size - off, in ndev_ntb3_debugfs_read() 279 off += scnprintf(buf + off, buf_size - off, in ndev_ntb3_debugfs_read() 283 off += scnprintf(buf + off, buf_size - off, in ndev_ntb3_debugfs_read() 285 off += scnprintf(buf + off, buf_size - off, in ndev_ntb3_debugfs_read() 289 off += scnprintf(buf + off, buf_size - off, in ndev_ntb3_debugfs_read() 292 off += scnprintf(buf + off, buf_size - off, in ndev_ntb3_debugfs_read() 294 off += scnprintf(buf + off, buf_size - off, in ndev_ntb3_debugfs_read() 297 off += scnprintf(buf + off, buf_size - off, in ndev_ntb3_debugfs_read() [all …]
|
D | ntb_hw_gen4.c | 226 ssize_t ret, off; in ndev_ntb4_debugfs_read() local 238 off = 0; in ndev_ntb4_debugfs_read() 240 off += scnprintf(buf + off, buf_size - off, in ndev_ntb4_debugfs_read() 243 off += scnprintf(buf + off, buf_size - off, in ndev_ntb4_debugfs_read() 247 off += scnprintf(buf + off, buf_size - off, in ndev_ntb4_debugfs_read() 249 off += scnprintf(buf + off, buf_size - off, in ndev_ntb4_debugfs_read() 253 off += scnprintf(buf + off, buf_size - off, in ndev_ntb4_debugfs_read() 256 off += scnprintf(buf + off, buf_size - off, in ndev_ntb4_debugfs_read() 258 off += scnprintf(buf + off, buf_size - off, in ndev_ntb4_debugfs_read() 261 off += scnprintf(buf + off, buf_size - off, in ndev_ntb4_debugfs_read() [all …]
|
D | ntb_hw_gen1.c | 499 ssize_t ret, off; in ndev_ntb_debugfs_read() local 512 off = 0; in ndev_ntb_debugfs_read() 514 off += scnprintf(buf + off, buf_size - off, in ndev_ntb_debugfs_read() 517 off += scnprintf(buf + off, buf_size - off, in ndev_ntb_debugfs_read() 522 off += scnprintf(buf + off, buf_size - off, in ndev_ntb_debugfs_read() 524 off += scnprintf(buf + off, buf_size - off, in ndev_ntb_debugfs_read() 528 off += scnprintf(buf + off, buf_size - off, in ndev_ntb_debugfs_read() 532 off += scnprintf(buf + off, buf_size - off, in ndev_ntb_debugfs_read() 534 off += scnprintf(buf + off, buf_size - off, in ndev_ntb_debugfs_read() 538 off += scnprintf(buf + off, buf_size - off, in ndev_ntb_debugfs_read() [all …]
|
/Linux-v6.1/drivers/mtd/ |
D | mtdpstore.c | 27 static int mtdpstore_block_isbad(struct mtdpstore_context *cxt, loff_t off) in mtdpstore_block_isbad() argument 33 off = ALIGN_DOWN(off, mtd->erasesize); in mtdpstore_block_isbad() 34 blknum = div_u64(off, mtd->erasesize); in mtdpstore_block_isbad() 38 ret = mtd_block_isbad(mtd, off); in mtdpstore_block_isbad() 50 loff_t off) in mtdpstore_panic_block_isbad() argument 55 off = ALIGN_DOWN(off, mtd->erasesize); in mtdpstore_panic_block_isbad() 56 blknum = div_u64(off, mtd->erasesize); in mtdpstore_panic_block_isbad() 61 loff_t off) in mtdpstore_mark_used() argument 64 u64 zonenum = div_u64(off, cxt->info.kmsg_size); in mtdpstore_mark_used() 71 loff_t off) in mtdpstore_mark_unused() argument [all …]
|
/Linux-v6.1/arch/powerpc/boot/ |
D | addnote.c | 64 #define GET_16BE(off) ((buf[off] << 8) + (buf[(off)+1])) argument 65 #define GET_32BE(off) ((GET_16BE(off) << 16U) + GET_16BE((off)+2U)) argument 66 #define GET_64BE(off) ((((unsigned long long)GET_32BE(off)) << 32ULL) + \ argument 67 ((unsigned long long)GET_32BE((off)+4ULL))) 68 #define PUT_16BE(off, v)(buf[off] = ((v) >> 8) & 0xff, \ argument 69 buf[(off) + 1] = (v) & 0xff) 70 #define PUT_32BE(off, v)(PUT_16BE((off), (v) >> 16L), PUT_16BE((off) + 2, (v))) argument 71 #define PUT_64BE(off, v)((PUT_32BE((off), (v) >> 32L), \ argument 72 PUT_32BE((off) + 4, (v)))) 74 #define GET_16LE(off) ((buf[off]) + (buf[(off)+1] << 8)) argument [all …]
|
/Linux-v6.1/drivers/rapidio/ |
D | rio-sysfs.c | 118 char *buf, loff_t off, size_t count) in rio_read_config() argument 122 loff_t init_off = off; in rio_read_config() 129 if (off >= size) in rio_read_config() 131 if (off + count > size) { in rio_read_config() 132 size -= off; in rio_read_config() 138 if ((off & 1) && size) { in rio_read_config() 140 rio_read_config_8(dev, off, &val); in rio_read_config() 141 data[off - init_off] = val; in rio_read_config() 142 off++; in rio_read_config() 146 if ((off & 3) && size > 2) { in rio_read_config() [all …]
|
/Linux-v6.1/samples/bpf/ |
D | bpf_insn.h | 15 .off = 0, \ 23 .off = 0, \ 33 .off = 0, \ 41 .off = 0, \ 51 .off = 0, \ 59 .off = 0, \ 69 .off = 0, \ 77 .off = 0, \ 89 .off = 0, \ 95 .off = 0, \ [all …]
|
/Linux-v6.1/tools/include/linux/ |
D | filter.h | 39 .off = 0, \ 47 .off = 0, \ 57 .off = 0, \ 65 .off = 0, \ 75 .off = 0, \ 85 .off = 0, \ 93 .off = 0, \ 103 .off = 0, \ 111 .off = 0, \ 121 .off = 0, \ [all …]
|
/Linux-v6.1/drivers/power/reset/ |
D | Kconfig | 3 bool "Board level reset or power off" 8 Say Y here to enable board reset and power off 13 bool "ams AS3722 power-off driver" 16 This driver supports turning off board via a ams AS3722 power-off. 43 tristate "Actions Semi ATC260x PMIC power-off driver" 46 This driver provides power-off and restart support for a system 79 bool "Cortina Gemini power-off driver" 84 This driver supports turning off the Cortina Gemini SoC. 88 bool "GPIO power-off driver" 91 This driver supports turning off your board via a GPIO line. [all …]
|
/Linux-v6.1/tools/testing/selftests/net/mptcp/ |
D | pm_nl_ctl.c | 55 int off = 0; in init_genl_req() local 60 off += NLMSG_ALIGN(sizeof(*nh)); in init_genl_req() 62 gh = (void *)(data + off); in init_genl_req() 65 off += NLMSG_ALIGN(sizeof(*gh)); in init_genl_req() 66 return off; in init_genl_req() 73 uint32_t off; in nl_error() local 88 memcpy(&off, RTA_DATA(attrs), 4); in nl_error() 89 fprintf(stderr, "netlink err off %d\n", in nl_error() 90 (int)off); in nl_error() 311 int off = 0; in resolve_mptcp_pm_netlink() local [all …]
|
/Linux-v6.1/drivers/isdn/hardware/mISDN/ |
D | iohelper.h | 26 static u8 Read##name##_IO(void *p, u8 off) { \ 28 return inb(hw->ap.port + off); \ 30 static void Write##name##_IO(void *p, u8 off, u8 val) { \ 32 outb(val, hw->ap.port + off); \ 34 static void ReadFiFo##name##_IO(void *p, u8 off, u8 *dp, int size) { \ 36 insb(hw->ap.port + off, dp, size); \ 38 static void WriteFiFo##name##_IO(void *p, u8 off, u8 *dp, int size) { \ 40 outsb(hw->ap.port + off, dp, size); \ 44 static u8 Read##name##_IND(void *p, u8 off) { \ 46 outb(off, hw->ap.ale); \ [all …]
|
/Linux-v6.1/include/linux/isdn/ |
D | capiutil.h | 19 #define CAPIMSG_U8(m, off) (m[off]) argument 20 #define CAPIMSG_U16(m, off) (m[off]|(m[(off)+1]<<8)) argument 21 #define CAPIMSG_U32(m, off) (m[off]|(m[(off)+1]<<8)|(m[(off)+2]<<16)|(m[(off)+3]<<24)) argument 33 static inline void capimsg_setu8(void *m, int off, __u8 val) in capimsg_setu8() argument 35 ((__u8 *)m)[off] = val; in capimsg_setu8() 38 static inline void capimsg_setu16(void *m, int off, __u16 val) in capimsg_setu16() argument 40 ((__u8 *)m)[off] = val & 0xff; in capimsg_setu16() 41 ((__u8 *)m)[off+1] = (val >> 8) & 0xff; in capimsg_setu16() 44 static inline void capimsg_setu32(void *m, int off, __u32 val) in capimsg_setu32() argument 46 ((__u8 *)m)[off] = val & 0xff; in capimsg_setu32() [all …]
|
/Linux-v6.1/arch/arm/mach-s3c/ |
D | gpio-cfg-helpers.h | 24 unsigned int off, unsigned int config) in samsung_gpio_do_setcfg() argument 26 return (chip->config->set_config)(chip, off, config); in samsung_gpio_do_setcfg() 30 unsigned int off) in samsung_gpio_do_getcfg() argument 32 return (chip->config->get_config)(chip, off); in samsung_gpio_do_getcfg() 36 unsigned int off, samsung_gpio_pull_t pull) in samsung_gpio_do_setpull() argument 38 return (chip->config->set_pull)(chip, off, pull); in samsung_gpio_do_setpull() 42 unsigned int off) in samsung_gpio_do_getpull() argument 44 return chip->config->get_pull(chip, off); in samsung_gpio_do_getpull() 58 * @off: The offset for the GPIO being configured. 65 unsigned int off, samsung_gpio_pull_t pull); [all …]
|
/Linux-v6.1/drivers/acpi/ |
D | ec_sys.c | 31 size_t count, loff_t *off) in acpi_ec_read_io() argument 37 loff_t init_off = *off; in acpi_ec_read_io() 40 if (*off >= size) in acpi_ec_read_io() 42 if (*off + count >= size) { in acpi_ec_read_io() 43 size -= *off; in acpi_ec_read_io() 50 err = ec_read(*off, &byte_read); in acpi_ec_read_io() 53 if (put_user(byte_read, buf + *off - init_off)) { in acpi_ec_read_io() 54 if (*off - init_off) in acpi_ec_read_io() 55 return *off - init_off; /* partial read */ in acpi_ec_read_io() 58 *off += 1; in acpi_ec_read_io() [all …]
|
/Linux-v6.1/arch/mips/net/ |
D | bpf_jit_comp64.c | 330 /* Load operation: dst = *(size*)(src + off) */ 331 static void emit_ldx(struct jit_context *ctx, u8 dst, u8 src, s16 off, u8 size) in emit_ldx() argument 336 emit(ctx, lbu, dst, off, src); in emit_ldx() 340 emit(ctx, lhu, dst, off, src); in emit_ldx() 344 emit(ctx, lwu, dst, off, src); in emit_ldx() 348 emit(ctx, ld, dst, off, src); in emit_ldx() 354 /* Store operation: *(size *)(dst + off) = src */ 355 static void emit_stx(struct jit_context *ctx, u8 dst, u8 src, s16 off, u8 size) in emit_stx() argument 360 emit(ctx, sb, src, off, dst); in emit_stx() 364 emit(ctx, sh, src, off, dst); in emit_stx() [all …]
|
/Linux-v6.1/tools/testing/selftests/bpf/verifier/ |
D | wide_access.c | 1 #define BPF_SOCK_ADDR_STORE(field, off, res, err, flgs) \ argument 3 "wide store to bpf_sock_addr." #field "[" #off "]", \ 7 offsetof(struct bpf_sock_addr, field[off])), \ 21 "invalid bpf_context access off=12 size=8", 26 "invalid bpf_context access off=20 size=8", 31 "invalid bpf_context access off=44 size=8", 36 "invalid bpf_context access off=52 size=8", 39 "invalid bpf_context access off=56 size=8", 0), 43 #define BPF_SOCK_ADDR_LOAD(field, off, res, err, flgs) \ argument 45 "wide load from bpf_sock_addr." #field "[" #off "]", \ [all …]
|
/Linux-v6.1/tools/perf/tests/shell/ |
D | record_offcpu.sh | 23 echo "Checking off-cpu privilege" 27 echo "off-cpu test [Skipped permission]" 31 if perf record --off-cpu -o /dev/null --quiet true 2>&1 | grep BUILD_BPF_SKEL 33 echo "off-cpu test [Skipped missing BPF support]" 40 echo "Basic off-cpu test" 42 if ! perf record --off-cpu -e dummy -o ${perfdata} sleep 1 2> /dev/null 44 echo "Basic off-cpu test [Failed record]" 50 echo "Basic off-cpu test [Failed no event]" 56 echo "Basic off-cpu test [Failed missing output]" 60 echo "Basic off-cpu test [Success]" [all …]
|
/Linux-v6.1/drivers/net/ethernet/netronome/nfp/nfpcore/ |
D | nfp_rtsym.c | 227 u8 action, u8 token, u64 off, u32 *cpp_id, u64 *addr) in nfp_rtsym_to_dest() argument 235 *addr = sym->addr + off; in nfp_rtsym_to_dest() 258 u8 action, u8 token, u64 off, void *buf, size_t len) in __nfp_rtsym_read() argument 265 if (off > sym_size) { in __nfp_rtsym_read() 266 nfp_err(cpp, "rtsym '%s': read out of bounds: off: %lld + len: %zd > size: %lld\n", in __nfp_rtsym_read() 267 sym->name, off, len, sym_size); in __nfp_rtsym_read() 270 len = min_t(size_t, len, sym_size - off); in __nfp_rtsym_read() 276 memcpy(buf, &tmp[off], len); in __nfp_rtsym_read() 281 err = nfp_rtsym_to_dest(cpp, sym, action, token, off, &cpp_id, &addr); in __nfp_rtsym_read() 288 int nfp_rtsym_read(struct nfp_cpp *cpp, const struct nfp_rtsym *sym, u64 off, in nfp_rtsym_read() argument [all …]
|
/Linux-v6.1/Documentation/networking/ |
D | arcnet-hardware.rst | 383 OFF OFF Power off 384 OFF Short flashes Cabling problems (broken cable or not 386 OFF (short) ON Card init 390 ON OFF Never happens (maybe when wrong ID) 634 Setting one of the switches to Off/Open means "1", On/Closed means "0". 752 blink | reconfiguration off | no data transfer; 753 off | defective board or | incorrect memory or 842 Setting one of the switches to Off/Open means "1", On/Closed means "0". 979 blink | reconfiguration off | no data transfer; 980 off | defective board or | incorrect memory or [all …]
|
/Linux-v6.1/scripts/gdb/linux/ |
D | dmesg.py | 41 off = printk_ringbuffer_type.get_type()['desc_ring'].bitpos // 8 42 addr = prb_addr + off 47 off = prb_desc_ring_type.get_type()['count_bits'].bitpos // 8 48 desc_ring_count = 1 << utils.read_u32(desc_ring, off) 50 off = prb_desc_ring_type.get_type()['descs'].bitpos // 8 51 desc_addr = utils.read_ulong(desc_ring, off) 55 off = prb_desc_ring_type.get_type()['infos'].bitpos // 8 56 info_addr = utils.read_ulong(desc_ring, off) 59 off = printk_ringbuffer_type.get_type()['text_data_ring'].bitpos // 8 60 addr = prb_addr + off [all …]
|
/Linux-v6.1/drivers/net/dsa/ |
D | bcm_sf2.h | 128 static inline u32 bcm_sf2_mangle_addr(struct bcm_sf2_priv *priv, u32 off) in bcm_sf2_mangle_addr() argument 130 return off << priv->core_reg_align; in bcm_sf2_mangle_addr() 134 static inline u32 name##_readl(struct bcm_sf2_priv *priv, u32 off) \ 136 return readl_relaxed(priv->name + off); \ 139 u32 val, u32 off) \ 141 writel_relaxed(val, priv->name + off); \ 150 static inline u64 name##_readq(struct bcm_sf2_priv *priv, u32 off) \ 154 dir = name##_readl(priv, off); \ 160 u32 off) \ 164 name##_writel(priv, lower_32_bits(val), off); \ [all …]
|
/Linux-v6.1/arch/arm/boot/dts/ |
D | am572x-idk-common.dtsi | 56 default-state = "off"; 63 default-state = "off"; 69 default-state = "off"; 76 default-state = "off"; 83 default-state = "off"; 89 default-state = "off"; 100 default-state = "off"; 106 default-state = "off"; 112 default-state = "off"; 118 default-state = "off"; [all …]
|