Lines Matching refs:_s
88 const typeof(*(ptr)) *_s = (ptr); \
89 char (*_d)[sizeof(*_s)] = (void *)(hnd).p; \
91 raw_copy_to_guest(_d+(off), _s, sizeof(*_s)*(nr)); \
99 const typeof(*(ptr)) *_s = (hnd).p; \
101 raw_copy_from_guest(_d, _s+(off), sizeof(*_d)*(nr));\
111 const typeof(&(ptr)->field) _s = &(ptr)->field; \
114 raw_copy_to_guest(_d, _s, sizeof(*_s)); \
119 const typeof(&(ptr)->field) _s = &(hnd).p->field; \
121 raw_copy_from_guest(_d, _s, sizeof(*_d)); \
138 const typeof(*(ptr)) *_s = (ptr); \
139 char (*_d)[sizeof(*_s)] = (void *)(hnd).p; \
141 __raw_copy_to_guest(_d+(off), _s, sizeof(*_s)*(nr));\
145 const typeof(*(ptr)) *_s = (hnd).p; \
147 __raw_copy_from_guest(_d, _s+(off), sizeof(*_d)*(nr));\
156 const typeof(&(ptr)->field) _s = &(ptr)->field; \
159 __raw_copy_to_guest(_d, _s, sizeof(*_s)); \
163 const typeof(&(ptr)->field) _s = &(hnd).p->field; \
165 __raw_copy_from_guest(_d, _s, sizeof(*_d)); \