Lines Matching defs:window
874 std::vector<unsigned char> window;
929 window.clear();
1304 unsigned int windowSize = window.size();
1305 //### Compress as much of the window as possible
1309 //plus the 3 bytes after it in the window
1312 unsigned char ch = window[i];
1359 fputc(window[windowPos+i], stdout);
1362 fputc(window[windowPos-bestMatchDist+i], stdout);
1398 if (windowPos > window.size())
1399 windowPos = window.size();
1400 window.erase(window.begin() , window.begin()+windowPos);
1401 while (window.size() < 32768 && iter != uncompressed.end())
1403 window.push_back(*iter);
1406 if (window.size() >= 32768)