Lines Matching refs:output_next
28 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()
76 output_next += 2; in WK_unpack_4bits()
80 return output_next; in WK_unpack_4bits()
92 WK_word *output_next = output_buf; in WK_unpack_3_tenbits() local
102 output_next[0] = temp & packing_mask; in WK_unpack_3_tenbits()
103 output_next[1] = (temp >> 10) & packing_mask; in WK_unpack_3_tenbits()
104 output_next[2] = temp >> 20; in WK_unpack_3_tenbits()
107 output_next += 3; in WK_unpack_3_tenbits()
110 return output_next; in WK_unpack_3_tenbits()