Lines Matching defs:i16
14383 typedef INT16_TYPE i16; /* 2-byte signed integer */
16522 i16 nRef; /* Number of users of this page */
17761 i16 iPKey; /* If not negative, use aCol[iPKey] as the rowid */
17762 i16 nCol; /* Number of columns in this table */
17763 i16 nNVCol; /* Number of columns that are not VIRTUAL */
18087 i16 *aiColumn; /* Which columns are used by this index. 1st is 0 */
18207 i16 iColumn; /* Column number within the source table */
18208 i16 iSorterColumn; /* Column number in the sorting index */
18236 typedef i16 ynVar;
18350 i16 iAgg; /* Which entry in pAggInfo->aCol[] or ->aFunc[] */
20096 SQLITE_PRIVATE int sqlite3ColumnsFromExprList(Parse*,ExprList*,i16*,Column**);
20101 SQLITE_PRIVATE i16 sqlite3TableColumnToIndex(Index*, i16);
20106 SQLITE_PRIVATE i16 sqlite3TableColumnToStorage(Table*, i16);
20107 SQLITE_PRIVATE i16 sqlite3StorageColumnToTable(Table*, i16);
20199 SQLITE_PRIVATE Index *sqlite3AllocateIndexObject(sqlite3*,i16,int,char**);
20306 Parse*,Table*,Trigger*,int,int,int,i16,u8,u8,u8,int);
22528 i16 nField; /* Number of fields in the header */
56175 i16 nReserve; /* Number of unused bytes at end of each page */
59321 pPager->nReserve = (i16)nReserve;
63877 i16 readLock; /* Which read lock is being held. -1 for none */
66284 pWal->readLock = (i16)mxI;
103867 i16 iColumn /* The column number */
104080 pExpr->iColumn = j==pTab->iPKey ? -1 : (i16)j;
104187 pExpr->iColumn = (i16)iCol;
109549 i16 iTabCol = pIdx->aiColumn[iIdxCol];
112143 pExpr->iAgg = (i16)k;
112189 pExpr->iAgg = (i16)i;
118565 SQLITE_PRIVATE i16 sqlite3TableColumnToIndex(Index *pIdx, i16 iCol){
118585 SQLITE_PRIVATE i16 sqlite3StorageColumnToTable(Table *pTab, i16 iCol){
118633 SQLITE_PRIVATE i16 sqlite3TableColumnToStorage(Table *pTab, i16 iCol){
118635 i16 n;
119654 nByte = (sizeof(char*) + sizeof(LogEst) + sizeof(i16) + 1)*N;
119663 memcpy(zExtra, pIdx->aiColumn, sizeof(i16)*pIdx->nColumn);
119664 pIdx->aiColumn = (i16*)zExtra;
119665 zExtra += sizeof(i16)*N;
119695 i16 x = pIdx->aiColumn[i];
119706 static int hasColumn(const i16 *aiCol, int nCol, int x){
121314 i16 nCol, /* Total number of columns in the index */
121324 sizeof(i16)*nCol + /* Index.aiColumn */
121331 p->aiColumn = (i16*)pExtra; pExtra += sizeof(i16)*nCol;
121601 assert( pList->nExpr + nExtraCol <= 32767 /* Fits in i16 */ );
121684 pIndex->aiColumn[i] = (i16)j;
124001 i16 nPk = 1; /* Number of columns in the PRIMARY KEY */
124003 i16 nKey; /* Number of memory cells in the row key */
124437 i16 nPk, /* Number of PRIMARY KEY memory cells */
127377 i16 iCol = pIdx->aiColumn[i]; /* Index of column in parent tbl */
127599 i16 iCol /* Which column of pTab is desired */
127631 i16 iCol /* The column that is wanted */
127711 i16 iCol; /* Index of column in child table */
127750 i16 iCol = pIdx->aiColumn[i];
128693 i16 x = pIdx->aiColumn[n];
135606 i16 cnum = pIdx->aiColumn[i];
140417 i16 *pnCol, /* Write the number of columns here */
140440 assert( nCol==(i16)nCol );
144055 i16 nCol;
147943 i16 iIdxCol = pIdx->aiColumn[iCol];
148177 i16 nPk = 0; /* Number of components of the PRIMARY KEY */
149068 i16 iPk; /* PRIMARY KEY column */
149123 i16 iPk; /* PRIMARY KEY column */
151634 i16 aiColumn[11]; /* Corresponding column number in the eq-class */
156862 i16 iColumn; /* The column on the LHS of the term. -1 for IPK */
159825 const i16 *aiColumn; /* Columns contained in the index */
159932 i16 aiColumnPk = -1; /* The aColumn[] value for the sPk index */
179447 typedef short int i16; /* 2-byte (or larger) signed integer */
179606 i16 eSearch; /* Search strategy (see below) */
182989 pCsr->eSearch = (i16)eSearch;
221958 typedef short i16;
229513 i16 iCol; /* Column of last value written */
229808 p->iCol = (i16)iCol;
229812 p->iCol = (i16)(iPos = iCol);