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

/darwin-on-arm/xnu/iokit/Kernel/
H A DWKdmDecompress.c29 register WK_word packing_mask = TWO_BITS_PACKING_MASK; local
38 output_next[0] = temp & packing_mask;
39 output_next[1] = (temp >> 2) & packing_mask;
40 output_next[2] = (temp >> 4) & packing_mask;
41 output_next[3] = (temp >> 6) & packing_mask;
64 register WK_word packing_mask = FOUR_BITS_PACKING_MASK; local
74 output_next[0] = temp & packing_mask;
75 output_next[1] = (temp >> 4) & packing_mask;
95 register WK_word packing_mask = LOW_BITS_MASK; local
104 output_next[0] = temp & packing_mask;
[all...]
/darwin-on-arm/xnu/libkern/kxld/
H A DWKdmDecompress.c29 register WK_word packing_mask = TWO_BITS_PACKING_MASK; local
38 output_next[0] = temp & packing_mask;
39 output_next[1] = (temp >> 2) & packing_mask;
40 output_next[2] = (temp >> 4) & packing_mask;
41 output_next[3] = (temp >> 6) & packing_mask;
64 register WK_word packing_mask = FOUR_BITS_PACKING_MASK; local
74 output_next[0] = temp & packing_mask;
75 output_next[1] = (temp >> 4) & packing_mask;
95 register WK_word packing_mask = LOW_BITS_MASK; local
104 output_next[0] = temp & packing_mask;
[all...]

Completed in 11 milliseconds