gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for fundef:hilo_ll from mtkernel_3/kernel/knlinc/longlong.h (0.00 seconds)
mtkernel_3
kernel/knlinc/longlong.h - 3.3KB - 85 lines
46: 
47: #define hilo_ll(ll, h, l)       ( (ll) = ((D)(h) << 32) | (l) )
48: #define ll_hilo(h, l, ll)       ( (h) = (W)((ll) >> 32), \
79: 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 )