Lines Matching refs:upperBits
36772 LONG upperBits; /* Most sig. 32 bits of new offset */
36779 upperBits = (LONG)((iOffset>>32) & 0x7fffffff);
36789 dwRet = osSetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN);
37248 DWORD upperBits;
37252 lowerBits = osGetFileSize(pFile->h, &upperBits);
37253 *pSize = (((sqlite3_int64)upperBits)<<32) + lowerBits;