• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/sqlite-3.6.22/

Lines Matching defs:szPage

5740 ** first parameter, szPage, is the size in bytes of the pages that must
5741 ** be allocated by the cache. ^szPage will not be a power of two. ^szPage
5768 ** ^A 'page', in this context, is a buffer of szPage bytes aligned at an
5830 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
7702 int szPage, /* Size of every page */
9865 int szPage; /* Size of each page in pPage[] */
10747 0, /* szPage */
15706 if( sqlite3GlobalConfig.pPage && sqlite3GlobalConfig.szPage>=512
15710 int sz = ROUNDDOWN8(sqlite3GlobalConfig.szPage);
15715 [sqlite3GlobalConfig.szPage*sqlite3GlobalConfig.nPage];
15720 sqlite3GlobalConfig.szPage = 0;
29464 int szPage; /* Size of every page in this cache */
29607 int szPage, /* Size of every page */
29615 p->szPage = szPage;
29627 SQLITE_PRIVATE void sqlite3PcacheSetPageSize(PCache *pCache, int szPage){
29633 pCache->szPage = szPage;
29658 nByte = pCache->szPage + pCache->szExtra + sizeof(PgHdr);
29854 memset(pCache->pPage1->pData, 0, pCache->szPage);
30046 /* Cache configuration parameters. Page size (szPage) and the purgeable
30051 int szPage; /* Size of allocated pages in bytes */
30070 ** structure. A buffer of PgHdr1.pCache->szPage bytes is allocated
30116 ** When a PgHdr1 structure is allocated, the associated PCache1.szPage
30118 ** size of the allocation is sizeof(PgHdr1)+PCache1.szPage byte). The
30120 ** an argument and returns a pointer to the associated block of szPage
30122 ** a pointer to a block of szPage bytes of data and the return value is
30127 #define PGHDR1_TO_PAGE(p) (void*)(((char*)p) - p->pCache->szPage)
30128 #define PAGE_TO_PGHDR1(c, p) (PgHdr1*)(((char*)p) + c->szPage)
30219 int nByte = sizeof(PgHdr1) + pCache->szPage;
30443 static sqlite3_pcache *pcache1Create(int szPage, int bPurgeable){
30449 pCache->szPage = szPage;
30577 if( pPage->pCache->szPage!=pCache->szPage ){
31735 int szPage; /* Page size */
31740 szPage = pPager->pageSize;
31744 if( 0==(dc&(SQLITE_IOCAP_ATOMIC|(szPage>>8)) || nSector>szPage) ){
95381 sqlite3GlobalConfig.szPage, sqlite3GlobalConfig.nPage);
95534 sqlite3GlobalConfig.szPage = va_arg(ap, int);