Home
last modified time | relevance | path

Searched refs:packing_mask (Results 1 – 1 of 1) sorted by relevance

/xnu-8020.101.4/libkern/kxld/
H A DWKdmDecompress.c29 WK_word packing_mask = TWO_BITS_PACKING_MASK; in WK_unpack_2bits() local
38 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() local
73 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() local
102 output_next[0] = temp & packing_mask; in WK_unpack_3_tenbits()
[all …]