Lines Matching refs:i16

8984 typedef INT16_TYPE i16;            /* 2-byte signed integer */  typedef
10373 i16 nRef; /* Number of users of this page */
11229 i16 nArg; /* Number of arguments. -1 means unlimited */
11516 i16 iPKey; /* If not negative, use aCol[iPKey] as the rowid */
11517 i16 nCol; /* Number of columns in this table */
11733 i16 *aiColumn; /* Which columns are used by this index. 1st is 0 */
11857 typedef i16 ynVar;
11960 i16 iAgg; /* Which entry in pAggInfo->aCol[] or ->aFunc[] */
11961 i16 iRightJoinTable; /* If EP_FromJoin, the right table of the join */
12530 i16 iColumn; /* Table column number */
13124 SQLITE_PRIVATE i16 sqlite3ColumnOfIndex(Index*, i16);
13194 SQLITE_PRIVATE Index *sqlite3AllocateIndexObject(sqlite3*,i16,int,char**);
13274 SQLITE_PRIVATE void sqlite3GenerateRowDelete(Parse*,Table*,Trigger*,int,int,int,i16,u8,u8,u8);
14570 i16 nField; /* Number of fields in the header */
42309 i16 nReserve; /* Number of unused bytes at end of each page */
45282 pPager->nReserve = (i16)nReserve;
49323 i16 readLock; /* Which read lock is being held. -1 for none */
51211 pWal->readLock = (i16)mxI;
52600 i16 iPage; /* Index of current page in apPage */
81611 pExpr->iColumn = j==pTab->iPKey ? -1 : (i16)j;
81675 pExpr->iColumn = (i16)iCol;
84502 i16 iCol; /* Index of column <column> */
84503 i16 iDb; /* Database idx for pTab */
84511 iCol = (i16)pExpr->iColumn;
87066 pExpr->iAgg = (i16)k;
87111 pExpr->iAgg = (i16)i;
89303 i16 iCol = pIdx->aiColumn[i];
91615 SQLITE_PRIVATE i16 sqlite3ColumnOfIndex(Index *pIdx, i16 iCol){
92399 nByte = (sizeof(char*) + sizeof(i16) + 1)*N;
92405 memcpy(zExtra, pIdx->aiColumn, sizeof(i16)*pIdx->nColumn);
92406 pIdx->aiColumn = (i16*)zExtra;
92407 zExtra += sizeof(i16)*N;
92437 i16 x = pIdx->aiColumn[i];
92446 static int hasColumn(const i16 *aiCol, int nCol, int x){
93592 i16 nCol, /* Total number of columns in the index */
93602 sizeof(i16)*nCol + /* Index.aiColumn */
93609 p->aiColumn = (i16*)pExtra; pExtra += sizeof(i16)*nCol;
93893 pIndex->aiColumn[i] = (i16)j;
95827 i16 nPk = 1; /* Number of columns in the PRIMARY KEY */
95829 i16 nKey; /* Number of memory cells in the row key */
96180 i16 nPk, /* Number of PRIMARY KEY memory cells */
98478 i16 iCol = pIdx->aiColumn[i]; /* Index of column in parent tbl */
98689 i16 iCol /* Which column of pTab is desired */
98721 i16 iCol /* The column that is wanted */
98804 i16 iCol; /* Index of column in child table */
98841 i16 iCol = pIdx->aiColumn[i];
99721 i16 x = pIdx->aiColumn[n];
104705 i16 cnum = pIdx->aiColumn[i];
106798 pEq->iRightJoinTable = (i16)pE2->iTable;
106834 p->iRightJoinTable = (i16)iTable;
108047 i16 *pnCol, /* Write the number of columns here */
113765 i16 nPk; /* Number of components of the PRIMARY KEY */
117769 i16 iCol = pIdx->aiColumn[i];
119213 i16 *aiColumn = pIndex->aiColumn;
121245 i16 aiColumnPk = -1; /* The aColumn[] value for the sPk index */
132828 typedef short int i16; /* 2-byte (or larger) signed integer */
132967 i16 eSearch; /* Search strategy (see below) */
136185 pCsr->eSearch = (i16)eSearch;