Home
last modified time | relevance | path

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

/openbmc/linux/net/smc/
H A 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); \
/openbmc/linux/tools/include/nolibc/
H A Darch-s390.h30 register long _rc __asm__ ("2"); \
34 : "=d"(_rc) \
38 _rc; \
/openbmc/linux/drivers/media/tuners/
H A 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 …]
/openbmc/linux/drivers/net/ethernet/sfc/
H A 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 …]
/openbmc/linux/drivers/media/pci/saa7134/
H A Dsaa7134.h713 long _rc; \
716 _rc = v4l2_device_call_until_err(&(dev)->v4l2_dev, \
720 _rc; \
/openbmc/linux/arch/s390/kvm/
H A 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()
H A Dkvm-s390.c2442 u16 _rc, _rrc; in kvm_s390_cpus_from_pv() local
2455 if (kvm_s390_pv_destroy_cpu(vcpu, &_rc, &_rrc) && !ret) { in kvm_s390_cpus_from_pv()
2456 *rc = _rc; in kvm_s390_cpus_from_pv()
/openbmc/linux/drivers/cpufreq/
H A Dpowernow-k8.c460 static void check_supported_cpu(void *_rc) in check_supported_cpu() argument
463 int *rc = _rc; in check_supported_cpu()
/openbmc/linux/drivers/clk/nxp/
H A Dclk-lpc32xx.c697 #define LPC32XX_DEFINE_PLL_OPS(_name, _rc, _sr, _rr) \ argument
702 .recalc_rate = _rc, \
/openbmc/linux/tools/testing/selftests/seccomp/
H A Dseccomp_bpf.c2531 int _rc = pthread_join(tid, status); \
2532 if (_rc) { \
2534 (unsigned int)tid, _rc); \
/openbmc/linux/drivers/net/wireless/ath/ath9k/
H A Dxmit.c23 #define HT_RC_2_STREAMS(_rc) ((((_rc) & 0x78) >> 3) + 1) argument