Home | History | Annotate | Download | only in orig

Lines Matching full:u16

7946 typedef UINT16_TYPE u16;           /* 2-byte unsigned integer */
9074 u16 flags; /* PGHDR flags defined below */
9632 u16 flags; /* Flags associated with this schema */
9686 u16 sz; /* Size of each buffer in bytes */
10183 u16 nRef; /* Number of pointers to this Table */
10311 u16 nField; /* Number of entries in aColl[] */
10332 u16 nField; /* Number of entries in apMem[] */
10549 u16 flags; /* Various flags. EP_* See below */
10668 u16 iOrderByCol; /* For ORDER BY, column number in result set */
10669 u16 iAlias; /* Index into Parse.aAlias[] for zName */
10870 u16 wctrlFlags; /* Flags originally passed to sqlite3WhereBegin() */
10947 u16 selFlags; /* Various SF_* values */
11680 SQLITE_PRIVATE WhereInfo *sqlite3WhereBegin(Parse*, SrcList*, Expr*, ExprList**,ExprList*,u16);
12952 u16 nCursor; /* Number of entries in apCsr */
12986 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
13099 u16 aIndent[100]; /* Levels of indentation */
13130 u16 nResColumn; /* Number of columns in one row of the result set */
13131 u16 nCursor; /* Number of slots in apCsr[] */
28701 u16 nRegion; /* Size of array apRegion */
28731 u16 sharedMask; /* Mask of shared locks held */
28732 u16 exclMask; /* Mask of exclusive locks held */
28779 { u16 mask;
29152 u16 mask; /* Mask of locks to take or release */
29170 u16 allMask = 0; /* Mask of locks held by siblings */
29192 u16 allShared = 0; /* Union of locks held by connections other than "p" */
34445 u16 sharedMask; /* Mask of shared locks held */
34446 u16 exclMask; /* Mask of exclusive locks held */
34730 u16 mask; /* Mask of locks to take or release */
34740 mask = (u16)((1U<<(ofst+n)) - (1U<<ofst));
34744 u16 allMask = 0; /* Mask of locks held by siblings */
34766 u16 allShared = 0; /* Union of locks held by connections other than "p" */
37972 u16 nFresh; /* Number of objects on pFresh */
37999 p->nFresh = (u16)((N - ROUND8(sizeof(*p)))/sizeof(struct RowSetEntry));
39088 u16 nExtra; /* Add this many bytes to each in-memory page */
42988 pPager->nExtra = (u16)nExtra;
45639 u16 szPage; /* Database page size in bytes. 1==64K */
45788 typedef u16 ht_slot;
46507 pWal->hdr.szPage = (u16)((szPage&0xff00) | (szPage>>16));
48205 pWal->hdr.szPage = (u16)((szPage&0xff00) | (szPage>>16));
48718 u16 maxLocal; /* Copy of BtShared.maxLocal or BtShared.maxLeaf */
48719 u16 minLocal; /* Copy of BtShared.minLocal or BtShared.minLeaf */
48720 u16 cellOffset; /* Index in aData of first cell pointer */
48721 u16 nFree; /* Number of free bytes on the page */
48722 u16 nCell; /* Number of cells on this page, local and ovfl */
48723 u16 maskPage; /* Mask for page offset */
48724 u16 aiOvfl[5]; /* Insert the i-th overflow cell before the aiOvfl-th
48854 u16 btsFlags; /* Boolean parameters. See BTS_* macros below */
48855 u16 maxLocal; /* Maximum local payload in non-LEAFDATA tables */
48856 u16 minLocal; /* Minimum local payload in non-LEAFDATA tables */
48857 u16 maxLeaf; /* Maximum local payload in a LEAFDATA table */
48858 u16 minLeaf; /* Minimum local payload in a LEAFDATA table */
48898 u16 nHeader; /* Size of the cell content header in bytes */
48899 u16 nLocal; /* Amount of payload held locally */
48900 u16 iOverflow; /* Offset to overflow page number. Zero if no overflow */
48901 u16 nSize; /* Size of the cell content on the main b-tree page */
48951 u16 aiIdx[BTCURSOR_MAX_DEPTH]; /* Current index in apPage[i] */
50262 u16 n; /* Number bytes in cell content header */
50292 if( (pInfo->nSize = (u16)(n+nPayload))<4 ) pInfo->nSize = 4;
50293 pInfo->nLocal = (u16)nPayload;
50315 pInfo->nLocal = (u16)surplus;
50317 pInfo->nLocal = (u16)minLocal;
50319 pInfo->iOverflow = (u16)(pInfo->nLocal + n);
50339 static u16 cellSizePtr(MemPage *pPage, u8 *pCell){
50389 return (u16)nSize;
50395 static u16 cellSize(MemPage *pPage, int iCell){
50659 pPage->nFree = pPage->nFree + (u16)size;
50752 u16 pc; /* Address of a freeblock within pPage->aData[] */
50757 u16 cellOffset; /* Offset from start of page to first cell pointer */
50769 pPage->maskPage = (u16)(pBt->pageSize - 1);
50819 u16 next, size;
50845 pPage->nFree = (u16)(nFree - iCellFirst);
50859 u16 first;
50874 pPage->nFree = (u16)(pBt->usableSize - first);
50882 pPage->maskPage = (u16)(pBt->pageSize - 1);
51190 assert( sizeof(u16)==2 );
51548 pBt->usableSize = pBt->pageSize - (u16)nReserve;
51790 pBt->maxLocal = (u16)((pBt->usableSize-12)*64/255 - 23);
51791 pBt->minLocal = (u16)((pBt->usableSize-12)*32/255 - 23);
51792 pBt->maxLeaf = (u16)(pBt->usableSize - 35);
51793 pBt->minLeaf = (u16)((pBt->usableSize-12)*32/255 - 23);
53898 pCur->aiIdx[pCur->iPage] = (u16)(idx = upr);
53900 pCur->aiIdx[pCur->iPage] = (u16)(idx = (upr+lwr)/2);
53992 pCur->aiIdx[pCur->iPage] = (u16)(idx = (lwr+upr)/2);
54009 pCur->aiIdx[pCur->iPage] = (u16)lwr;
54867 *(u16*)ptr = *(u16*)&ptr[2];
54936 pPage->aiOvfl[j] = (u16)i;
54955 pPage->nFree -= (u16)(2 + sz);
54964 *(u16*)ptr = *(u16*)&ptr[-2];
54988 u16 *aSize /* Sizes of the cells */
55010 u16 sz = aSize[i];
55019 pPage->nCell = (u16)nCell;
55085 u16 szCell = cellSizePtr(pPage, pCell);
55297 u16 leafCorrection; /* 4 if pPage is a leaf. 0 if not */
55313 u16 *szCell; /* Local size of all cells in apCell[] */
55427 + nMaxCells*sizeof(u16) /* szCell */
55435 szCell = (u16*)&apCell[nMaxCells];
55479 u16 maskPage = pOld->maskPage;
55480 u16 cellOffset = pOld->cellOffset;
55489 u16 sz = (u16)szNew[i];
56199 u16 szOld;
59047 u16 flags = 0; /* New value for pMem->flags */
61054 p->nCursor = (u16)nCursor;
61203 p->nResColumn = (u16)nResColumn;
62409 u16 u; /* Unsigned loop counter */
65050 u16 flags1; /* Copy of initial value of pIn1->flags */
65051 u16 flags3; /* Copy of initial value of pIn3->flags */
65191 u16 ii;
65194 u16 nField;
66655 u16 flags1; /* Copy of initial value of pIn1->flags */
66656 u16 flags3; /* Copy of initial value of pIn3->flags */
68347 u.bb.r.nField = (u16)u.bb.nField;
68356 u.bb.r.flags = (u16)(UNPACKED_INCRKEY * (1 & (u.bb.oc - OP_SeekLt)));
68493 u.bd.r.nField = (u16)pOp->p4.i;
68557 u16 ii;
68560 u16 nField;
69477 u.bs.r.nField = (u16)pOp->p3;
69573 u.bu.r.nField = (u16)pOp->p4.i;
70129 p->nCursor = (u16)u.cc.pFrame->nChildCsr;
73235 pEList->a[iCol].iAlias = (u16)(++pParse->nAlias);
73968 pItem->iOrderByCol = (u16)iCol;
74069 pItem->iOrderByCol = (u16)iCol;
74080 pItem->iOrderByCol = (u16)iCol;
84377 u16)nGot;
85002 pKey->nField = (u16)nCol;
85399 pBest->nArg = (u16)nArg;
95270 pInfo->nField = (u16)nExpr;
96380 pKeyInfo->nField = (u16)nCol;
96737 if( pOrderBy ) pOrderBy->a[nOrderBy++].iOrderByCol = (u16)i;
96760 pKeyMerge->nField = (u16)nOrderBy;
96800 pKeyDup->nField = (u16)nExpr;
102635 u16 eOperator; /* A WO_xx value describing <op> */
102677 u16 wctrlFlags; /* Might include WHERE_AND_ONLY */
102807 u16 wctrlFlags /* Might include WHERE_AND_ONLY */
103071 u16 expRight = (pExpr->pRight->flags & EP_ExpCollate);
103072 u16 expLeft = (pExpr->pLeft->flags & EP_ExpCollate);
103093 static u16 operatorMask(int op){
103094 u16 c;
103102 c = (u16)(WO_EQ<<(op-TK_EQ));
106256 u16 wctrlFlags /* Flags passed to sqlite3WhereBegin() */
106336 u16 wctrlFlags, /* One of the WHERE_* flags defined in sqliteInt.h */
107153 u16 wctrlFlags /* One of the WHERE_* flags defined in sqliteInt.h */
112944 db->lookaside.sz = (u16)sz;
113599 p->nArg = (u16)nArg;
114040 static const u16 outOfMem[] = {
114043 static const u16 misuse[] = {