Home
last modified time | relevance | path

Searched refs:_rc (Results 1 – 11 of 11) sorted by relevance

/linux-6.6.21/net/smc/
Dsmc_stats.h90 #define SMC_STAT_PAYLOAD_SUB(_smc_stats, _tech, key, _len, _rc) \ argument
96 typeof(_rc) r = (_rc); \
114 typeof(rcode) _rc = (rcode); \
117 SMC_STAT_PAYLOAD_SUB(_smc_stats, SMC_TYPE_D, tx, _len, _rc); \
119 SMC_STAT_PAYLOAD_SUB(_smc_stats, SMC_TYPE_R, tx, _len, _rc); \
129 typeof(rcode) _rc = (rcode); \
132 SMC_STAT_PAYLOAD_SUB(_smc_stats, SMC_TYPE_D, rx, _len, _rc); \
134 SMC_STAT_PAYLOAD_SUB(_smc_stats, SMC_TYPE_R, rx, _len, _rc); \
/linux-6.6.21/tools/include/nolibc/
Darch-s390.h29 register long _rc __asm__ ("2"); \
33 : "=d"(_rc) \
37 _rc; \
/linux-6.6.21/drivers/media/tuners/
Dxc2028.c124 int _rc; \
125 _rc = tuner_i2c_xfer_send(&priv->i2c_props, buf, size); \
126 if (size != _rc) \
128 _rc, (int)size); \
131 _rc; \
135 int _rc; \
136 _rc = tuner_i2c_xfer_send_recv(&priv->i2c_props, obuf, osize, \
138 if (isize != _rc) \
140 _rc, (int)isize); \
143 _rc; \
[all …]
/linux-6.6.21/drivers/net/ethernet/sfc/
Dmae.c332 int _rc = TABLE_FIND_KEY(&_meta->desc, TABLE_FIELD_ID_##_mcdi_name); \
334 if (_rc > U8_MAX) \
335 _rc = -EOPNOTSUPP; \
336 if (_rc >= 0) { \
337 _meta->keys._name##_idx = _rc; \
338 _rc = 0; \
340 _rc; \
343 int _rc = TABLE_FIND_RESP(&_meta->desc, TABLE_FIELD_ID_##_mcdi_name); \
345 if (_rc > U8_MAX) \
346 _rc = -EOPNOTSUPP; \
[all …]
/linux-6.6.21/drivers/media/pci/saa7134/
Dsaa7134.h713 long _rc; \
716 _rc = v4l2_device_call_until_err(&(dev)->v4l2_dev, \
720 _rc; \
/linux-6.6.21/arch/s390/kvm/
Dpv.c426 u16 _rc, _rrc; in kvm_s390_pv_deinit_cleanup_all() local
453 if (kvm_s390_pv_dispose_one_leftover(kvm, cur, &_rc, &_rrc)) { in kvm_s390_pv_deinit_cleanup_all()
461 *rc = _rc; in kvm_s390_pv_deinit_cleanup_all()
Dkvm-s390.c2434 u16 _rc, _rrc; in kvm_s390_cpus_from_pv() local
2447 if (kvm_s390_pv_destroy_cpu(vcpu, &_rc, &_rrc) && !ret) { in kvm_s390_cpus_from_pv()
2448 *rc = _rc; in kvm_s390_cpus_from_pv()
/linux-6.6.21/drivers/cpufreq/
Dpowernow-k8.c460 static void check_supported_cpu(void *_rc) in check_supported_cpu() argument
463 int *rc = _rc; in check_supported_cpu()
/linux-6.6.21/drivers/clk/nxp/
Dclk-lpc32xx.c697 #define LPC32XX_DEFINE_PLL_OPS(_name, _rc, _sr, _rr) \ argument
702 .recalc_rate = _rc, \
/linux-6.6.21/tools/testing/selftests/seccomp/
Dseccomp_bpf.c2531 int _rc = pthread_join(tid, status); \
2532 if (_rc) { \
2534 (unsigned int)tid, _rc); \
/linux-6.6.21/drivers/net/wireless/ath/ath9k/
Dxmit.c23 #define HT_RC_2_STREAMS(_rc) ((((_rc) & 0x78) >> 3) + 1) argument