Searched refs:_cyclic_lt (Results 1 – 1 of 1) sorted by relevance
/titanic_44/usr/src/uts/common/io/bnxe/577xx/drivers/common/include/ |
H A D | cyclic_oper.h | 46 static __inline u8_t _cyclic_lt(u32_t x, u32_t y, u32_t d) in _cyclic_lt() function 58 #define CYCLIC_LT_8(x, y) (_cyclic_lt(x, y, 128)) 59 #define CYCLIC_LT_16(x, y) (_cyclic_lt(x, y, 32768)) 60 #define CYCLIC_LT_24(x, y) (_cyclic_lt(x, y, 8388608)) 61 #define CYCLIC_LT_32(x, y) (_cyclic_lt(x, y, 2147483648)) 79 #define CYCLIC_LT_BITS(x, y, bits) _cyclic_lt(x, y, 1 << ((bits)-1))
|