Lines Matching refs:mnCurrent

35 	sal_Int32 mnCurrent, mnEnd;  member in MemoryByteGrabber
40 , mnCurrent ( 0 ) in MemoryByteGrabber()
47 const sal_Int8 * getCurrentPos () { return mpBuffer + mnCurrent; } in getCurrentPos()
57 if (nBytesToRead + mnCurrent > mnEnd) in readBytes()
58 nBytesToRead = mnEnd - mnCurrent; in readBytes()
61 rtl_copyMemory( aData.getArray(), mpBuffer + mnCurrent, nBytesToRead ); in readBytes()
62 mnCurrent += nBytesToRead; in readBytes()
75 mnCurrent += nBytesToSkip; in skipBytes()
80 return mnEnd - mnCurrent; in available()
93 mnCurrent = static_cast < sal_Int32 > ( location ); in seek()
94 return mnCurrent; in seek()
99 return mnCurrent; in getPosition()
108 if (mnCurrent + 1 > mnEnd ) in operator >>()
111 rInt8 = mpBuffer [mnCurrent++] & 0xFF; in operator >>()
116 if (mnCurrent + 2 > mnEnd ) in operator >>()
120 rInt16 = mpBuffer[mnCurrent++] & 0xFF; in operator >>()
121 rInt16 |= ( mpBuffer[mnCurrent++] & 0xFF ) << 8; in operator >>()
127 if (mnCurrent + 4 > mnEnd ) 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 >>()
141 if (mnCurrent + 1 > mnEnd ) in operator >>()
144 rInt8 = mpBuffer [mnCurrent++] & 0xFF; in operator >>()
149 if (mnCurrent + 2 > mnEnd ) in operator >>()
153 rInt16 = mpBuffer [mnCurrent++] & 0xFF; in operator >>()
154 rInt16 |= ( mpBuffer [mnCurrent++] & 0xFF ) << 8; in operator >>()
160 if (mnCurrent + 4 > mnEnd ) 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 >>()