Searched defs:pgsz (Results 1 - 9 of 9) sorted by path

/external/blktrace/btt/
H A Dmmap.c40 static long pgsz; variable
86 cur_min = (cur & ~(pgsz-1));
106 pgsz = sysconf(_SC_PAGESIZE);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c1228 int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**);
14059 int pgsz,
14063 return id->pMethods->xShmMap(id, iPage, pgsz, bExtend, pp);
14056 sqlite3OsShmMap( sqlite3_file *id, int iPage, int pgsz, int bExtend, void volatile **pp ) argument
39230 int pgsz = pPager->pageSize; /* Number of bytes to read */ local
120994 int pgsz = p->nPgsz; /* Database page size */ local
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_write.c1077 int pgsz = p->nPgsz; /* Database page size */ local
1123 pCsr->nRowAvg = (int)(((nByte / nDoc) + pgsz) / pgsz);
1130 ** than (pgsz-35) bytes in size (the file-format documentation
1136 if( (nBlob+35)>pgsz ){
1137 int nOvfl = (nBlob + 34)/pgsz;
/external/chromium_org/third_party/sqlite/src/src/
H A Dos.c115 int pgsz,
119 return id->pMethods->xShmMap(id, iPage, pgsz, bExtend, pp);
112 sqlite3OsShmMap( sqlite3_file *id, int iPage, int pgsz, int bExtend, void volatile **pp ) argument
H A Dpager.c2800 int pgsz = pPager->pageSize; /* Number of bytes to read */ local
2813 rc = sqlite3WalRead(pPager->pWal, pgno, &isInWal, pgsz, pPg->pData);
2817 rc = sqlite3OsRead(pPager->fd, pPg->pData, pgsz, iOffset);
H A Dtest_vfs.c142 int pgsz; /* Page size */ member in struct:TestvfsBuffer
772 static void tvfsAllocPage(TestvfsBuffer *p, int iPage, int pgsz){ argument
775 p->aPage[iPage] = (u8 *)ckalloc(pgsz);
776 memset(p->aPage[iPage], 0, pgsz);
777 p->pgsz = pgsz;
784 int pgsz, /* Size of pages */
803 Tcl_ListObjAppendElement(p->interp, pArg, Tcl_NewIntObj(pgsz));
816 tvfsAllocPage(pFd->pShm, iPage, pgsz);
1004 int pgsz local
781 tvfsShmMap( sqlite3_file *pFile, int iPage, int pgsz, int isWrite, void volatile **pp ) argument
1018 int pgsz = pBuffer->pgsz; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c854 int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**);
15883 int pgsz,
15888 return id->pMethods->xShmMap(id, iPage, pgsz, bExtend, pp);
15880 sqlite3OsShmMap( sqlite3_file *id, int iPage, int pgsz, int bExtend, void volatile **pp ) argument
28413 int pgsz = osGetpagesize(); /* System page size */ local
28693 static const int pgsz = 4096; local
43125 int pgsz = pPager->pageSize; /* Number of bytes to read */ local
75466 int pgsz; /* Page size of main database */ local
138236 int pgsz = p->nPgsz; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c854 int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**);
15883 int pgsz,
15888 return id->pMethods->xShmMap(id, iPage, pgsz, bExtend, pp);
15880 sqlite3OsShmMap( sqlite3_file *id, int iPage, int pgsz, int bExtend, void volatile **pp ) argument
28433 int pgsz = osGetpagesize(); /* System page size */ local
28713 static const int pgsz = 4096; local
43145 int pgsz = pPager->pageSize; /* Number of bytes to read */ local
75486 int pgsz; /* Page size of main database */ local
138268 int pgsz = p->nPgsz; local
[all...]
/external/valgrind/main/memcheck/tests/
H A Daddressable.c13 static int pgsz; variable
35 char *m = mm(0, pgsz * 5, PROT_READ);
37 (void) VALGRIND_CHECK_MEM_IS_DEFINED(m, pgsz*5); /* all defined */
43 char *m = mm(0, pgsz * 5, PROT_READ|PROT_WRITE);
44 (void) VALGRIND_CHECK_MEM_IS_DEFINED(m, pgsz*5); /* all OK */
46 munmap(&m[pgsz*2], pgsz);
48 (void) VALGRIND_CHECK_MEM_IS_DEFINED(&m[pgsz*2], pgsz); /* undefined */
51 m[pgsz*
[all...]

Completed in 923 milliseconds