Home
last modified time | relevance | path

Searched refs:_res (Results 1 – 25 of 25) sorted by relevance

/openbmc/linux/include/net/
H A Dnetdev_queues.h36 int _res; \
48 _res = 0; \
51 _res = -1; \
53 _res; \
77 int _res; \
79 _res = 1; \
82 _res; \
121 int _res; \
132 _res = 1; \
136 _res = 0; \
[all …]
/openbmc/linux/lib/
H A Dbitfield_kunit.c13 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 …]
H A Dkstrtox.c98 unsigned long long _res; in _kstrtoull() local
102 rv = _parse_integer(s, base, &_res); in _kstrtoull()
112 *res = _res; in _kstrtoull()
/openbmc/linux/include/linux/mfd/
H A Dcore.h20 .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 …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/open-vm-tools/open-vm-tools/
H A D0001-Add-resolv_compat.h-for-musl-builds.patch53 + if (statp != &_res) {
54 + memcpy(statp, &_res, sizeof(*statp));
63 + if (statp != &_res) {
/openbmc/linux/security/keys/
H A Dkeyctl_pkey.c171 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()
H A Dinternal.h332 struct keyctl_pkey_query __user *_res) in keyctl_pkey_query() argument
/openbmc/linux/tools/bpf/bpftool/
H A Dmain.h41 bool _res; \
46 _res = false; \
48 _res = true; \
50 _res; \
/openbmc/linux/arch/x86/boot/
H A Dstring.c297 unsigned long long _res; in _kstrtoull() local
301 rv = _parse_integer(s, base, &_res); in _kstrtoull()
311 *res = _res; in _kstrtoull()
/openbmc/linux/kernel/bpf/
H A Dhelpers.c499 unsigned long long _res; in __bpf_strtoll() local
507 if ((long long)-_res > 0) in __bpf_strtoll()
509 *res = -_res; in __bpf_strtoll()
511 if ((long long)_res < 0) in __bpf_strtoll()
513 *res = _res; in __bpf_strtoll()
521 long long _res; in BPF_CALL_4() local
527 if (_res != (long)_res) in BPF_CALL_4()
529 *res = _res; in BPF_CALL_4()
546 unsigned long long _res; in BPF_CALL_4() local
555 if (_res != (unsigned long)_res) in BPF_CALL_4()
[all …]
/openbmc/linux/include/linux/
H A Ddevice-mapper.h681 u64 _res; \
682 (x) = div64_u64_rem(x, y, &_res); \
683 _res; \
/openbmc/linux/drivers/net/
H A Dnet_failover.c152 static void net_failover_fold_stats(struct rtnl_link_stats64 *_res, in net_failover_fold_stats() argument
158 u64 *res = (u64 *)_res; in net_failover_fold_stats()
161 for (i = 0; i < sizeof(*_res) / sizeof(u64); i++) { in net_failover_fold_stats()
/openbmc/linux/drivers/vdpa/mlx5/core/
H A Dmr.c15 u64 _res; \
16 _res = (((_n) + (1 << (__s)) - 1) >> (__s)); \
17 _res; \
/openbmc/linux/drivers/iio/adc/
H A Drockchip_saradc.c215 #define SARADC_CHANNEL(_index, _id, _res) { \ argument
225 .realbits = _res, \
/openbmc/linux/drivers/net/can/mscan/
H A Dmscan.h131 #define _MSCAN_RESERVED_(n, num) u8 _res##n[num]
/openbmc/linux/drivers/usb/phy/
H A Dphy.c340 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()
/openbmc/linux/fs/xfs/
H A Dxfs_super.c1202 int last, shift_left_factor = 0, _res; in suffix_kstrtoint() local
1224 if (kstrtoint(value, base, &_res)) in suffix_kstrtoint()
1227 *res = _res << shift_left_factor; in suffix_kstrtoint()
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/
H A Dmain.c483 u32 _res = MLX5_CAP_ODP_MAX(dev, field); \ in handle_hca_cap_odp()
484 if (_res) { \ in handle_hca_cap_odp()
486 MLX5_SET(odp_cap, set_hca_cap, field, _res); \ in handle_hca_cap_odp()
/openbmc/linux/tools/testing/cxl/test/
H A Dcxl.c385 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()
/openbmc/linux/net/bluetooth/
H A Dsmp.c474 u8 _res[16]; in smp_ah() local
478 memcpy(_res, r, 3); in smp_ah()
479 memset(_res + 3, 0, 13); in smp_ah()
481 err = smp_e(irk, _res); in smp_ah()
493 memcpy(res, _res, 3); in smp_ah()
/openbmc/linux/kernel/
H A Dresource.c1809 static void remove_free_mem_region(void *_res) in remove_free_mem_region() argument
1811 struct resource *res = _res; in remove_free_mem_region()
/openbmc/linux/drivers/net/ethernet/freescale/enetc/
H A Denetc_hw.h956 u8 _res; member
/openbmc/linux/drivers/nvdimm/
H A Dnamespace_devs.c646 struct resource *res, *_res; in release_free_pmem() local
648 for_each_dpa_resource_safe(ndd, res, _res) in release_free_pmem()
/openbmc/linux/drivers/net/bonding/
H A Dbond_main.c4393 static void bond_fold_stats(struct rtnl_link_stats64 *_res, in bond_fold_stats() argument
4399 u64 *res = (u64 *)_res; in bond_fold_stats()
4402 for (i = 0; i < sizeof(*_res) / sizeof(u64); i++) { in bond_fold_stats()
/openbmc/qemu/hw/net/
H A Dpcnet.c134 uint16_t _res; member