Lines Matching refs:map
545 static INLINE_DECLARE UINT _tx_thread_lowest_set_bit_calculate(ULONG map) in _tx_thread_lowest_set_bit_calculate() argument
549 if ((map & ((ULONG) 0x1)) != ((ULONG) 0)) in _tx_thread_lowest_set_bit_calculate()
555 map = map & (ULONG) ((~map) + ((ULONG) 1)); in _tx_thread_lowest_set_bit_calculate()
556 if (map < ((ULONG) 0x100)) in _tx_thread_lowest_set_bit_calculate()
560 else if (map < ((ULONG) 0x10000)) in _tx_thread_lowest_set_bit_calculate()
563 map = map >> ((UINT) 8); in _tx_thread_lowest_set_bit_calculate()
565 else if (map < ((ULONG) 0x01000000)) in _tx_thread_lowest_set_bit_calculate()
568 map = map >> ((UINT) 16); in _tx_thread_lowest_set_bit_calculate()
573 map = map >> ((UINT) 24); in _tx_thread_lowest_set_bit_calculate()
575 if (map >= ((ULONG) 0x10)) in _tx_thread_lowest_set_bit_calculate()
577 map = map >> ((UINT) 4); in _tx_thread_lowest_set_bit_calculate()
580 if (map >= ((ULONG) 0x4)) in _tx_thread_lowest_set_bit_calculate()
582 map = map >> ((UINT) 2); in _tx_thread_lowest_set_bit_calculate()
585 bit_set = bit_set - (UINT) (map & (ULONG) 0x1); in _tx_thread_lowest_set_bit_calculate()
1644 UINT _tx_thread_lowest_set_bit_calculate(ULONG map);