Lines Matching defs:u64

7705 typedef sqlite_uint64 u64;         /* 8-byte unsigned integer */
7713 ** SQLITE_MAX_U32 is a u64 constant that is the maximum u64 value
7718 #define SQLITE_MAX_U32 ((((u64)1)<<32)-1)
8236 u64 cycles; /* Total time spent executing this instruction */
9485 void (*xProfile)(void*,const char*,u64); /* Profiling function */
10460 typedef u64 Bitmask;
11548 SQLITE_PRIVATE int sqlite3PutVarint(unsigned char*, u64);
11550 SQLITE_PRIVATE u8 sqlite3GetVarint(const unsigned char *, u64 *);
11552 SQLITE_PRIVATE int sqlite3VarintLen(u64 v);
14086 u64 n;
14129 testcase( n==(u64)db->aLimit[SQLITE_LIMIT_LENGTH]+1 );
14130 testcase( n==(u64)db->aLimit[SQLITE_LIMIT_LENGTH] );
14133 }else if( n>(u64)db->aLimit[SQLITE_LIMIT_LENGTH] ){
16296 u64 nAlloc; /* Total number of calls to malloc */
16297 u64 totalAlloc; /* Total of all malloc calls - includes internal frag */
16298 u64 totalExcess; /* Total internal fragmentation */
19280 longvalue = ((u64)1)<<63;
19293 longvalue = va_arg(ap,u64);
21077 u64 u = 0;
21218 SQLITE_PRIVATE int sqlite3PutVarint(unsigned char *p, u64 v){
21221 if( v & (((u64)0xff000000)<<32) ){
21283 SQLITE_PRIVATE u8 sqlite3GetVarint(const unsigned char *p, u64 *v){
21362 *v = ((u64)s)<<32 | a;
21383 *v = ((u64)s)<<32 | a;
21398 *v = ((u64)s)<<32 | a;
21416 *v = ((u64)s)<<32 | a;
21437 *v = ((u64)s)<<32 | a;
21508 u64 v64;
21560 u64 v64;
21576 SQLITE_PRIVATE int sqlite3VarintLen(u64 v){
49176 n += getVarint(&pCell[n], (u64*)&pInfo->nKey);
50081 assert( sizeof(u64)==8 || sizeof(u64)==4 );
52755 getVarint(pCell, (u64*)&nCellKey);
53544 nHeader += putVarint(&pCell[nHeader], *(u64*)&nKey);
60879 u64 u;
60956 static u64 floatSwap(u64 in){
60958 u64 r;
60998 u64 v;
61075 u64 x = (((signed char)buf[0])<<8) | buf[1];
61084 u64 x;
61092 static const u64 t1 = ((u64)0x3ff00000)<<32;
61094 u64 t2 = t1;
61372 assert( (nCellKey & SQLITE_MAX_U32)==(u64)nCellKey );
63671 u64 start; /* CPU clock count at start of opcode */
63718 u64 uA;
63777 u64 nData; /* Number of bytes of data space */
63878 u64 iKey;
65020 u64 uA;
65058 if( u.ah.iA<0 ) u.ah.uA |= ((((u64)0xffffffff)<<32)|0xffffffff) << (64-u.ah.iB);
65726 assert( (u.am.payloadSize64 & SQLITE_MAX_U32)==(u64)u.am.payloadSize64 );
65995 u64 nData; /* Number of bytes of data space */
66984 rc = sqlite3BtreeMovetoUnpacked(u.ba.pC->pCursor, 0, (u64)u.ba.iKey, 0, &u.ba.res);
67287 u64 iKey;
67392 # define MAX_ROWID (i64)( (((u64)0x7fffffff)<<32) | (u64)0xffffffff )
67461 while( ((rc = sqlite3BtreeMovetoUnpacked(u.bf.pC->pCursor, 0, (u64)u.bf.v,
69714 u64 elapsed = sqlite3Hwtime() - start;
70525 *piOffset += getVarint(aVarint, (u64 *)piVal);
84939 u64 n;
110371 u64 x = (((u64)1)<<63)-1;
114131 typedef sqlite3_uint64 u64; /* 8-byte unsigned integer */
125606 u64 covered; /* Mask of query phrases covered */
125607 u64 hlmask; /* Mask of snippet terms to highlight */
125837 u64 mCovered, /* Bitmask of phrases already covered */
125840 u64 *pmCover, /* OUT: Bitmask of phrases covered */
125841 u64 *pmHighlight /* OUT: Bitmask of terms to highlight */
125846 u64 mCover = 0; /* Mask of phrases covered by this snippet */
125847 u64 mHighlight = 0; /* Mask of tokens to highlight in snippet */
125857 u64 mPhrase = (u64)1 << i;
125858 u64 mPos = (u64)1 << (iCsr - iStart);
125930 u64 mCovered, /* Mask of phrases already covered */
125931 u64 *pmSeen, /* IN/OUT: Mask of phrases seen */
125975 *pmSeen |= (u64)1 << i;
125986 u64 mCover;
125987 u64 mHighlight;
126067 u64 *pHlmask /* IN/OUT: Mask of tokens to highlight */
126069 u64 hlmask = *pHlmask; /* Local copy of initial highlight-mask */
126076 for(nLeft=0; !(hlmask & ((u64)1 << nLeft)); nLeft++);
126077 for(nRight=0; !(hlmask & ((u64)1 << (nSnippet-1-nRight))); nRight++);
126144 u64 hlmask = pFragment->hlmask; /* Highlight-mask for snippet */
126209 isHighlight = (hlmask & ((u64)1 << (iCurrent-iPos)))!=0;
126737 u64 mCovered = 0; /* Bitmask of phrases covered by snippet */
126738 u64 mSeen = 0; /* Bitmask of phrases seen by BestSnippet() */