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
393 ifstream in(filePath, ifstream::in | ifstream::binary);
394 if (!in.is_open()) {
399 in.seekg(0, in.end);
400 int32_t length = in.tellg();
401 in.seekg(0, in.beg);
407 in.read(buffer, length);