Lines Matching refs:_2G
73 rc = RTFileSetSize(File, _2G + _1M);
88 else if (cb != _2G + _1M)
90 RTPrintf("RTFileGetSize return %RX64 bytes, expected %RX64.\n", cb, _2G + _1M);
162 rc = RTFileSeek(File, _2G + _1M, RTFILE_SEEK_BEGIN, NULL);
165 RTPrintf("Failed to seek to _2G + _1M in file #1. rc=%Rrc\n", rc);
171 if (offFile != _2G + _1M)
173 RTPrintf("RTFileTell -> %#llx, expected %#llx (#2)\n", offFile, _2G + _1M);
235 rc = RTFileSeek(File, _2G + 1, RTFILE_SEEK_BEGIN, NULL);
238 RTPrintf("Failed to seek to _2G + 1 in file #1. rc=%Rrc\n", rc);
244 if (offFile != _2G + 1)
246 RTPrintf("RTFileTell -> %#llx, expected %#llx (#3)\n", offFile, _2G + 1);
261 if (offFile != _2G + _1M + sizeof(szTestBuf)) /* assuming tail write was ok. */
263 RTPrintf("RTFileTell -> %#RX64, expected %#RX64 (#4)\n", offFile, _2G + _1M + sizeof(szTestBuf));