Lines Matching refs:map
546 static INLINE_DECLARE UINT _tx_thread_lowest_set_bit_calculate(ULONG map) in _tx_thread_lowest_set_bit_calculate() argument
550 if ((map & ((ULONG) 0x1)) != ((ULONG) 0)) in _tx_thread_lowest_set_bit_calculate()
556 map = map & (ULONG) ((~map) + ((ULONG) 1)); in _tx_thread_lowest_set_bit_calculate()
557 if (map < ((ULONG) 0x100)) in _tx_thread_lowest_set_bit_calculate()
561 else if (map < ((ULONG) 0x10000)) in _tx_thread_lowest_set_bit_calculate()
564 map = map >> ((UINT) 8); in _tx_thread_lowest_set_bit_calculate()
566 else if (map < ((ULONG) 0x01000000)) in _tx_thread_lowest_set_bit_calculate()
569 map = map >> ((UINT) 16); in _tx_thread_lowest_set_bit_calculate()
574 map = map >> ((UINT) 24); in _tx_thread_lowest_set_bit_calculate()
576 if (map >= ((ULONG) 0x10)) in _tx_thread_lowest_set_bit_calculate()
578 map = map >> ((UINT) 4); in _tx_thread_lowest_set_bit_calculate()
581 if (map >= ((ULONG) 0x4)) in _tx_thread_lowest_set_bit_calculate()
583 map = map >> ((UINT) 2); in _tx_thread_lowest_set_bit_calculate()
586 bit_set = bit_set - (UINT) (map & (ULONG) 0x1); in _tx_thread_lowest_set_bit_calculate()
1645 UINT _tx_thread_lowest_set_bit_calculate(ULONG map);