gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for fundef:ll_hilo from mtkernel_3/kernel/knlinc/longlong.h (0.00 seconds)
mtkernel_3
kernel/knlinc/longlong.h - 3.3KB - 85 lines
47: #define hilo_ll(ll, h, l)       ( (ll) = ((D)(h) << 32) | (l) )
48: #define ll_hilo(h, l, ll)       ( (h) = (W)((ll) >> 32), \
49:                                   (l) = (UW)(ll) )
80: #define hilo_ll(ll, h, l) ( (ll).hi = (h), (ll).lo = (l) ) 81: #define ll_hilo(h, l, ll) ( (h) = (ll).hi, (l) = (ll).lo ) 82: