Home | History | Annotate | Download | only in dist

Lines Matching refs:lowerBits

27985   LONG lowerBits = (LONG)(offset & 0xffffffff);
27994 rc = SetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN);
28023 LONG lowerBits = (LONG)(offset & 0xffffffff);
28033 rc = SetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN);
28059 LONG lowerBits = (LONG)(nByte & 0xffffffff);
28067 rc = SetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN);
28129 DWORD lowerBits;
28135 lowerBits = GetFileSize(pFile->h, &upperBits);
28136 if( (lowerBits == INVALID_FILE_SIZE)
28142 *pSize = (((sqlite3_int64)upperBits)<<32) + lowerBits;