HomeSort by relevance Sort by last modified time
    Searched refs:nPage (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/third_party/sqlite/src/tool/
showjournal.c 78 unsigned nPage;
82 nPage =
96 return nPage;
110 int nPage, cnt;
127 cnt = nPage = (int)decode_journal_header(iOfst);
  /external/chromium_org/third_party/sqlite/src/src/
test_backup.c 39 {"step", BACKUP_STEP , 1, "npage" },
78 int nPage;
79 if( TCL_OK!=Tcl_GetIntFromObj(interp, objv[2], &nPage) ){
82 rc = sqlite3_backup_step(p, nPage);
test_journal.c 121 u32 nPage; /* Size of file in pages when transaction started */
124 u32 *aCksum; /* Checksum for first nPage pages */
366 pMain->pWritable = sqlite3BitvecCreate(pMain->nPage);
367 pMain->aCksum = sqlite3_malloc(sizeof(u32) * (pMain->nPage + 1));
372 }else if( pMain->nPage>0 ){
387 for(iPg=nDbsize+1; iPg<=pMain->nPage; iPg++){
409 for(ii=0; rc==SQLITE_OK && ii<pMain->nPage; ii++){
447 u32 nRec, nPage, nSector, nPagesize;
453 || decodeJournalHdr(zBuf, &nRec, &nPage, &nSector, &nPagesize)
479 if( pgno>0 && pgno<=pMain->nPage ){
    [all...]
pcache1.c 83 unsigned int nPage; /* Total number of pages in apHash */
461 pCache->nPage--;
490 TESTONLY( unsigned int nPage = 0; ) /* To assert pCache->nPage is correct */
498 pCache->nPage--;
504 TESTONLY( nPage++; )
508 assert( pCache->nPage==nPage );
623 n = pCache->nPage;
719 nPinned = pCache->nPage - pCache->nRecyclable
    [all...]
test2.c 77 int nPage;
85 if( Tcl_GetInt(interp, argv[2], &nPage) ) return TCL_ERROR;
93 sqlite3PagerSetCachesize(pPager, nPage);
315 int nPage;
322 sqlite3PagerPagecount(pPager, &nPage);
323 sqlite3_snprintf(sizeof(zBuf), zBuf, "%d", nPage);
btreeInt.h 426 u32 nPage; /* Number of pages in the database */
629 Pgno nPage; /* Number of pages in the database */
pager.c     [all...]
btree.c 528 assert( pgno<=pBt->nPage );
529 pBt->pHasContent = sqlite3BitvecCreate(pBt->nPage);
    [all...]
pcache.c 549 int nPage = 0;
551 nPage = sqlite3GlobalConfig.pcache.xPagecount(pCache->pCache);
553 return nPage;
test_stat.c 379 int nPage;
381 sqlite3PagerPagecount(pPager, &nPage);
382 if( nPage==0 ){
backup.c 324 ** Copy nPage pages from the source b-tree to the destination.
326 int sqlite3_backup_step(sqlite3_backup *p, int nPage){
386 for(ii=0; (nPage<0 || ii<nPage) && p->iNext<=(Pgno)nSrcPage && !rc; ii++){
wal.c 308 u32 nPage; /* Size of database in pages */
    [all...]
malloc.c 187 || sqlite3GlobalConfig.nPage<1 ){
190 sqlite3GlobalConfig.nPage = 0;
main.c 199 sqlite3GlobalConfig.szPage, sqlite3GlobalConfig.nPage);
353 sqlite3GlobalConfig.nPage = va_arg(ap, int);
    [all...]
sqlite.h.in     [all...]
  /external/icu4c/samples/layout/
clayout.c 66 si.nPage = context->height / pf_getLineHeight(context->paragraph);
200 si.nPos -= si.nPage;
204 si.nPos += si.nPage;
249 // NOTE: si.nPos + si.nPage may include a partial line at the bottom
252 lastLine = min (si.nPos + (le_int32) si.nPage, pf_getLineCount(context->paragraph) - 1);
layout.cpp 65 si.nPage = context->height / context->paragraph->getLineHeight();
198 si.nPos -= si.nPage;
202 si.nPos += si.nPage;
247 // NOTE: si.nPos + si.nPage may include a partial line at the bottom
250 lastLine = min (si.nPos + (le_int32) si.nPage, context->paragraph->getLineCount() - 1);
  /external/chromium/chrome/browser/ui/views/tab_contents/
native_tab_contents_view_win.cc 247 si.nPage = 10;
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
sqlite3.h     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
sqlite3.h     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]
sqlite3.h     [all...]
  /external/chromium_org/content/browser/web_contents/
web_contents_view_win.cc 455 si.nPage = 10;

Completed in 1829 milliseconds

1 2