Searched refs:nOut (Results 1 - 25 of 29) sorted by relevance

12

/external/bzip2/
H A Dunzcrash.c44 int nIn, nOut, nZ; variable
105 nOut = M_BLOCK_OUT;
107 outbuf, &nOut, zbuf, nZ, 0, 0 );
113 if (nOut != nIn) {
114 fprintf(stderr, "nIn/nOut mismatch %d %d\n", nIn, nOut );
117 for (i = 0; i < nOut; i++)
122 if (i == nOut) fprintf(stderr, "really ok!\n" );
130 assert (nOut == nIn);
131 for (i = 0; i < nOut;
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_hexio.c154 int nIn, nOut, written; local
171 nOut = sqlite3TestHexToBin(zIn, nIn, aOut);
181 written = fwrite(aOut, 1, nOut, out);
202 int nIn, nOut; local
216 nOut = sqlite3TestHexToBin(zIn, nIn, aOut);
217 if( nOut>=4 ){
221 memcpy(&aNum[4-nOut], aOut, nOut);
300 int nOut; local
311 nOut
[all...]
H A Dstatus.c111 *pCurrent = db->lookaside.nOut;
114 db->lookaside.mxOut = db->lookaside.nOut;
H A Dwal.h63 int sqlite3WalRead(Wal *pWal, Pgno pgno, int *pInWal, int nOut, u8 *pOut);
H A Dtest_devsym.c313 int nOut,
316 return sqlite3OsFullPathname(g.pVfs, zPath, nOut, zOut);
310 devsymFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nOut, char *zOut ) argument
H A Dmalloc.c495 db->lookaside.nOut--;
626 db->lookaside.nOut++;
628 if( db->lookaside.nOut>db->lookaside.mxOut ){
629 db->lookaside.mxOut = db->lookaside.nOut;
H A Dtest_onefile.c166 static int fsFullPathname(sqlite3_vfs*, const char *zName, int nOut,char *zOut);
748 int nOut, /* Size of output buffer in bytes */
752 return pParent->xFullPathname(pParent, zPath, nOut, zOut);
745 fsFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nOut, char *zOut ) argument
H A Dtest_journal.c760 int nOut,
763 return sqlite3OsFullPathname(g.pVfs, zPath, nOut, zOut);
757 jtFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nOut, char *zOut ) argument
H A Dtest_vfstrace.c578 int nOut,
586 rc = pRoot->xFullPathname(pRoot, zPath, nOut, zOut);
588 vfstrace_printf(pInfo, ", out=\"%.*s\"\n", nOut, zOut);
575 vfstraceFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nOut, char *zOut ) argument
H A Dtest_osinst.c542 int nOut,
545 return REALVFS(pVfs)->xFullPathname(REALVFS(pVfs), zPath, nOut, zOut);
539 vfslogFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nOut, char *zOut ) argument
H A Dtest_vfs.c663 int nOut,
666 return sqlite3OsFullPathname(PARENTVFS(pVfs), zPath, nOut, zOut);
660 tvfsFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nOut, char *zOut ) argument
H A Dos_unix.c5252 int nOut, /* Size of output buffer in bytes */
5266 zOut[nOut-1] = '\0';
5268 sqlite3_snprintf(nOut, zOut, "%s", zPath);
5271 if( osGetcwd(zOut, nOut-1)==0 ){
5275 sqlite3_snprintf(nOut-nCwd, &zOut[nCwd], "/%s", zPath);
5249 unixFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nOut, char *zOut ) argument
H A Dmain.c451 if( db->lookaside.nOut ){
795 assert( db->lookaside.nOut==0 ); /* Fails on a lookaside memory leak */
H A Dsqlite.h.in922 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
H A Dwal.c2219 int nOut, /* Size of buffer pOut in bytes */
2320 return sqlite3OsRead(pWal->pWalFd, pOut, nOut, iOffset);
2215 sqlite3WalRead( Wal *pWal, Pgno pgno, int *pInWal, int nOut, u8 *pOut ) argument
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3.c1965 int nOut = 0; local
1975 nOut = pTS->anOutput[i];
1978 int nNew = nOut + pTS->anOutput[i];
1985 aNew, &nNew, pTS->aaOutput[i], pTS->anOutput[i], aOut, nOut, 0
1991 nOut = nNew;
1997 pTS->anOutput[0] = nOut;
2397 int nOut = 0; local
2462 ** currently identified by doclist pOut/nOut. No further doclists will
2484 nOut = nList;
2486 nDoc = fts3DoclistCountDocids(1, pOut, nOut);
2608 int nOut; /* Size of buffer aOut in bytes */ local
[all...]
/external/valgrind/main/VEX/switchback/
H A Dtest_bzip2.c5941 int nIn, nOut, nZ; variable
6081 nOut = M_BLOCK_OUT;
6083 outbuf, &nOut, zbuf, nZ, 1/*small*/, 0 );
6089 if (nOut != nIn) {
6090 vexxx_printf( "nIn/nOut mismatch %d %d\n", nIn, nOut );
6093 for (i = 0; i < nOut; i++)
6098 if (i == nOut) vexxx_printf( "really ok!\n" );
6106 assert (nOut == nIn);
6107 for (i = 0; i < nOut;
[all...]
/external/valgrind/main/exp-sgcheck/tests/
H A Dhackedbz2.c5965 unsigned int nOut; variable
6497 nOut = M_BLOCK_OUT;
6499 outbuf, &nOut, zbuf, nZ, 1/*small*/, 0 );
6507 if (nOut != nIn) {
6508 vex_printf( "nIn/nOut mismatch %d %d\n", nIn, nOut );
6511 for (i = 0; i < nOut; i++)
6516 if (i == nOut) vex_printf( "really ok!\n" );
6524 assert (nOut == nIn);
6525 for (i = 0; i < nOut;
[all...]
/external/valgrind/main/memcheck/tests/
H A Dorigin5-bz2.c5957 unsigned int nOut; variable
6497 nOut = M_BLOCK_OUT;
6499 outbuf, &nOut, zbuf, nZ, 1/*small*/, 0 );
6507 if (nOut != nIn) {
6508 vex_printf( "nIn/nOut mismatch %d %d\n", nIn, nOut );
6511 for (i = 0; i < nOut; i++)
6516 if (i == nOut) vex_printf( "really ok!\n" );
6524 assert (nOut == nIn);
6525 for (i = 0; i < nOut;
[all...]
H A Dvarinfo6.c5994 unsigned int nOut; variable
6531 nOut = M_BLOCK_OUT;
6533 outbuf, &nOut, zbuf, nZ, 1/*small*/, 0 );
6541 if (nOut != nIn) {
6542 vex_printf( "nIn/nOut mismatch %d %d\n", nIn, nOut );
6545 for (i = 0; i < nOut; i++)
6550 if (i == nOut) vex_printf( "really ok!\n" );
6558 assert (nOut == nIn);
6559 for (i = 0; i < nOut;
[all...]
/external/valgrind/main/perf/
H A Dbz2.c5956 unsigned int nOut; variable
6489 nOut = M_BLOCK_OUT;
6491 outbuf, &nOut, zbuf, nZ, 1/*small*/, 0 );
6499 if (nOut != nIn) {
6500 vex_printf( "nIn/nOut mismatch %d %d\n", nIn, nOut );
6503 for (i = 0; i < nOut; i++)
6508 if (i == nOut) vex_printf( "really ok!\n" );
6516 assert (nOut == nIn);
6517 for (i = 0; i < nOut;
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c1270 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
10410 int nOut; /* Number of buffers currently checked out */ member in struct:Lookaside
10411 int mxOut; /* Highwater mark for nOut */
14441 *pCurrent = db->lookaside.nOut;
14444 db->lookaside.mxOut = db->lookaside.nOut;
20245 db->lookaside.nOut--;
20377 db->lookaside.nOut++;
20379 if( db->lookaside.nOut>db->lookaside.mxOut ){
20380 db->lookaside.mxOut = db->lookaside.nOut;
20732 int nOut; /* Siz local
30243 unixFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nOut, char *zOut ) argument
49878 sqlite3WalReadFrame( Wal *pWal, u32 iRead, int nOut, u8 *pOut ) argument
67733 int nOut; /* Number of bytes of the string text to include in output */ local
67764 int nOut; /* Number of bytes of the blob to include in output */ local
84829 decodeIntArray( char *zIntArray, int nOut, tRowcnt *aOut, LogEst *aLog, Index *pIndex ) argument
92786 i64 nOut; /* Maximum size of zOut */ local
110564 LogEst nOut; /* Estimated number of output rows */ member in struct:WhereLoop
110596 LogEst nOut; /* Number of outputs for this subquery */ member in struct:WhereOrCost
113052 int nOut = pLoop->nOut; local
115319 tRowcnt nOut = 0; local
116441 LogEst nOut; /* Rows visited by (pFrom+pWLoop) */ local
129391 int nOut = 0; local
129439 int nOut = 0; local
[all...]
H A Dsqlite3.h1155 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
/external/sqlite/dist/
H A Dsqlite3.c1270 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
10410 int nOut; /* Number of buffers currently checked out */ member in struct:Lookaside
10411 int mxOut; /* Highwater mark for nOut */
14441 *pCurrent = db->lookaside.nOut;
14444 db->lookaside.mxOut = db->lookaside.nOut;
20245 db->lookaside.nOut--;
20377 db->lookaside.nOut++;
20379 if( db->lookaside.nOut>db->lookaside.mxOut ){
20380 db->lookaside.mxOut = db->lookaside.nOut;
20732 int nOut; /* Siz local
30263 unixFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nOut, char *zOut ) argument
49898 sqlite3WalReadFrame( Wal *pWal, u32 iRead, int nOut, u8 *pOut ) argument
67753 int nOut; /* Number of bytes of the string text to include in output */ local
67784 int nOut; /* Number of bytes of the blob to include in output */ local
84849 decodeIntArray( char *zIntArray, int nOut, tRowcnt *aOut, LogEst *aLog, Index *pIndex ) argument
92806 i64 nOut; /* Maximum size of zOut */ local
110584 LogEst nOut; /* Estimated number of output rows */ member in struct:WhereLoop
110616 LogEst nOut; /* Number of outputs for this subquery */ member in struct:WhereOrCost
113072 int nOut = pLoop->nOut; local
115339 tRowcnt nOut = 0; local
116461 LogEst nOut; /* Rows visited by (pFrom+pWLoop) */ local
129411 int nOut = 0; local
129459 int nOut = 0; local
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h927 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);

Completed in 1402 milliseconds

12