Searched refs:_to (Results 1 – 3 of 3) sorted by relevance
/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | iopoll.h | 35 #define read_poll_timeout(_pollfp, _var, _cond, _us, _to, _early_sleep, ...) \ argument 38 if (_to) { \ 39 __end.tv_sec = (_to) / USEC_PER_SEC; \ 40 __end.tv_usec = (_to) % USEC_PER_SEC; \ 51 if (_to) { \ 62 #define readx_poll_timeout(_pollfp, _addr, _var, _cond, _us, _to) \ argument 63 read_poll_timeout(_pollfp, _var, _cond, _us, _to, false, _addr) 65 #define read_poll_timeout_atomic(_pollfp, _var, _cond, _us, _to, _early_sleep, ...) \ argument 68 if (_to) { \ 69 __end.tv_sec = (_to) / USEC_PER_SEC; \ [all …]
|
/freebsd/contrib/llvm-project/libcxx/src/ |
H A D | locale.cpp | 2770 uint8_t* _to = reinterpret_cast<uint8_t*>(to); in do_out() local 2772 uint8_t* _to_nxt = _to; in do_out() 2773 result r = utf16_to_utf8(_frm, _frm_end, _frm_nxt, _to, _to_end, _to_nxt); in do_out() 2775 to_nxt = to + (_to_nxt - _to); in do_out() 2790 uint16_t* _to = reinterpret_cast<uint16_t*>(to); in do_in() local 2792 uint16_t* _to_nxt = _to; in do_in() 2793 result r = utf8_to_utf16(_frm, _frm_end, _frm_nxt, _to, _to_end, _to_nxt); in do_in() 2795 to_nxt = to + (_to_nxt - _to); in do_in() 2837 uint8_t* _to = reinterpret_cast<uint8_t*>(to); in do_out() local 2839 uint8_t* _to_nxt = _to; in do_out() [all …]
|
/freebsd/sys/ofed/include/rdma/ |
H A D | uverbs_ioctl.h | 937 #define uverbs_get_const(_to, _attrs_bundle, _idx) \ argument 941 type_min(typeof(*_to)), \ 942 type_max(typeof(*_to)), NULL); \ 943 (*_to) = _val; \ 947 #define uverbs_get_const_default(_to, _attrs_bundle, _idx, _default) \ argument 953 type_min(typeof(*_to)), \ 954 type_max(typeof(*_to)), &_def_val); \ 955 (*_to) = _val; \
|