Lines Matching refs:upperBits
36790 LONG upperBits; /* Most sig. 32 bits of new offset */
36797 upperBits = (LONG)((iOffset>>32) & 0x7fffffff);
36807 dwRet = osSetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN);
37266 DWORD upperBits;
37270 lowerBits = osGetFileSize(pFile->h, &upperBits);
37271 *pSize = (((sqlite3_int64)upperBits)<<32) + lowerBits;