Home
last modified time | relevance | path

Searched refs:mmapSize (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/src/
H A Dos_unix.c3360 if( offset<pFile->mmapSize ){ in unixRead()
3361 if( offset+amt <= pFile->mmapSize ){ in unixRead()
3512 if( offset<pFile->mmapSize ){ in unixWrite()
3823 if( nByte<pFile->mmapSize ){ in unixTruncate()
3824 pFile->mmapSize = nByte; in unixTruncate()
4048 if( pFile->mmapSize>0 ){ in unixFileControl()
5125 pFd->mmapSize = 0; in unixUnmapfile()
5157 assert( nNew>pFd->mmapSize ); in unixRemapfile()
5169 i64 nReuse = pFd->mmapSize; in unixRemapfile()
5254 if( nMap!=pFd->mmapSize ){ in unixMapfile()
[all …]
H A Dos_win.c2744 if( offset<pFile->mmapSize ){
2745 if( offset+amt <= pFile->mmapSize ){
2822 if( offset<pFile->mmapSize ){
2953 oldMmapSize = pFile->mmapSize;
3629 if( pFile->mmapSize>0 ){
4382 pFile->mmapSize = 0;
4438 if( nMap==0 && pFd->mmapSize>0 ){
4441 if( nMap!=pFd->mmapSize ){
4492 pFd->mmapSize = nMap;
4532 if( pFd->mmapSize >= iOff+nAmt ){
[all …]
/sqlite-3.40.0/test/
H A Dkvtest.c810 int mmapSize = 0; /* --mmap N argument */ in runMain() local
866 mmapSize = integerValue(argv[++i]); in runMain()
921 zSql = sqlite3_mprintf("PRAGMA mmap_size=%d", mmapSize); in runMain()
1105 printf("--mmap %d%s\n", mmapSize, bBlobApi ? " --blob-api" : ""); in runMain()
H A Dspeedtest1.c2215 int mmapSize = 0; /* How big of a memory map to use */ in main() local
2302 mmapSize = integerValue(argv[++i]); in main()
2486 if( mmapSize>0 ){ in main()
2487 speedtest1_exec("PRAGMA mmap_size=%d", mmapSize); in main()