• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/sqlite3/

Lines Matching defs:i16

14437 typedef INT16_TYPE i16;            /* 2-byte signed integer */
16204 i16 nRef; /* Number of users of this page */
17665 i16 iPKey; /* If not negative, use aCol[iPKey] as the rowid */
17666 i16 nCol; /* Number of columns in this table */
17667 i16 nNVCol; /* Number of columns that are not VIRTUAL */
17953 i16 *aiColumn; /* Which columns are used by this index. 1st is 0 */
18071 i16 iColumn; /* Column number within the source table */
18072 i16 iSorterColumn; /* Column number in the sorting index */
18099 typedef i16 ynVar;
18213 i16 iAgg; /* Which entry in pAggInfo->aCol[] or ->aFunc[] */
19789 SQLITE_PRIVATE int sqlite3ColumnsFromExprList(Parse*,ExprList*,i16*,Column**);
19794 SQLITE_PRIVATE i16 sqlite3TableColumnToIndex(Index*, i16);
19799 SQLITE_PRIVATE i16 sqlite3TableColumnToStorage(Table*, i16);
19800 SQLITE_PRIVATE i16 sqlite3StorageColumnToTable(Table*, i16);
19887 SQLITE_PRIVATE Index *sqlite3AllocateIndexObject(sqlite3*,i16,int,char**);
19990 Parse*,Table*,Trigger*,int,int,int,i16,u8,u8,u8,int);
21104 i16 nField; /* Number of fields in the header */
52826 i16 nReserve; /* Number of unused bytes at end of each page */
55897 pPager->nReserve = (i16)nReserve;
60307 i16 readLock; /* Which read lock is being held. -1 for none */
62669 pWal->readLock = (i16)mxI;
98977 pExpr->iColumn = j==pTab->iPKey ? -1 : (i16)j;
99073 pExpr->iColumn = (i16)iCol;
104176 i16 iTabCol = pIdx->aiColumn[iIdxCol];
106588 pExpr->iAgg = (i16)k;
106633 pExpr->iAgg = (i16)i;
112542 SQLITE_PRIVATE i16 sqlite3TableColumnToIndex(Index *pIdx, i16 iCol){
112562 SQLITE_PRIVATE i16 sqlite3StorageColumnToTable(Table *pTab, i16 iCol){
112610 SQLITE_PRIVATE i16 sqlite3TableColumnToStorage(Table *pTab, i16 iCol){
112612 i16 n;
113580 nByte = (sizeof(char*) + sizeof(LogEst) + sizeof(i16) + 1)*N;
113589 memcpy(zExtra, pIdx->aiColumn, sizeof(i16)*pIdx->nColumn);
113590 pIdx->aiColumn = (i16*)zExtra;
113591 zExtra += sizeof(i16)*N;
113621 i16 x = pIdx->aiColumn[i];
113632 static int hasColumn(const i16 *aiCol, int nCol, int x){
115118 i16 nCol, /* Total number of columns in the index */
115128 sizeof(i16)*nCol + /* Index.aiColumn */
115135 p->aiColumn = (i16*)pExtra; pExtra += sizeof(i16)*nCol;
115402 assert( pList->nExpr + nExtraCol <= 32767 /* Fits in i16 */ );
115483 pIndex->aiColumn[i] = (i16)j;
117721 i16 nPk = 1; /* Number of columns in the PRIMARY KEY */
117723 i16 nKey; /* Number of memory cells in the row key */
118146 i16 nPk, /* Number of PRIMARY KEY memory cells */
120964 i16 iCol = pIdx->aiColumn[i]; /* Index of column in parent tbl */
121188 i16 iCol /* Which column of pTab is desired */
121220 i16 iCol /* The column that is wanted */
121303 i16 iCol; /* Index of column in child table */
121342 i16 iCol = pIdx->aiColumn[i];
122259 i16 x = pIdx->aiColumn[n];
128797 i16 cnum = pIdx->aiColumn[i];
133129 i16 *pnCol, /* Write the number of columns here */
133152 assert( nCol==(i16)nCol );
136421 i16 nCol;
140024 i16 iIdxCol = pIdx->aiColumn[iCol];
140255 i16 nPk = 0; /* Number of components of the PRIMARY KEY */
141128 i16 iPk; /* PRIMARY KEY column */
141181 i16 iPk; /* PRIMARY KEY column */
143619 i16 aiColumn[11]; /* Corresponding column number in the eq-class */
145128 i16 iRef = pIdx->aiColumn[iIdxCol];
148583 i16 iColumn; /* The column on the LHS of the term. -1 for IPK */
151245 i16 aiColumnPk = -1; /* The aColumn[] value for the sPk index */
169811 typedef short int i16; /* 2-byte (or larger) signed integer */
169970 i16 eSearch; /* Search strategy (see below) */
173351 pCsr->eSearch = (i16)eSearch;
211802 typedef short i16;
219316 i16 iCol; /* Column of last value written */
219611 p->iCol = (i16)iCol;
219615 p->iCol = (i16)(iPos = iCol);