Lines Matching full:processed
62 UInt32 processed = 0; in Z7_COM7F_IMF() local
63 readRes = inStream->Read(_buf + pos, curSize, &processed); in Z7_COM7F_IMF()
64 if (processed > curSize) in Z7_COM7F_IMF()
66 pos += processed; in Z7_COM7F_IMF()
67 if (readRes != S_OK || processed == 0) in Z7_COM7F_IMF()
83 UInt32 processed = 0; in Z7_COM7F_IMF() local
84 const HRESULT res = outStream->Write(_buf + pos, curSize, &processed); in Z7_COM7F_IMF()
85 if (processed > curSize) in Z7_COM7F_IMF()
87 pos += processed; in Z7_COM7F_IMF()
88 TotalSize += processed; in Z7_COM7F_IMF()
90 if (processed == 0) in Z7_COM7F_IMF()