HomeSort by relevance Sort by last modified time
    Searched refs:pgsz (Results 1 - 14 of 14) sorted by null

  /external/valgrind/main/memcheck/tests/
addressable.c 13 static int pgsz; variable
35 char *m = mm(0, pgsz * 5, PROT_READ);
37 VALGRIND_CHECK_MEM_IS_DEFINED(m, pgsz*5); /* all defined */
43 char *m = mm(0, pgsz * 5, PROT_READ|PROT_WRITE);
44 VALGRIND_CHECK_MEM_IS_DEFINED(m, pgsz*5); /* all OK */
46 munmap(&m[pgsz*2], pgsz);
48 VALGRIND_CHECK_MEM_IS_DEFINED(&m[pgsz*2], pgsz); /* undefined */
51 m[pgsz*2] = 'x'; /* unmapped fault *
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
wal_common.tcl 16 proc wal_file_size {nFrame pgsz} {
17 expr {32 + ($pgsz+24)*$nFrame}
20 proc wal_frame_count {zFile pgsz} {
24 expr {($f - 32) / ($pgsz+24)}
  /external/blktrace/btt/
mmap.c 40 static long pgsz; variable
86 cur_min = (cur & ~(pgsz-1));
106 pgsz = sysconf(_SC_PAGESIZE);
  /external/chromium_org/third_party/sqlite/src/src/
test_vfs.c 142 int pgsz; /* Page size */ member in struct:TestvfsBuffer
772 static void tvfsAllocPage(TestvfsBuffer *p, int iPage, int pgsz){
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 = pBuffer->pgsz local
1018 int pgsz = pBuffer->pgsz; local
    [all...]
os.c 115 int pgsz,
119 return id->pMethods->xShmMap(id, iPage, pgsz, bExtend, pp);
sqlite.h.in 680 int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**);
    [all...]
pager.c 2810 int pgsz = pPager->pageSize; \/* Number of bytes to read *\/ local
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_write.c 1077 int pgsz = p->nPgsz; \/* Database page size *\/ local
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.h 685 int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**);
    [all...]
sqlite3.c 39253 int pgsz = pPager->pageSize; \/* Number of bytes to read *\/ local
121173 int pgsz = p->nPgsz; \/* Database page size *\/ local
    [all...]
  /external/sqlite/dist/orig/
sqlite3.h 698 int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**);
    [all...]
sqlite3.c 41238 int pgsz = pPager->pageSize; \/* Number of bytes to read *\/ local
72030 int pgsz; \/* Page size of main database *\/ local
126484 int pgsz = p->nPgsz; local
    [all...]
  /external/sqlite/dist/
sqlite3.h 698 int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**);
    [all...]
sqlite3.c 41266 int pgsz = pPager->pageSize; \/* Number of bytes to read *\/ local
72058 int pgsz; \/* Page size of main database *\/ local
126530 int pgsz = p->nPgsz; local
    [all...]

Completed in 359 milliseconds