Home
last modified time | relevance | path

Searched refs:_result (Results 1 – 12 of 12) sorted by relevance

/linux/net/dns_resolver/
H A Ddns_query.c76 const char *options, char **_result, time64_t *_expiry, in dns_query() argument
150 if (_result) { in dns_query()
152 *_result = kmemdup_nul(upayload->data, len, GFP_KERNEL); in dns_query()
153 if (!*_result) in dns_query()
/linux/drivers/md/dm-vdo/
H A Dmemory-alloc.h88 int _result; \
91 _result = __vdo_do_allocation(COUNT, \
97 _result; \
/linux/lib/crypto/mpi/
H A Dmpih-mul.c428 mpi_ptr_t vp, mpi_size_t vsize, mpi_limb_t *_result) in mpihelp_mul() argument
439 *_result = 0; in mpihelp_mul()
474 *_result = cy; in mpihelp_mul()
482 *_result = *prod_endp; in mpihelp_mul()
H A Dmpi-internal.h173 mpi_ptr_t vp, mpi_size_t vsize, mpi_limb_t *_result);
/linux/tools/testing/selftests/bpf/progs/
H A Dtest_select_reuseport_kern.c56 #define GOTO_DONE(_result) ({ \
57 result = (_result); \ argument
/linux/include/linux/
H A Ddns_resolver.h31 const char *options, char **_result, time64_t *_expiry,
/linux/drivers/net/ethernet/wangxun/libwx/
H A Dwx_type.h996 #define WX_SET_FLAG(_input, _flag, _result) \ argument
997 (((_flag) <= (_result)) ? \
998 ((u32)((_input) & (_flag)) * ((_result) / (_flag))) : \
999 ((u32)((_input) & (_flag)) / ((_flag) / (_result))))
/linux/drivers/net/ethernet/intel/fm10k/
H A Dfm10k_main.c874 #define FM10K_SET_FLAG(_input, _flag, _result) \ argument
875 ((_flag <= _result) ? \
876 ((u32)(_input & _flag) * (_result / _flag)) : \
877 ((u32)(_input & _flag) / (_flag / _result)))
/linux/tools/testing/selftests/seccomp/
H A Dseccomp_bpf.c1802 typeof(_val) _result = (_val); \
1808 SYSCALL_RET(_regs) = _result; \
1815 if (_result < 0) { \
1816 SYSCALL_RET(_regs) = -_result; \
1819 SYSCALL_RET(_regs) = _result; \
/linux/drivers/net/ethernet/intel/igc/
H A Digc_main.c1251 #define IGC_SET_FLAG(_input, _flag, _result) \ argument
1252 (((_flag) <= (_result)) ? \
1253 ((u32)((_input) & (_flag)) * ((_result) / (_flag))) : \
1254 ((u32)((_input) & (_flag)) / ((_flag) / (_result))))
/linux/drivers/net/ethernet/intel/igb/
H A Digb_main.c6186 #define IGB_SET_FLAG(_input, _flag, _result) \ argument
6187 ((_flag <= _result) ? \
6188 ((u32)(_input & _flag) * (_result / _flag)) : \
6189 ((u32)(_input & _flag) / (_flag / _result)))
/linux/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_main.c8855 #define IXGBE_SET_FLAG(_input, _flag, _result) \ argument
8856 ((_flag <= _result) ? \
8857 ((u32)(_input & _flag) * (_result / _flag)) : \
8858 ((u32)(_input & _flag) / (_flag / _result)))