Home
last modified time | relevance | path

Searched refs:tRowcnt (Results 1 – 25 of 167) sorted by relevance

1234567

/dports/databases/sqlcipher/sqlcipher-3.4.2/src/
H A Danalyze.c459 p->a[i].anEq = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); in statInit()
460 p->a[i].anLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); in statInit()
461 p->a[i].anDLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); in statInit()
596 tRowcnt *anEq = pMin->anEq; in sampleInsert()
597 tRowcnt *anLt = pMin->anLt; in sampleInsert()
907 tRowcnt *aCnt = 0; in statGet()
1440 tRowcnt v;
1527 tRowcnt *aiRowEst = 0;
1534 pIndex->aiRowEst = (tRowcnt*)sqlite3MallocZero(sizeof(tRowcnt) * nCol);
1607 tRowcnt avgEq = 0;
[all …]
H A DsqliteInt.h734 typedef u64 tRowcnt; /* 64-bit only if requested at compile-time */ typedef
736 typedef u32 tRowcnt; /* 32-bit is the default */ typedef
2159 tRowcnt *aAvgEq; /* Average nEq values for keys not in aSample */
2161 tRowcnt *aiRowEst; /* Non-logarithmic stat1 data for this index */
2162 tRowcnt nRowEst0; /* Non-logarithmic number of rows in the index */
2193 tRowcnt *anEq; /* Est. number of rows where the key equals this sample */
2194 tRowcnt *anLt; /* Est. number of rows where key is less than this sample */
2195 tRowcnt *anDLt; /* Est. number of distinct keys less than this sample */
H A Dwhere.c1037 tRowcnt *aStat /* OUT: stats written here */ in whereKeyStats()
1186 tRowcnt iUpper, iGap; in whereKeyStats()
1417 tRowcnt a[2]; in whereRangeScanEst()
1440 tRowcnt iLower; /* Rows less than the lower bound */ in whereRangeScanEst()
1441 tRowcnt iUpper; /* Rows less than the upper bound */ in whereRangeScanEst()
1476 tRowcnt iNew; in whereRangeScanEst()
1493 tRowcnt iNew; in whereRangeScanEst()
1582 tRowcnt *pnRow /* Write the revised row estimate here */ in whereEqualScanEst()
1588 tRowcnt a[2]; /* Statistics */ in whereEqualScanEst()
1646 tRowcnt *pnRow /* Write the revised row estimate here */ in whereInScanEst()
[all …]
H A Dtest_bestindex.c503 pIdxInfo->estimatedRows = (tRowcnt)x; in tclBestIndex()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/src/
H A Danalyze.c453 p->a[i].anEq = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); in statInit()
454 p->a[i].anLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); in statInit()
455 p->a[i].anDLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); in statInit()
585 tRowcnt *anEq = pMin->anEq; in sampleInsert()
586 tRowcnt *anLt = pMin->anLt; in sampleInsert()
872 tRowcnt *aCnt = 0; in statGet()
1415 tRowcnt v;
1504 tRowcnt *aiRowEst = 0;
1511 pIndex->aiRowEst = (tRowcnt*)sqlite3MallocZero(sizeof(tRowcnt) * nCol);
1584 tRowcnt avgEq = 0;
[all …]
H A DsqliteInt.h777 typedef u64 tRowcnt; /* 64-bit only if requested at compile-time */ typedef
779 typedef u32 tRowcnt; /* 32-bit is the default */ typedef
2405 tRowcnt *aAvgEq; /* Average nEq values for keys not in aSample */
2407 tRowcnt *aiRowEst; /* Non-logarithmic stat1 data for this index */
2408 tRowcnt nRowEst0; /* Non-logarithmic number of rows in the index */
2441 tRowcnt *anEq; /* Est. number of rows where the key equals this sample */
2442 tRowcnt *anLt; /* Est. number of rows where key is less than this sample */
2443 tRowcnt *anDLt; /* Est. number of distinct keys less than this sample */
H A Dwhere.c1097 tRowcnt *aStat /* OUT: stats written here */ in whereKeyStats()
1246 tRowcnt iUpper, iGap; in whereKeyStats()
1480 tRowcnt a[2]; in whereRangeScanEst()
1503 tRowcnt iLower; /* Rows less than the lower bound */ in whereRangeScanEst()
1504 tRowcnt iUpper; /* Rows less than the upper bound */ in whereRangeScanEst()
1539 tRowcnt iNew; in whereRangeScanEst()
1556 tRowcnt iNew; in whereRangeScanEst()
1645 tRowcnt *pnRow /* Write the revised row estimate here */ in whereEqualScanEst()
1651 tRowcnt a[2]; /* Statistics */ in whereEqualScanEst()
1709 tRowcnt *pnRow /* Write the revised row estimate here */ in whereInScanEst()
[all …]
H A Dtest_bestindex.c513 pIdxInfo->estimatedRows = (tRowcnt)x; in tclBestIndex()
/dports/databases/sqlite3/sqlite-src-3350500/src/
H A Danalyze.c469 p->a[i].anEq = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); in statInit()
470 p->a[i].anLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); in statInit()
471 p->a[i].anDLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); in statInit()
601 tRowcnt *anEq = pMin->anEq; in sampleInsert()
744 tRowcnt nLt; in statPush()
894 tRowcnt *aCnt = 0; in statGet()
1485 tRowcnt v;
1574 tRowcnt *aiRowEst = 0;
1581 pIndex->aiRowEst = (tRowcnt*)sqlite3MallocZero(sizeof(tRowcnt) * nCol);
1654 tRowcnt avgEq = 0;
[all …]
H A DsqliteInt.h814 typedef u64 tRowcnt; /* 64-bit only if requested at compile-time */ typedef
816 typedef u32 tRowcnt; /* 32-bit is the default */ typedef
2507 tRowcnt *aAvgEq; /* Average nEq values for keys not in aSample */
2509 tRowcnt *aiRowEst; /* Non-logarithmic stat1 data for this index */
2510 tRowcnt nRowEst0; /* Non-logarithmic number of rows in the index */
2543 tRowcnt *anEq; /* Est. number of rows where the key equals this sample */
2544 tRowcnt *anLt; /* Est. number of rows where key is less than this sample */
2545 tRowcnt *anDLt; /* Est. number of distinct keys less than this sample */
H A Dwhere.c1132 tRowcnt *aStat /* OUT: stats written here */ in whereKeyStats()
1281 tRowcnt iUpper, iGap; in whereKeyStats()
1515 tRowcnt a[2]; in whereRangeScanEst()
1538 tRowcnt iLower; /* Rows less than the lower bound */ in whereRangeScanEst()
1539 tRowcnt iUpper; /* Rows less than the upper bound */ in whereRangeScanEst()
1574 tRowcnt iNew; in whereRangeScanEst()
1591 tRowcnt iNew; in whereRangeScanEst()
1680 tRowcnt *pnRow /* Write the revised row estimate here */ in whereEqualScanEst()
1686 tRowcnt a[2]; /* Statistics */ in whereEqualScanEst()
1744 tRowcnt *pnRow /* Write the revised row estimate here */ in whereInScanEst()
[all …]
H A Dtest_bestindex.c513 pIdxInfo->estimatedRows = (tRowcnt)x; in tclBestIndex()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/src/
H A Danalyze.c469 p->a[i].anEq = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); in statInit()
470 p->a[i].anLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); in statInit()
471 p->a[i].anDLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); in statInit()
601 tRowcnt *anEq = pMin->anEq; in sampleInsert()
744 tRowcnt nLt; in statPush()
894 tRowcnt *aCnt = 0; in statGet()
1485 tRowcnt v;
1574 tRowcnt *aiRowEst = 0;
1581 pIndex->aiRowEst = (tRowcnt*)sqlite3MallocZero(sizeof(tRowcnt) * nCol);
1654 tRowcnt avgEq = 0;
[all …]
H A DsqliteInt.h801 typedef u64 tRowcnt; /* 64-bit only if requested at compile-time */ typedef
803 typedef u32 tRowcnt; /* 32-bit is the default */ typedef
2448 tRowcnt *aAvgEq; /* Average nEq values for keys not in aSample */
2450 tRowcnt *aiRowEst; /* Non-logarithmic stat1 data for this index */
2451 tRowcnt nRowEst0; /* Non-logarithmic number of rows in the index */
2484 tRowcnt *anEq; /* Est. number of rows where the key equals this sample */
2485 tRowcnt *anLt; /* Est. number of rows where key is less than this sample */
2486 tRowcnt *anDLt; /* Est. number of distinct keys less than this sample */
H A Dwhere.c1112 tRowcnt *aStat /* OUT: stats written here */ in whereKeyStats()
1261 tRowcnt iUpper, iGap; in whereKeyStats()
1495 tRowcnt a[2]; in whereRangeScanEst()
1518 tRowcnt iLower; /* Rows less than the lower bound */ in whereRangeScanEst()
1519 tRowcnt iUpper; /* Rows less than the upper bound */ in whereRangeScanEst()
1554 tRowcnt iNew; in whereRangeScanEst()
1571 tRowcnt iNew; in whereRangeScanEst()
1660 tRowcnt *pnRow /* Write the revised row estimate here */ in whereEqualScanEst()
1666 tRowcnt a[2]; /* Statistics */ in whereEqualScanEst()
1724 tRowcnt *pnRow /* Write the revised row estimate here */ in whereInScanEst()
[all …]
H A Dtest_bestindex.c513 pIdxInfo->estimatedRows = (tRowcnt)x; in tclBestIndex()
/dports/devel/cppcheck-gui/cppcheck-2.6.3/test/bug-hunting/cve/CVE-2019-16168/
H A Dwhere.c1099 tRowcnt *aStat /* OUT: stats written here */ in whereKeyStats()
1248 tRowcnt iUpper, iGap; in whereKeyStats()
1482 tRowcnt a[2]; in whereRangeScanEst()
1505 tRowcnt iLower; /* Rows less than the lower bound */ in whereRangeScanEst()
1506 tRowcnt iUpper; /* Rows less than the upper bound */ in whereRangeScanEst()
1541 tRowcnt iNew; in whereRangeScanEst()
1558 tRowcnt iNew; in whereRangeScanEst()
1647 tRowcnt *pnRow /* Write the revised row estimate here */ in whereEqualScanEst()
1653 tRowcnt a[2]; /* Statistics */ in whereEqualScanEst()
1711 tRowcnt *pnRow /* Write the revised row estimate here */ in whereInScanEst()
[all …]
/dports/devel/cppcheck/cppcheck-2.6.3/test/bug-hunting/cve/CVE-2019-16168/
H A Dwhere.c1099 tRowcnt *aStat /* OUT: stats written here */ in whereKeyStats()
1248 tRowcnt iUpper, iGap; in whereKeyStats()
1482 tRowcnt a[2]; in whereRangeScanEst()
1505 tRowcnt iLower; /* Rows less than the lower bound */ in whereRangeScanEst()
1506 tRowcnt iUpper; /* Rows less than the upper bound */ in whereRangeScanEst()
1541 tRowcnt iNew; in whereRangeScanEst()
1558 tRowcnt iNew; in whereRangeScanEst()
1647 tRowcnt *pnRow /* Write the revised row estimate here */ in whereEqualScanEst()
1653 tRowcnt a[2]; /* Statistics */ in whereEqualScanEst()
1711 tRowcnt *pnRow /* Write the revised row estimate here */ in whereInScanEst()
[all …]
/dports/games/craft/Craft-1.0fbsd/deps/sqlite/
H A Dsqlite3.c83037 tRowcnt *aCnt = 0;
83559 tRowcnt v;
83763 tRowcnt *pSpace;
87521 p->aiRowEst = (tRowcnt*)pExtra; pExtra += sizeof(tRowcnt)*(nCol+1);
88046 tRowcnt n;
111426 tRowcnt a[2];
111446 tRowcnt iLower;
111447 tRowcnt iUpper;
111473 tRowcnt iNew;
111488 tRowcnt iNew;
[all …]
/dports/biology/hyphy/hyphy-2.5.33/contrib/SQLite-3.8.2/
H A Dsqlite3.c82501 tRowcnt *aCnt = 0;
83016 tRowcnt v;
83220 tRowcnt *pSpace;
86981 p->aiRowEst = (tRowcnt*)pExtra; pExtra += sizeof(tRowcnt)*(nCol+1);
87506 tRowcnt n;
110451 tRowcnt a[2];
110471 tRowcnt iLower;
110472 tRowcnt iUpper;
110498 tRowcnt iNew;
110513 tRowcnt iNew;
[all …]
/dports/security/libzrtpcppcore/ZRTPCPP-4.6.6/clients/tivi/android/jni/sqlite3/
H A Dsqlite3.c88158 p->a[i].anEq = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp);
88159 p->a[i].anLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp);
88160 p->a[i].anDLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp);
88587 tRowcnt *aCnt = 0;
89135 tRowcnt v;
89224 tRowcnt * const aiRowEst = pIndex->aiRowEst = (tRowcnt*)sqlite3MallocZero(
89294 tRowcnt avgEq = 0;
89391 tRowcnt *pSpace;
118153 tRowcnt a[2];
118215 tRowcnt iNew;
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/docker/docker/vendor/github.com/mattn/go-sqlite3/code/
H A Dsqlite3-binding.c83122 p->a[i].anEq = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp);
83123 p->a[i].anLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp);
83124 p->a[i].anDLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp);
83542 tRowcnt *aCnt = 0;
84065 tRowcnt v;
84279 tRowcnt *pSpace;
112102 tRowcnt a[2];
112122 tRowcnt iLower;
112123 tRowcnt iUpper;
112149 tRowcnt iNew;
[all …]
/dports/databases/R-cran-RSQLite/RSQLite/src/sqlite/
H A Dsqlite3.c83867 p->a[i].anEq = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp);
83868 p->a[i].anLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp);
83869 p->a[i].anDLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp);
84293 tRowcnt *aCnt = 0;
84839 tRowcnt v;
85069 tRowcnt *pSpace;
113065 tRowcnt a[2];
113085 tRowcnt iLower;
113086 tRowcnt iUpper;
113112 tRowcnt iNew;
[all …]
/dports/games/freeminer/freeminer-0.4.10.4/src/sqlite/
H A Dsqlite3.c83122 p->a[i].anEq = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp);
83123 p->a[i].anLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp);
83124 p->a[i].anDLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp);
83542 tRowcnt *aCnt = 0;
84065 tRowcnt v;
84279 tRowcnt *pSpace;
112102 tRowcnt a[2];
112122 tRowcnt iLower;
112123 tRowcnt iUpper;
112149 tRowcnt iNew;
[all …]
/dports/devel/libgpkg/luciad-libgpkg-c56e3708453e/sqlite/
H A Dsqlite3.c83122 p->a[i].anEq = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp);
83123 p->a[i].anLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp);
83124 p->a[i].anDLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp);
83542 tRowcnt *aCnt = 0;
84065 tRowcnt v;
84279 tRowcnt *pSpace;
112102 tRowcnt a[2];
112122 tRowcnt iLower;
112123 tRowcnt iUpper;
112149 tRowcnt iNew;
[all …]

1234567