Lines Matching refs:outPos
43 SizeT inPos = 0, outPos = 0; in Bcj2_Decode() local
68 if (outSize - outPos < limit) in Bcj2_Decode()
69 limit = outSize - outPos; in Bcj2_Decode()
73 outBuf[outPos++] = b; in Bcj2_Decode()
81 if (limit == 0 || outPos == outSize) in Bcj2_Decode()
120 ((UInt32)v[2] << 8) | ((UInt32)v[3])) - ((UInt32)outPos + 4); in Bcj2_Decode()
121 outBuf[outPos++] = (Byte)dest; in Bcj2_Decode()
122 if (outPos == outSize) in Bcj2_Decode()
124 outBuf[outPos++] = (Byte)(dest >> 8); in Bcj2_Decode()
125 if (outPos == outSize) in Bcj2_Decode()
127 outBuf[outPos++] = (Byte)(dest >> 16); in Bcj2_Decode()
128 if (outPos == outSize) in Bcj2_Decode()
130 outBuf[outPos++] = prevByte = (Byte)(dest >> 24); in Bcj2_Decode()
133 return (outPos == outSize) ? SZ_OK : SZ_ERROR_DATA; in Bcj2_Decode()