Searched refs:packing_mask (Results 1 – 1 of 1) sorted by relevance
29 WK_word packing_mask = TWO_BITS_PACKING_MASK; in WK_unpack_2bits() local38 output_next[0] = temp & packing_mask; in WK_unpack_2bits()39 output_next[1] = (temp >> 2) & packing_mask; in WK_unpack_2bits()40 output_next[2] = (temp >> 4) & packing_mask; in WK_unpack_2bits()41 output_next[3] = (temp >> 6) & packing_mask; in WK_unpack_2bits()63 WK_word packing_mask = FOUR_BITS_PACKING_MASK; in WK_unpack_4bits() local73 output_next[0] = temp & packing_mask; in WK_unpack_4bits()74 output_next[1] = (temp >> 4) & packing_mask; in WK_unpack_4bits()93 WK_word packing_mask = LOW_BITS_MASK; in WK_unpack_3_tenbits() local102 output_next[0] = temp & packing_mask; in WK_unpack_3_tenbits()[all …]