Lines Matching refs:u32
806 typedef UINT32_TYPE u32; /* 4-byte unsigned integer */ typedef
829 typedef u32 tRowcnt; /* 32-bit is the default */
878 typedef u32 uptr;
1026 extern u32 sqlite3TreeTrace;
1044 extern u32 sqlite3WhereTrace;
1432 u32 bDisable; /* Only operate the lookaside when zero */
1436 u32 nSlot; /* Number of lookaside slots allocated */
1437 u32 anStat[3]; /* 0: hits. 1: size misses. 2: full misses */
1545 u32 mDbFlags; /* flags recording internal state */
1549 u32 nSchemaLock; /* Do not reset the schema when non-zero */
1555 u32 dbOptFlags; /* Flags to enable/disable optimizations */
1593 int (*xV2)(u32,void*,void*,void*); /* All other mTrace values */
1608 unsigned int (*xAutovacPages)(void*,const char*,u32,u32,u32);
1831 u32 funcFlags; /* Some combination of SQLITE_FUNC_* */
2281 u32 nTabRef; /* Number of pointers to this Table */
2282 u32 tabFlags; /* Mask of TF_* values */
2494 u32 nRef; /* Number of references to this KeyInfo object */
2744 u32 selId; /* Select to which this AggInfo belongs */
2836 u32 flags; /* Various flags. EP_* See below */
3173 u32 nAlloc; /* Number of entries allocated in a[] below */
3348 u32 selFlags; /* Various SF_* values */
3350 u32 selId; /* Unique identifier number for this SELECT */
3557 u32 aColmask[2]; /* Masks of old.*, new.* columns accessed */
3680 u32 nQueryLoop; /* Est number of iterations of a query (10*log2(N)) */
3681 u32 oldmask; /* Mask of old.* columns referenced */
3682 u32 newmask; /* Mask of new.* columns referenced */
3936 u32 nAlloc; /* Amount of space allocated in zText */
3937 u32 mxAlloc; /* Maximum allowed allocation. 0 for no malloc usage */
3938 u32 nChar; /* Length of the string so far */
3958 u32 mInitFlags; /* Flags controlling error messages */
3959 u32 nInitRow; /* Number of rows processed */
4018 u32 szPma; /* Maximum Sorter PMA size */
4050 u32 szSorterRef; /* Min size in bytes to use sorter-refs */
4588 void sqlite3ExprAssignVarNumber(Parse*, Expr*, u32);
4599 u32 sqlite3ExprListFlags(const ExprList*);
4603 int sqlite3InitOne(sqlite3*, int, char**, u32);
4644 void sqlite3EndTable(Parse*,Token*,Token*,u32,Select*);
4657 Bitvec *sqlite3BitvecCreate(u32);
4658 int sqlite3BitvecTest(Bitvec*, u32);
4659 int sqlite3BitvecTestNotNull(Bitvec*, u32);
4660 int sqlite3BitvecSet(Bitvec*, u32);
4661 void sqlite3BitvecClear(Bitvec*, u32, void*);
4663 u32 sqlite3BitvecSize(Bitvec*);
4723 Expr*,ExprList*,u32,Expr*);
4775 Table *sqlite3LocateTable(Parse*,u32 flags,const char*, const char*);
4777 Table *sqlite3LocateTableItem(Parse*,u32 flags,SrcItem *);
4807 u32 sqlite3IsTrueOrFalse(const char*);
4893 u32 sqlite3TriggerColmask(Parse*,Trigger*,ExprList*,int,int,Table*,int);
4914 void sqlite3SetJoinExpr(Expr*,int,u32);
4942 int sqlite3GetUInt32(const char*, u32*);
4948 u32 sqlite3Utf8Read(const u8**);
4964 u8 sqlite3GetVarint32(const unsigned char *, u32 *);
4973 (u8)((*(A)<(u8)0x80)?((B)=(u32)*(A)),1:sqlite3GetVarint32((A),(u32 *)&(B)))
4975 B=(u32)*(A);if(B>=0x80)sqlite3GetVarint32((A),(u32*)&(B))
4977 (u8)(((u32)(B)<(u32)0x80)?(*(A)=(unsigned char)(B)),1:\
5324 u32 sqlite3FkOldmask(Parse*, Table*);
5378 int sqlite3FindInIndex(Parse *, Expr *, u32, int*, int*, int*);
5399 u32 sqlite3Get4byte(const u8*);
5400 void sqlite3Put4byte(u8*, u32);