Searched refs:_r (Results 1 – 8 of 8) sorted by relevance
/xen-4.10.0-shim-comet/xen/include/public/io/ |
A D | ring.h | 194 ((_r)->nr_ents) 198 (RING_SIZE(_r) - ((_r)->req_prod_pvt - (_r)->rsp_cons)) 208 ((_r)->sring->rsp_prod - (_r)->rsp_cons) 212 unsigned int req = (_r)->sring->req_prod - (_r)->req_cons; \ 214 ((_r)->req_cons - (_r)->rsp_prod_pvt); \ 221 (RING_SIZE(_r) - ((_r)->req_cons - (_r)->rsp_prod_pvt))) ? \ 223 (RING_SIZE(_r) - ((_r)->req_cons - (_r)->rsp_prod_pvt))) 228 (&((_r)->sring->ring[((_idx) & (RING_SIZE(_r) - 1))].req)) 245 (&((_r)->sring->ring[((_idx) & (RING_SIZE(_r) - 1))].rsp)) 249 (((_cons) - (_r)->rsp_prod_pvt) >= RING_SIZE(_r)) [all …]
|
/xen-4.10.0-shim-comet/xen/include/asm-arm/arm64/ |
A D | processor.h | 95 uint32_t _r; \ 96 asm volatile("mrs %0, "__stringify(name) : "=r" (_r)); \ 97 _r; }) 99 uint32_t _r = v; \ 100 asm volatile("msr "__stringify(name)", %0" : : "r" (_r)); \ 104 uint64_t _r = v; \ 105 asm volatile("msr "__stringify(name)", %0" : : "r" (_r)); \ 108 uint64_t _r; \ 109 asm volatile("mrs %0, "__stringify(name) : "=r" (_r)); \ 110 _r; })
|
/xen-4.10.0-shim-comet/xen/include/asm-arm/arm32/ |
A D | processor.h | 83 register uint32_t _r; \ 84 asm volatile(LOAD_CP32(0, name) : "=r" (_r)); \ 85 _r; }) 88 register uint32_t _r = (v); \ 89 asm volatile(STORE_CP32(0, name) : : "r" (_r)); \ 93 register uint64_t _r; \ 94 asm volatile(LOAD_CP64(0, name) : "=r" (_r)); \ 95 _r; }) 98 register uint64_t _r = (v); \ 99 asm volatile(STORE_CP64(0, name) : : "r" (_r)); \
|
/xen-4.10.0-shim-comet/tools/xl/ |
A D | CODING_STYLE | 67 applicable _r function parameter (or equivalent). Do not test `rc' in 150 should be suffixed `_r' or `_out'.
|
/xen-4.10.0-shim-comet/xen/arch/x86/ |
A D | time.c | 1471 static void time_calibration_tsc_rendezvous(void *_r) in time_calibration_tsc_rendezvous() argument 1474 struct calibration_rendezvous *r = _r; in time_calibration_tsc_rendezvous() 1518 static void time_calibration_std_rendezvous(void *_r) in time_calibration_std_rendezvous() argument 1520 struct calibration_rendezvous *r = _r; in time_calibration_std_rendezvous()
|
/xen-4.10.0-shim-comet/tools/libxl/ |
A D | CODING_STYLE | 116 applicable _r function parameter (or equivalent). Do not test `rc' in 266 should be suffixed `_r' or `_out'.
|
A D | libxl_dm.c | 783 ret = NAME##_r(spec, resultbuf, buf, buf_size, &resultp); \
|
/xen-4.10.0-shim-comet/xen/arch/x86/hvm/ |
A D | hvm.c | 1025 #define UNFOLD_ARBYTES(_r) \ in hvm_load_cpu_ctxt() argument 1026 if ( (_r & 0xf000) && !(_r & 0x0f00) ) \ in hvm_load_cpu_ctxt() 1027 _r = ((_r & 0xff) | ((_r >> 4) & 0xf00)) in hvm_load_cpu_ctxt()
|
Completed in 24 milliseconds