Lines Matching refs:in
4 * you may not use this file except in compliance with the License.
9 * Unless required by applicable law or agreed to in writing, software
264 auto readFunc = [&output, &writeFunc, &writeTasks, &result] (std::ifstream& in, int dataSize) {
265 while (in) {
272 in.read(buf, min);
273 dataSize -= in.gcount();
296 std::ifstream in(input, std::ios::binary);
298 bool flag = (in.rdstate() != 0);
309 while (!in.eof()) {
310 in.read(buffer, FILE_BUFFER_BLOCK);
312 if (in.fail() && !in.eof()) {
318 std::streamsize readLen = in.gcount();