Home
last modified time | relevance | path

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

/linux/net/smc/
H A Dsmc_stats.h92 #define SMC_STAT_PAYLOAD_SUB(_smc_stats, _tech, key, _len, _rc) \ argument
98 typeof(_rc) r = (_rc); \
116 typeof(rcode) _rc = (rcode); \
119 SMC_STAT_PAYLOAD_SUB(_smc_stats, SMC_TYPE_D, tx, _len, _rc); \
121 SMC_STAT_PAYLOAD_SUB(_smc_stats, SMC_TYPE_R, tx, _len, _rc); \
131 typeof(rcode) _rc = (rcode); \
134 SMC_STAT_PAYLOAD_SUB(_smc_stats, SMC_TYPE_D, rx, _len, _rc); \
136 SMC_STAT_PAYLOAD_SUB(_smc_stats, SMC_TYPE_R, rx, _len, _rc); \
/linux/arch/riscv/include/asm/
H A Datomic.h198 #define _arch_atomic_fetch_add_unless(_prev, _rc, counter, _a, _u, sfx) \ argument
208 : [p]"=&r" (_prev), [rc]"=&r" (_rc), [c]"+A" (counter) \
237 #define _arch_atomic_inc_unless_negative(_prev, _rc, counter, sfx) \ argument
247 : [p]"=&r" (_prev), [rc]"=&r" (_rc), [c]"+A" (counter) \
263 #define _arch_atomic_dec_unless_positive(_prev, _rc, counter, sfx) \ argument
273 : [p]"=&r" (_prev), [rc]"=&r" (_rc), [c]"+A" (counter) \
289 #define _arch_atomic_dec_if_positive(_prev, _rc, counter, sfx) \ argument
299 : [p]"=&r" (_prev), [rc]"=&r" (_rc), [c]"+A" (counter) \
/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 …]
/linux/tools/include/nolibc/
H A Darch-s390.h34 register long _rc __asm__ ("2"); \
38 : "=d"(_rc) \
42 _rc; \
/linux/security/
H A Dlsm_init.c44 int _r, _rc = 0; \
56 if (!_rc) \
57 _rc = _r; \
60 _rc; \
/linux/drivers/net/ethernet/sfc/
H A Dmae.c319 int _rc = TABLE_FIND_KEY(&_meta->desc, TABLE_FIELD_ID_##_mcdi_name); \
321 if (_rc > U8_MAX) \
322 _rc = -EOPNOTSUPP; \
323 if (_rc >= 0) { \
324 _meta->keys._name##_idx = _rc; \
325 _rc = 0; \
327 _rc; \
330 int _rc = TABLE_FIND_RESP(&_meta->desc, TABLE_FIELD_ID_##_mcdi_name); \
332 if (_rc > U8_MAX) \
333 _rc = -EOPNOTSUPP; \
[all …]
/linux/drivers/media/pci/saa7134/
H A Dsaa7134.h713 long _rc; \
716 _rc = v4l2_device_call_until_err(&(dev)->v4l2_dev, \
720 _rc; \
/linux/arch/s390/kvm/
H A Dpv.c556 u16 _rc, _rrc; in kvm_s390_pv_deinit_cleanup_all() local
583 if (kvm_s390_pv_dispose_one_leftover(kvm, cur, &_rc, &_rrc)) { in kvm_s390_pv_deinit_cleanup_all()
591 *rc = _rc; in kvm_s390_pv_deinit_cleanup_all()
H A Dkvm-s390.c2324 u16 _rc, _rrc; in kvm_s390_cpus_from_pv() local
2337 if (kvm_s390_pv_destroy_cpu(vcpu, &_rc, &_rrc) && !ret) { in kvm_s390_cpus_from_pv()
2338 *rc = _rc; in kvm_s390_cpus_from_pv()
/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()
/linux/tools/testing/selftests/seccomp/
H A Dseccomp_bpf.c2547 int _rc = pthread_join(tid, status); \
2548 if (_rc) { \
2550 (unsigned int)tid, _rc); \
/linux/drivers/net/wireless/ath/ath9k/
H A Dxmit.c23 #define HT_RC_2_STREAMS(_rc) ((((_rc) & 0x78) >> 3) + 1) argument