Home | History | Annotate | Download | only in dist

Lines Matching refs:upperBits

40385   LONG upperBits;                 /* Most sig. 32 bits of new offset */
40392 upperBits = (LONG)((iOffset>>32) & 0x7fffffff);
40402 dwRet = osSetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN);
40866 DWORD upperBits;
40870 lowerBits = osGetFileSize(pFile->h, &upperBits);
40871 *pSize = (((sqlite3_int64)upperBits)<<32) + lowerBits;