Searched defs:P2SAMEHIGHBIT (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/uts/common/sys/
H A Dsysmacros.h289 * eg, P2SAMEHIGHBIT(0x1234, 0x1001) == TRUE (the high bit is 0x1000)
290 * eg, P2SAMEHIGHBIT(0x1234, 0x3010) == FALSE (high bit of 0x3010 is 0x2000)
292 #define P2SAMEHIGHBIT(x, y) (((x) ^ (y)) < ((x) & (y))) macro

Completed in 58 milliseconds