/linux-6.3-rc2/lib/ |
A D | bitfield_kunit.c | 13 u##tp _res; \ 15 _res = u##tp##_encode_bits(v, field); \ 18 (u64)_res); \ 20 u##tp##_get_bits(_res, field) != v); \ 26 __le##tp _res; \ 28 _res = le##tp##_encode_bits(v, field); \ 30 _res != cpu_to_le##tp(res), \ 32 (u64)le##tp##_to_cpu(_res), \ 41 __be##tp _res; \ 45 _res != cpu_to_be##tp(res), \ [all …]
|
A D | kstrtox.c | 98 unsigned long long _res; in _kstrtoull() local 102 rv = _parse_integer(s, base, &_res); in _kstrtoull() 112 *res = _res; in _kstrtoull()
|
/linux-6.3-rc2/include/linux/mfd/ |
A D | core.h | 20 .resources = (_res), \ 21 .num_resources = MFD_RES_SIZE((_res)), \ 31 #define MFD_CELL_OF_REG(_name, _res, _pdata, _pdsize, _id, _compat, _of_reg) \ argument 34 #define MFD_CELL_OF(_name, _res, _pdata, _pdsize, _id, _compat) \ argument 35 MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, _compat, 0, false, NULL) 37 #define MFD_CELL_ACPI(_name, _res, _pdata, _pdsize, _id, _match) \ argument 38 MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, NULL, 0, false, _match) 40 #define MFD_CELL_BASIC(_name, _res, _pdata, _pdsize, _id) \ argument 41 MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, NULL, 0, false, NULL) 43 #define MFD_CELL_RES(_name, _res) \ argument [all …]
|
/linux-6.3-rc2/security/keys/ |
A D | keyctl_pkey.c | 171 struct keyctl_pkey_query __user *_res) in keyctl_pkey_query() argument 186 if (copy_to_user(_res, &res, sizeof(res)) == 0 && in keyctl_pkey_query() 187 clear_user(_res->__spare, sizeof(_res->__spare)) == 0) in keyctl_pkey_query()
|
A D | internal.h | 323 struct keyctl_pkey_query __user *_res) in keyctl_pkey_query() argument
|
/linux-6.3-rc2/tools/bpf/bpftool/ |
A D | main.h | 41 bool _res; \ 46 _res = false; \ 48 _res = true; \ 50 _res; \
|
/linux-6.3-rc2/arch/x86/boot/ |
A D | string.c | 297 unsigned long long _res; in _kstrtoull() local 301 rv = _parse_integer(s, base, &_res); in _kstrtoull() 311 *res = _res; in _kstrtoull()
|
/linux-6.3-rc2/kernel/bpf/ |
A D | helpers.c | 493 unsigned long long _res; in __bpf_strtoll() local 501 if ((long long)-_res > 0) in __bpf_strtoll() 503 *res = -_res; in __bpf_strtoll() 505 if ((long long)_res < 0) in __bpf_strtoll() 507 *res = _res; in __bpf_strtoll() 515 long long _res; in BPF_CALL_4() local 521 if (_res != (long)_res) in BPF_CALL_4() 523 *res = _res; in BPF_CALL_4() 540 unsigned long long _res; in BPF_CALL_4() local 549 if (_res != (unsigned long)_res) in BPF_CALL_4() [all …]
|
/linux-6.3-rc2/include/linux/ |
A D | device-mapper.h | 647 u64 _res; \ 648 (x) = div64_u64_rem(x, y, &_res); \ 649 _res; \
|
/linux-6.3-rc2/drivers/vdpa/mlx5/core/ |
A D | mr.c | 15 u64 _res; \ 16 _res = (((_n) + (1 << (__s)) - 1) >> (__s)); \ 17 _res; \
|
/linux-6.3-rc2/drivers/net/ |
A D | net_failover.c | 156 static void net_failover_fold_stats(struct rtnl_link_stats64 *_res, in net_failover_fold_stats() argument 162 u64 *res = (u64 *)_res; in net_failover_fold_stats() 165 for (i = 0; i < sizeof(*_res) / sizeof(u64); i++) { in net_failover_fold_stats()
|
/linux-6.3-rc2/drivers/iio/adc/ |
A D | rockchip_saradc.c | 140 #define SARADC_CHANNEL(_index, _id, _res) { \ argument 150 .realbits = _res, \
|
/linux-6.3-rc2/drivers/net/can/mscan/ |
A D | mscan.h | 131 #define _MSCAN_RESERVED_(n, num) u8 _res##n[num]
|
/linux-6.3-rc2/drivers/usb/phy/ |
A D | phy.c | 340 static void devm_usb_phy_release2(struct device *dev, void *_res) in devm_usb_phy_release2() argument 342 struct phy_devm *res = _res; in devm_usb_phy_release2()
|
/linux-6.3-rc2/fs/xfs/ |
A D | xfs_super.c | 1179 int last, shift_left_factor = 0, _res; in suffix_kstrtoint() local 1201 if (kstrtoint(value, base, &_res)) in suffix_kstrtoint() 1204 *res = _res << shift_left_factor; in suffix_kstrtoint()
|
/linux-6.3-rc2/drivers/net/ethernet/mellanox/mlx5/core/ |
A D | main.c | 471 u32 _res = MLX5_CAP_ODP_MAX(dev, field); \ in handle_hca_cap_odp() 472 if (_res) { \ in handle_hca_cap_odp() 474 MLX5_SET(odp_cap, set_hca_cap, field, _res); \ in handle_hca_cap_odp()
|
/linux-6.3-rc2/tools/testing/cxl/test/ |
A D | cxl.c | 385 struct cxl_mock_res *res, *_res; in depopulate_all_mock_resources() local 388 list_for_each_entry_safe(res, _res, &mock_res, list) { in depopulate_all_mock_resources()
|
/linux-6.3-rc2/net/bluetooth/ |
A D | smp.c | 472 u8 _res[16]; in smp_ah() local 476 memcpy(_res, r, 3); in smp_ah() 477 memset(_res + 3, 0, 13); in smp_ah() 479 err = smp_e(irk, _res); in smp_ah() 491 memcpy(res, _res, 3); in smp_ah()
|
/linux-6.3-rc2/kernel/ |
A D | resource.c | 1811 static void remove_free_mem_region(void *_res) in remove_free_mem_region() argument 1813 struct resource *res = _res; in remove_free_mem_region()
|
/linux-6.3-rc2/drivers/net/ethernet/freescale/enetc/ |
A D | enetc_hw.h | 953 u8 _res; member
|
/linux-6.3-rc2/drivers/nvdimm/ |
A D | namespace_devs.c | 645 struct resource *res, *_res; in release_free_pmem() local 647 for_each_dpa_resource_safe(ndd, res, _res) in release_free_pmem()
|
/linux-6.3-rc2/drivers/net/bonding/ |
A D | bond_main.c | 4296 static void bond_fold_stats(struct rtnl_link_stats64 *_res, in bond_fold_stats() argument 4302 u64 *res = (u64 *)_res; in bond_fold_stats() 4305 for (i = 0; i < sizeof(*_res) / sizeof(u64); i++) { in bond_fold_stats()
|