Lines Matching refs:sal_Int8
51 void ByteChucker::WriteBytes( const Sequence< sal_Int8 >& aData ) in WriteBytes()
63 ByteChucker& ByteChucker::operator << (sal_Int8 nInt8) in operator <<()
72 p2Sequence[0] = static_cast< sal_Int8 >((nInt16 >> 0 ) & 0xFF); in operator <<()
73 p2Sequence[1] = static_cast< sal_Int8 >((nInt16 >> 8 ) & 0xFF); in operator <<()
79 p4Sequence[0] = static_cast< sal_Int8 >((nInt32 >> 0 ) & 0xFF); in operator <<()
80 p4Sequence[1] = static_cast< sal_Int8 >((nInt32 >> 8 ) & 0xFF); in operator <<()
81 p4Sequence[2] = static_cast< sal_Int8 >((nInt32 >> 16 ) & 0xFF); in operator <<()
82 p4Sequence[3] = static_cast< sal_Int8 >((nInt32 >> 24 ) & 0xFF); in operator <<()
95 p2Sequence[0] = static_cast< sal_Int8 >((nuInt16 >> 0 ) & 0xFF); in operator <<()
96 p2Sequence[1] = static_cast< sal_Int8 >((nuInt16 >> 8 ) & 0xFF); in operator <<()
102 p4Sequence[0] = static_cast < sal_Int8 > ((nuInt32 >> 0 ) & 0xFF); in operator <<()
103 p4Sequence[1] = static_cast < sal_Int8 > ((nuInt32 >> 8 ) & 0xFF); in operator <<()
104 p4Sequence[2] = static_cast < sal_Int8 > ((nuInt32 >> 16 ) & 0xFF); in operator <<()
105 p4Sequence[3] = static_cast < sal_Int8 > ((nuInt32 >> 24 ) & 0xFF); in operator <<()