Lines Matching defs:i16

14885 typedef INT16_TYPE i16;            /* 2-byte signed integer */
18401 i16 iPKey; /* If not negative, use aCol[iPKey] as the rowid */
18402 i16 nCol; /* Number of columns in this table */
18403 i16 nNVCol; /* Number of columns that are not VIRTUAL */
18735 i16 *aiColumn; /* Which columns are used by this index. 1st is 0 */
18856 i16 iColumn; /* Column number within the source table */
18857 i16 iSorterColumn; /* Column number in the sorting index */
18902 typedef i16 ynVar;
19016 i16 iAgg; /* Which entry in pAggInfo->aCol[] or ->aFunc[] */
20862 SQLITE_PRIVATE int sqlite3ColumnsFromExprList(Parse*,ExprList*,i16*,Column**);
20867 SQLITE_PRIVATE i16 sqlite3TableColumnToIndex(Index*, i16);
20872 SQLITE_PRIVATE i16 sqlite3TableColumnToStorage(Table*, i16);
20873 SQLITE_PRIVATE i16 sqlite3StorageColumnToTable(Table*, i16);
20962 SQLITE_PRIVATE Index *sqlite3AllocateIndexObject(sqlite3*,i16,int,char**);
21069 Parse*,Table*,Trigger*,int,int,int,i16,u8,u8,u8,int);
23225 i16 nField; /* Number of fields in the header */
57788 i16 nReserve; /* Number of unused bytes at end of each page */
60906 pPager->nReserve = (i16)nReserve;
65427 i16 readLock; /* Which read lock is being held. -1 for none */
68143 pWal->readLock = (i16)mxI;
106936 i16 iColumn /* The column number */
107188 pExpr->iColumn = j==pTab->iPKey ? -1 : (i16)j;
107327 pExpr->iColumn = (i16)iCol;
113121 i16 iTabCol = pIdx->aiColumn[iIdxCol];
115822 pExpr->iAgg = (i16)k;
115966 pExpr->iAgg = (i16)i;
122460 SQLITE_PRIVATE i16 sqlite3TableColumnToIndex(Index *pIdx, i16 iCol){
122480 SQLITE_PRIVATE i16 sqlite3StorageColumnToTable(Table *pTab, i16 iCol){
122528 SQLITE_PRIVATE i16 sqlite3TableColumnToStorage(Table *pTab, i16 iCol){
122530 i16 n;
123557 nByte = (sizeof(char*) + sizeof(LogEst) + sizeof(i16) + 1)*N;
123566 memcpy(zExtra, pIdx->aiColumn, sizeof(i16)*pIdx->nColumn);
123567 pIdx->aiColumn = (i16*)zExtra;
123568 zExtra += sizeof(i16)*N;
123598 i16 x = pIdx->aiColumn[i];
123609 static int hasColumn(const i16 *aiCol, int nCol, int x){
125229 i16 nCol, /* Total number of columns in the index */
125239 sizeof(i16)*nCol + /* Index.aiColumn */
125246 p->aiColumn = (i16*)pExtra; pExtra += sizeof(i16)*nCol;
125516 assert( pList->nExpr + nExtraCol <= 32767 /* Fits in i16 */ );
125599 pIndex->aiColumn[i] = (i16)j;
127930 i16 nPk = 1; /* Number of columns in the PRIMARY KEY */
127932 i16 nKey; /* Number of memory cells in the row key */
128367 i16 nPk, /* Number of PRIMARY KEY memory cells */
131661 i16 iCol = pIdx->aiColumn[i]; /* Index of column in parent tbl */
131883 i16 iCol /* Which column of pTab is desired */
131915 i16 iCol /* The column that is wanted */
131995 i16 iCol; /* Index of column in child table */
132034 i16 iCol = pIdx->aiColumn[i];
132985 i16 x = pIdx->aiColumn[n];
140109 i16 cnum = pIdx->aiColumn[i];
145087 i16 *pnCol, /* Write the number of columns here */
145110 assert( nCol==(i16)nCol );
148941 i16 nCol;
153376 i16 iIdxCol = pIdx->aiColumn[iCol];
153611 i16 nPk = 0; /* Number of components of the PRIMARY KEY */
154519 i16 iPk; /* PRIMARY KEY column */
154576 i16 iPk; /* PRIMARY KEY column */
157118 i16 aiColumn[11]; /* Corresponding column number in the eq-class */
162465 i16 iColumn; /* The column on the LHS of the term. -1 for IPK */
165651 const i16 *aiColumn; /* Columns contained in the index */
165881 i16 aiColumnPk = -1; /* The aColumn[] value for the sPk index */
185951 typedef short int i16; /* 2-byte (or larger) signed integer */
186111 i16 eSearch; /* Search strategy (see below) */
189499 pCsr->eSearch = (i16)eSearch;
232075 typedef short i16;
240007 i16 iCol; /* Column of last value written */
240301 p->iCol = (i16)iCol;
240305 p->iCol = (i16)(iPos = iCol);