Lines Matching refs:_s
70 const typeof(*(ptr)) *_s = (ptr); \
71 char (*_d)[sizeof(*_s)] = (void *)(hnd).p; \
73 raw_copy_to_guest(_d+(off), _s, sizeof(*_s)*(nr)); \
90 const typeof(*(ptr)) *_s = (hnd).p; \
92 raw_copy_from_guest(_d, _s+(off), sizeof(*_d)*(nr));\
97 const typeof(&(ptr)->field) _s = &(ptr)->field; \
100 raw_copy_to_guest(_d, _s, sizeof(*_s)); \
105 const typeof(&(ptr)->field) _s = &(hnd).p->field; \
107 raw_copy_from_guest(_d, _s, sizeof(*_d)); \
119 const typeof(*(ptr)) *_s = (ptr); \
120 char (*_d)[sizeof(*_s)] = (void *)(hnd).p; \
122 __raw_copy_to_guest(_d+(off), _s, sizeof(*_s)*(nr));\
130 const typeof(*(ptr)) *_s = (hnd).p; \
132 __raw_copy_from_guest(_d, _s+(off), sizeof(*_d)*(nr));\
136 const typeof(&(ptr)->field) _s = &(ptr)->field; \
139 __raw_copy_to_guest(_d, _s, sizeof(*_s)); \
143 const typeof(&(ptr)->field) _s = &(hnd).p->field; \
145 __raw_copy_from_guest(_d, _s, sizeof(*_d)); \