Home
last modified time | relevance | path

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

/xnu-8019.80.24/libkern/kxld/
H A DWKdmDecompress.c28 WK_word *output_next = output_buf; 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()
43 output_next += 4; in WK_unpack_2bits()
47 return output_next; in WK_unpack_2bits()
62 WK_word *output_next = output_buf; 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()
[all …]