Search | Google it | Results 1 - 2 of 2 for fundef:ll_hilo (0.00 seconds) |
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) )
51: #define hilo_ll(ll, h, l) ( (ll) = ((longlong)(h) << 32) | (l) ) 52: #define ll_hilo(h, l, ll) ( (h) = (long)((ll) >> 32), \ 53: (l) = (unsigned long)(ll) )