Lines Matching refs:mpBuffer
34 const sal_Int8 *mpBuffer; member in MemoryByteGrabber
39 , mpBuffer ( rBuffer.getConstArray() ) in MemoryByteGrabber()
47 const sal_Int8 * getCurrentPos () { return mpBuffer + mnCurrent; } in getCurrentPos()
61 rtl_copyMemory( aData.getArray(), mpBuffer + mnCurrent, nBytesToRead ); in readBytes()
111 rInt8 = mpBuffer [mnCurrent++] & 0xFF; in operator >>()
120 rInt16 = mpBuffer[mnCurrent++] & 0xFF; in operator >>()
121 rInt16 |= ( mpBuffer[mnCurrent++] & 0xFF ) << 8; 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 >>()
144 rInt8 = mpBuffer [mnCurrent++] & 0xFF; in operator >>()
153 rInt16 = mpBuffer [mnCurrent++] & 0xFF; in operator >>()
154 rInt16 |= ( mpBuffer [mnCurrent++] & 0xFF ) << 8; 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 >>()