Searched refs:iLimit (Results 1 - 25 of 27) sorted by relevance

12

/external/emma/core/java12/com/vladium/emma/filter/
H A DIInclExclFilter.java75 for (int i = 0, iLimit = specs.length; i < iLimit; ++ i)
128 for (int i = 0, iLimit = inclusions.length; i < iLimit; ++ i)
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DInnerClassesAttribute_info.java35 for (int i = 0, iLimit = size (); i < iLimit; ++ i)
/external/emma/core/java12/com/vladium/util/
H A DStrings.java39 for (int i = 0, iLimit = strings.length; i < iLimit; ++ i)
188 for (int i = 0, iLimit = s.length (); i < iLimit; ++ i)
229 for (int i = 0, iLimit = s.length (); i < iLimit; ++ i)
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_quota.c71 sqlite3_int64 iLimit; /* Upper bound on total file size */ member in struct:quotaGroup
172 if( pGroup->pFiles==0 && pGroup->iLimit==0 ){
414 if( szNew>pGroup->iLimit && pGroup->iLimit>0 ){
416 pGroup->xCallback(pFile->zFilename, &pGroup->iLimit, szNew,
419 if( szNew>pGroup->iLimit && pGroup->iLimit>0 ){
632 pGroup->iLimit = 0;
647 ** merely updates the iLimit, xCallback, and pArg values for that quota
650 ** If the iLimit fo
662 sqlite3_quota_set( const char *zPattern, sqlite3_int64 iLimit, void (*xCallback)( const char *zFilename, sqlite3_int64 *piLimit, sqlite3_int64 iSize, void *pArg ), void *pArg, void (*xDestroy)(void*) ) argument
843 sqlite3_int64 iLimit; /* Initial quota in bytes */ local
[all...]
H A Dpcache1.c481 ** greater than or equal to iLimit. Any pinned pages that meet this
488 unsigned int iLimit /* Drop pages with this pgno or larger */
497 if( pPage->iKey>=iLimit ){
864 ** or greater than parameter iLimit. Any pinned pages with a page number
865 ** equal to or greater than iLimit are implicitly unpinned.
867 static void pcache1Truncate(sqlite3_pcache *p, unsigned int iLimit){ argument
870 if( iLimit<=pCache->iMaxKey ){
871 pcache1TruncateUnsafe(pCache, iLimit);
872 pCache->iMaxKey = iLimit-1;
H A Dpragma.c581 i64 iLimit = -2; local
583 sqlite3Atoi64(zRight, &iLimit, 1000000, SQLITE_UTF8);
584 if( iLimit<-1 ) iLimit = -1;
586 iLimit = sqlite3PagerJournalSizeLimit(pPager, iLimit);
587 returnSingleInt(pParse, "journal_size_limit", iLimit);
660 int iLimit, addr; local
664 if( zRight==0 || !sqlite3GetInt32(zRight, &iLimit) || iLimit<
[all...]
H A Dselect.c430 if( pSelect->iLimit ){
432 int iLimit; local
434 iLimit = pSelect->iOffset+1;
436 iLimit = pSelect->iLimit;
438 addr1 = sqlite3VdbeAddOp1(v, OP_IfZero, iLimit);
439 sqlite3VdbeAddOp2(v, OP_AddImm, iLimit, -1);
727 if( pOrderBy==0 && p->iLimit ){
728 sqlite3VdbeAddOp3(v, OP_IfZero, p->iLimit, iBreak, -1);
1399 ** Compute the iLimit an
1418 int iLimit = 0; local
[all...]
H A Dvdbemem.c696 int iLimit; /* Maximum allowed string or blob size */ local
709 iLimit = pMem->db->aLimit[SQLITE_LIMIT_LENGTH];
711 iLimit = SQLITE_MAX_LENGTH;
717 for(nByte=0; nByte<=iLimit && z[nByte]; nByte++){}
719 for(nByte=0; nByte<=iLimit && (z[nByte] | z[nByte+1]); nByte+=2){}
733 if( nByte>iLimit ){
762 if( nByte>iLimit ){
H A Dtest_pcache.c371 ** Truncate the page cache. Every page with a key of iLimit or larger
374 static void testpcacheTruncate(sqlite3_pcache *pCache, unsigned iLimit){ argument
381 if( p->a[i].key>=iLimit ){
H A Dwal.c895 int iLimit = 0; /* Zero values greater than this */ local
917 iLimit = pWal->hdr.mxFrame - iZero;
918 assert( iLimit>0 );
920 if( aHash[i]>iLimit ){
928 nByte = (int)((char *)aHash - (char *)&aPgno[iLimit+1]);
929 memset((void *)&aPgno[iLimit+1], 0, nByte);
935 if( iLimit ){
938 for(i=1; i<=iLimit; i++){
H A Dpager.c1293 const i64 iLimit = pPager->journalSizeLimit; /* Local cache of jsl */ local
1296 if( doTruncate || iLimit==0 ){
1312 if( rc==SQLITE_OK && iLimit>0 ){
1315 if( rc==SQLITE_OK && sz>iLimit ){
1316 rc = sqlite3OsTruncate(pPager->jfd, iLimit);
6639 i64 sqlite3PagerJournalSizeLimit(Pager *pPager, i64 iLimit){ argument
6640 if( iLimit>=-1 ){
6641 pPager->journalSizeLimit = iLimit;
H A Dsqlite.h.in5831 ** to the value of the iLimit parameter passed to xTruncate(). If any
5852 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
H A Dexpr.c954 pNew->iLimit = 0;
1068 ** If the expression list pEList contains more than iLimit elements,
1655 pExpr->x.pSelect->iLimit = 0;
1756 pSel->iLimit = 0;
/external/emma/core/java12/com/vladium/emma/report/
H A DIItemAttribute.java154 final int iLimit = Math.max (1, 5 - appendTo.length () + appendToStart);
155 for (int i = 0; i < iLimit; ++ i) appendTo.append (' ');
/external/emma/core/java12/com/vladium/jcd/cls/
H A DClassDef.java313 final int iLimit = ifcs.length;
314 for (int i = 0; i < iLimit; ++ i)
321 for (int i = 0; i < iLimit; ++ i)
385 for (int i = 0, iLimit = cds.length; i < iLimit; ++ i)
/external/chromium_org/third_party/sqlite/src/test/
H A Dmalloc_common.tcl576 for {set iLimit $nStartLimit} {$nFail} {incr iLimit} {
577 for {set iFail 1} {$nFail && $iFail<=$iLimit} {incr iFail} {
586 do_test "$name.$zName.$iLimit.$iFail" [list set {} $res] $str
/external/sqlite/dist/orig/
H A Dsqlite3.h6661 ** to the value of the iLimit parameter passed to xTruncate(). If any
6691 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
6712 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
H A Dsqlite3.c6776 ** to the value of the iLimit parameter passed to xTruncate(). If any
6806 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
6827 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
11693 int iLimit, iOffset; /* Memory registers holding LIMIT & OFFSET counters */ member in struct:Select
39483 pcache1Truncate(sqlite3_pcache *p, unsigned int iLimit) argument
41574 const i64 iLimit = pPager->journalSizeLimit; /* Local cache of jsl */ local
47257 sqlite3PagerJournalSizeLimit(Pager *pPager, i64 iLimit) argument
48393 int iLimit = 0; /* Zero values greater than this */ local
48803 sqlite3WalLimit(Wal *pWal, i64 iLimit) argument
61533 int iLimit; /* Maximum allowed string or blob size */ local
99250 i64 iLimit = -2; local
99321 int iLimit, addr; local
101967 int iLimit; local
103192 int iLimit = 0; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.h6661 ** to the value of the iLimit parameter passed to xTruncate(). If any
6691 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
6712 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
H A Dsqlite3.c6776 ** to the value of the iLimit parameter passed to xTruncate(). If any
6806 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
6827 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
11693 int iLimit, iOffset; /* Memory registers holding LIMIT & OFFSET counters */ member in struct:Select
39503 pcache1Truncate(sqlite3_pcache *p, unsigned int iLimit) argument
41594 const i64 iLimit = pPager->journalSizeLimit; /* Local cache of jsl */ local
47277 sqlite3PagerJournalSizeLimit(Pager *pPager, i64 iLimit) argument
48413 int iLimit = 0; /* Zero values greater than this */ local
48823 sqlite3WalLimit(Wal *pWal, i64 iLimit) argument
61553 int iLimit; /* Maximum allowed string or blob size */ local
99270 i64 iLimit = -2; local
99341 int iLimit, addr; local
101987 int iLimit; local
103212 int iLimit = 0; local
[all...]
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/emma/core/java12/com/vladium/emma/instr/
H A DInstrVisitor.java300 for (int i = 0, iLimit = interfaces.size (); i < iLimit; ++ i)
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h5836 ** to the value of the iLimit parameter passed to xTruncate(). If any
5857 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
H A Dsqlite3.c6379 ** to the value of the iLimit parameter passed to xTruncate(). If any
6400 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
10390 int iLimit, iOffset; /* Memory registers holding LIMIT & OFFSET counters */ member in struct:Select
35781 pcache1Truncate(sqlite3_pcache *p, unsigned int iLimit) argument
37723 const i64 iLimit = pPager->journalSizeLimit; /* Local cache of jsl */ local
43069 sqlite3PagerJournalSizeLimit(Pager *pPager, i64 iLimit) argument
44175 int iLimit = 0; /* Zero values greater than this */ local
56661 int iLimit; /* Maximum allowed string or blob size */ local
88117 i64 iLimit = -2; local
88196 int iLimit, addr; local
90354 int iLimit; local
91340 int iLimit = 0; local
[all...]

Completed in 3595 milliseconds

12