Lines Matching refs:sqlite3_int64
289 sqlite3_int64 nAlloc; /* Number of bytes allocated for z[] */
290 sqlite3_int64 nUsed; /* Number of bytes of z[] actually used */
302 if( (sqlite3_int64)sz+p->nUsed+p->szSep+1 > p->nAlloc ){ in callback()
380 sqlite3_int64 iRowid; /* The rowid */
381 sqlite3_int64 iValue; /* Current value ("value") */
382 sqlite3_int64 mnValue; /* Mimimum value ("start") */
383 sqlite3_int64 mxValue; /* Maximum value ("stop") */
384 sqlite3_int64 iStep; /* Increment ("step") */
479 sqlite3_int64 x = 0; in seriesColumn()
731 sqlite3_int64 v = 0; in integerValue()
775 static sqlite3_int64 timeOfDay(void){ in timeOfDay()
777 sqlite3_int64 t; in timeOfDay()
784 t = (sqlite3_int64)(r*86400000.0); in timeOfDay()
829 sqlite3_int64 iBegin; /* Start time for the whole program */ in main()
830 sqlite3_int64 iStart, iEnd; /* Start and end-times for a test case */ in main()
948 pScratch = malloc( nScratch*(sqlite3_int64)szScratch ); in main()
950 nScratch*(sqlite3_int64)szScratch); in main()
955 pPCache = malloc( nPCache*(sqlite3_int64)szPCache ); in main()
957 nPCache*(sqlite3_int64)szPCache); in main()
1227 sqlite3_int64 iElapse = timeOfDay() - iBegin; in main()