Home | History | Annotate | Download | only in priv

Lines Matching full:bits2

612 static UInt bits2_to_bytes4 ( UInt bits2 )
615 r |= (bits2 & 1) ? 0x0000FFFF : 0;
616 r |= (bits2 & 2) ? 0xFFFF0000 : 0;