Lines Matching refs:rInt32
125 MemoryByteGrabber& operator >> (sal_Int32& rInt32) in operator >>() argument
128 rInt32 = 0; in operator >>()
131 rInt32 = mpBuffer[mnCurrent++] & 0xFF; in operator >>()
132 rInt32 |= ( mpBuffer[mnCurrent++] & 0xFF ) << 8; in operator >>()
133 rInt32 |= ( mpBuffer[mnCurrent++] & 0xFF ) << 16; in operator >>()
134 rInt32 |= ( mpBuffer[mnCurrent++] & 0xFF ) << 24; in operator >>()
158 MemoryByteGrabber& operator >> (sal_uInt32& rInt32) in operator >>() argument
161 rInt32 = 0; in operator >>()
164 rInt32 = mpBuffer [mnCurrent++] & 0xFF; in operator >>()
165 rInt32 |= ( mpBuffer [mnCurrent++] & 0xFF ) << 8; in operator >>()
166 rInt32 |= ( mpBuffer [mnCurrent++] & 0xFF ) << 16; in operator >>()
167 rInt32 |= ( mpBuffer [mnCurrent++] & 0xFF ) << 24; in operator >>()