/linux-6.3-rc2/drivers/net/ethernet/sfc/ |
A D | mcdi.h | 200 #define _MCDI_PTR(_buf, _offset) \ argument 201 ((u8 *)(_buf) + (_offset)) 202 #define MCDI_PTR(_buf, _field) \ argument 208 #define MCDI_STRUCT_PTR(_buf, _field) \ argument 209 _MCDI_PTR(_buf, _field ## _OFST) 212 #define _MCDI_DWORD(_buf, _field) \ argument 221 #define MCDI_BYTE(_buf, _field) \ argument 223 *MCDI_PTR(_buf, _field)) 229 #define MCDI_WORD(_buf, _field) \ argument 245 #define MCDI_DWORD(_buf, _field) \ argument [all …]
|
/linux-6.3-rc2/drivers/net/ethernet/sfc/siena/ |
A D | mcdi.h | 202 #define _MCDI_PTR(_buf, _offset) \ argument 203 ((u8 *)(_buf) + (_offset)) 204 #define MCDI_PTR(_buf, _field) \ argument 205 _MCDI_PTR(_buf, MC_CMD_ ## _field ## _OFST) 208 #define _MCDI_DWORD(_buf, _field) \ argument 211 #define MCDI_BYTE(_buf, _field) \ argument 213 *MCDI_PTR(_buf, _field)) 214 #define MCDI_WORD(_buf, _field) \ argument 217 #define MCDI_SET_DWORD(_buf, _field, _value) \ argument 219 #define MCDI_DWORD(_buf, _field) \ argument [all …]
|
/linux-6.3-rc2/fs/adfs/ |
A D | dir_f.c | 47 ({ int _buf = idx >> blocksize_bits; \ 48 int _off = idx - (_buf << blocksize_bits);\ 49 *(u8 *)(bh[_buf]->b_data + _off); \ 53 ({ int _buf = idx >> blocksize_bits; \ 54 int _off = idx - (_buf << blocksize_bits);\ 55 *(__le32 *)(bh[_buf]->b_data + _off); \ 59 ({ int _buf = _idx >> blocksize_bits; \ 60 int _off = _idx - (_buf << blocksize_bits);\ 61 (void *)(_bh[_buf]->b_data + _off); \
|
/linux-6.3-rc2/sound/drivers/opl4/ |
A D | opl4_proc.c | 40 struct file *file, char __user *_buf, in snd_opl4_mem_proc_read() argument 50 if (copy_to_user(_buf, buf, count)) { in snd_opl4_mem_proc_read() 61 const char __user *_buf, in snd_opl4_mem_proc_write() argument 70 if (copy_from_user(buf, _buf, count)) { in snd_opl4_mem_proc_write()
|
/linux-6.3-rc2/tools/power/acpi/tools/acpidbg/ |
A D | acpidbg.c | 55 #define ACPI_AML_DO(_fd, _op, _buf, _ret) \ argument 57 _ret = acpi_aml_##_op(_fd, &acpi_aml_##_buf##_crc); \ 60 "%s %s pipe closed.\n", #_buf, #_op); \ 64 #define ACPI_AML_BATCH_DO(_fd, _op, _buf, _ret) \ argument 66 _ret = acpi_aml_##_op##_batch_##_buf(_fd, \ 67 &acpi_aml_##_buf##_crc); \
|
/linux-6.3-rc2/drivers/net/wireless/ath/ath9k/ |
A D | wmi.h | 201 #define WMI_CMD_BUF(_wmi_cmd, _buf) \ argument 204 (u8 *) _buf, sizeof(*_buf), \
|
/linux-6.3-rc2/sound/core/ |
A D | control_led.c | 416 char _buf[16]; in mode_store() local 417 size_t l = min(count, sizeof(_buf) - 1); in mode_store() 420 memcpy(_buf, buf, l); in mode_store() 421 _buf[l] = '\0'; in mode_store() 422 if (strstr(_buf, "mute")) in mode_store() 424 else if (strstr(_buf, "route")) in mode_store() 426 else if (strncmp(_buf, "off", 3) == 0 || strncmp(_buf, "0", 1) == 0) in mode_store() 428 else if (strncmp(_buf, "on", 2) == 0 || strncmp(_buf, "1", 1) == 0) in mode_store()
|
/linux-6.3-rc2/tools/testing/selftests/net/ |
A D | csum.c | 712 static char _buf[MAX_HEADER_LEN + MAX_PAYLOAD_LEN]; in recv_packet() local 715 struct pkt *buf = (void *)_buf; in recv_packet() 720 iov.iov_base = _buf; in recv_packet() 721 iov.iov_len = sizeof(_buf); in recv_packet() 895 static char _buf[MAX_HEADER_LEN + MAX_PAYLOAD_LEN]; in do_tx() local 899 buf = build_packet(_buf, sizeof(_buf), &len); in do_tx() 917 buf = build_packet(_buf, sizeof(_buf), &len); in do_tx()
|
/linux-6.3-rc2/tools/testing/selftests/powerpc/signal/ |
A D | sig_sc_double_restart.c | 53 register void *_buf asm("r4") = buf; in raw_read() 66 : "+r"(_fd), "+r"(nr), "+r"(_buf), "+r"(_count) in raw_read()
|
/linux-6.3-rc2/arch/loongarch/kernel/ |
A D | alternative.c | 34 union loongarch_instruction *_buf = buf; \ 41 printk(KERN_CONT "<%08x> ", _buf[_j].word); \ 42 printk(KERN_CONT "<%08x>\n", _buf[_j].word); \
|
/linux-6.3-rc2/tools/perf/tests/workloads/ |
A D | datasym.c | 4 typedef struct _buf { struct
|
/linux-6.3-rc2/drivers/iio/test/ |
A D | iio-test-format.c | 10 #define IIO_TEST_FORMAT_EXPECT_EQ(_test, _buf, _ret, _val) do { \ argument 11 KUNIT_EXPECT_EQ(_test, strlen(_buf), _ret); \ 12 KUNIT_EXPECT_STREQ(_test, (_buf), (_val)); \
|
/linux-6.3-rc2/drivers/net/ethernet/mellanox/mlxsw/ |
A D | i2c.c | 97 #define MLXSW_I2C_READ_MSG(_client, _addr_buf, _buf, _len) { \ argument 103 .buf = (_buf), \ 107 #define MLXSW_I2C_WRITE_MSG(_client, _buf, _len) \ argument 109 .buf = (u8 *)(_buf), \
|
/linux-6.3-rc2/sound/isa/sb/ |
A D | emu8000_pcm.c | 435 #define LOOP_WRITE(rec, offset, _buf, count, mode) \ argument 438 unsigned short *buf = (__force unsigned short *)(_buf); \ 492 #define LOOP_WRITE(rec, pos, _buf, count, mode) \ argument 495 unsigned short *buf = (__force unsigned short *)(_buf); \
|
/linux-6.3-rc2/net/mac80211/ |
A D | debugfs_sta.c | 291 char _buf[100] = {}, *buf = _buf; in sta_aql_write() local 293 if (count > sizeof(_buf)) in sta_aql_write() 299 buf[sizeof(_buf) - 1] = '\0'; in sta_aql_write() 371 char _buf[25] = {}, *buf = _buf; in sta_agg_status_write() local 378 if (count > sizeof(_buf)) in sta_agg_status_write() 384 buf[sizeof(_buf) - 1] = '\0'; in sta_agg_status_write()
|
/linux-6.3-rc2/sound/soc/sh/ |
A D | fsi.c | 1067 static void fsi_pio_push16(struct fsi_priv *fsi, u8 *_buf, int samples) in fsi_pio_push16() argument 1077 u32 *buf = (u32 *)_buf; in fsi_pio_push16() 1083 u16 *buf = (u16 *)_buf; in fsi_pio_push16() 1090 static void fsi_pio_pop16(struct fsi_priv *fsi, u8 *_buf, int samples) in fsi_pio_pop16() argument 1092 u16 *buf = (u16 *)_buf; in fsi_pio_pop16() 1099 static void fsi_pio_push32(struct fsi_priv *fsi, u8 *_buf, int samples) in fsi_pio_push32() argument 1101 u32 *buf = (u32 *)_buf; in fsi_pio_push32() 1108 static void fsi_pio_pop32(struct fsi_priv *fsi, u8 *_buf, int samples) in fsi_pio_pop32() argument 1110 u32 *buf = (u32 *)_buf; in fsi_pio_pop32()
|
/linux-6.3-rc2/fs/ |
A D | fsopen.c | 25 char __user *_buf, size_t len, loff_t *pos) in fscontext_read() argument 57 if (copy_to_user(_buf, p, n) != 0) in fscontext_read()
|
/linux-6.3-rc2/drivers/net/ethernet/mellanox/mlx5/core/en/ |
A D | port.c | 454 u32 *_buf = buf; \ 457 MLX5_SET(pplm_reg, _buf, fec_override_admin_##link, *_policy); \ 459 *_policy = MLX5_GET(pplm_reg, _buf, fec_override_admin_##link); \
|
/linux-6.3-rc2/drivers/usb/host/ |
A D | oxu210hp-hcd.c | 633 char _buf[80]; \ 634 dbg_status_buf(_buf, sizeof _buf, label, status); \ 635 oxu_dbg(oxu, "%s\n", _buf); \ 639 char _buf[80]; \ 640 dbg_command_buf(_buf, sizeof _buf, label, command); \ 641 oxu_dbg(oxu, "%s\n", _buf); \ 645 char _buf[80]; \ 646 dbg_port_buf(_buf, sizeof _buf, label, port, status); \ 647 oxu_dbg(oxu, "%s\n", _buf); \
|
/linux-6.3-rc2/drivers/mmc/host/ |
A D | mxcmmc.c | 530 static int mxcmci_pull(struct mxcmci_host *host, void *_buf, int bytes) in mxcmci_pull() argument 533 u32 *buf = _buf; in mxcmci_pull() 559 static int mxcmci_push(struct mxcmci_host *host, void *_buf, int bytes) in mxcmci_push() argument 562 u32 *buf = _buf; in mxcmci_push()
|
/linux-6.3-rc2/drivers/net/wireless/st/cw1200/ |
A D | wsm.c | 189 int wsm_read_mib(struct cw1200_common *priv, u16 mib_id, void *_buf, in wsm_read_mib() argument 196 .buf = _buf, in wsm_read_mib() 240 int wsm_write_mib(struct cw1200_common *priv, u16 mib_id, void *_buf, in wsm_write_mib() argument 247 .buf = _buf, in wsm_write_mib() 255 WSM_PUT(buf, _buf, buf_size); in wsm_write_mib()
|
/linux-6.3-rc2/drivers/net/ethernet/wiznet/ |
A D | w5300.c | 321 struct ethtool_regs *regs, void *_buf) in w5300_get_regs() argument 324 u8 *buf = _buf; in w5300_get_regs()
|
/linux-6.3-rc2/drivers/bluetooth/ |
A D | btrtl.c | 289 unsigned char **_buf) in rtlbt_parse_firmware() argument 442 *_buf = buf; in rtlbt_parse_firmware()
|
/linux-6.3-rc2/drivers/usb/fotg210/ |
A D | fotg210-hcd.c | 263 char _buf[80]; \ 264 dbg_status_buf(_buf, sizeof(_buf), label, status); \ 265 fotg210_dbg(fotg210, "%s\n", _buf); \ 269 char _buf[80]; \ 270 dbg_command_buf(_buf, sizeof(_buf), label, command); \ 271 fotg210_dbg(fotg210, "%s\n", _buf); \ 275 char _buf[80]; \ 277 dbg_port_buf(_buf, sizeof(_buf), label, port, status));\
|
/linux-6.3-rc2/drivers/soundwire/ |
A D | bus.c | 1538 u8 buf, buf2[2], _buf, _buf2[2]; in sdw_handle_slave_alerts() local 1694 _buf = ret; in sdw_handle_slave_alerts() 1717 buf &= _buf; in sdw_handle_slave_alerts()
|