Lines Matching refs:upperBits
47666 LONG upperBits; /* Most sig. 32 bits of new offset */
47673 upperBits = (LONG)((iOffset>>32) & 0x7fffffff);
47683 dwRet = osSetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN);
48179 DWORD upperBits;
48183 lowerBits = osGetFileSize(pFile->h, &upperBits);
48184 *pSize = (((sqlite3_int64)upperBits)<<32) + lowerBits;