Home | History | Annotate | Download | only in priv

Lines Matching full:bits4

598 static UInt bits4_to_bytes4 ( UInt bits4 )
601 r |= (bits4 & 1) ? 0x000000FF : 0;
602 r |= (bits4 & 2) ? 0x0000FF00 : 0;
603 r |= (bits4 & 4) ? 0x00FF0000 : 0;
604 r |= (bits4 & 8) ? 0xFF000000 : 0;