Home
last modified time | relevance | path

Searched refs:startTime (Results 1 – 7 of 7) sorted by relevance

/sqlite-3.40.0/ext/wasm/
H A Dscratchpad-wasmfs-main.js48 const startTime = performance.now();
66 stdout("Total test time:",(performance.now() - startTime),"ms");
H A Ddemo-worker1-promiser.js31 let startTime;
33 logHtml("","Total test count:",T.counter+". Total time =",(performance.now() - startTime),"ms");
73 startTime = performance.now();
H A Ddemo-worker1.js43 let startTime;
67 logHtml("","Total test count:",T.counter+". Total time =",(performance.now() - startTime),"ms");
284 startTime = performance.now();
/sqlite-3.40.0/test/
H A Dwordcount.c289 sqlite3_int64 startTime; /* Time of start */ in main() local
361 startTime = realTime(); in main()
408 startTime = realTime(); in main()
577 sqlite3_int64 elapseTime = realTime() - startTime; in main()
H A Dfuzz-oss1.test439 CREATE TABLE "mlo:Route_mlo:startTime" (ID INTEGER NOT NULL,
440 "mlo:startTime" INTEGER NOT NULL, "mlo:startTime:graph" INTEGER,
441 "mlo:startTime:localDate" INTEGER NOT NULL, "mlo:startTime:localTime"
1494 "slo:startTime" INTEGER, "slo:startTime:graph" INTEGER,
1495 "slo:startTime:localDate" INTEGER, "slo:startTime:localTime" INTEGER,
1573 "mlo:Route_mlo:startTime" (ID, "mlo:startTime");
/sqlite-3.40.0/src/
H A Dvdbeapi.c64 assert( p->startTime>0 ); in invokeProfileCallback()
69 iElapse = (iNow - p->startTime)*1000000; in invokeProfileCallback()
78 p->startTime = 0; in invokeProfileCallback()
85 if( ((P)->startTime)>0 ){ invokeProfileCallback(DB,P); }
684 sqlite3OsCurrentTimeInt64(db->pVfs, &p->startTime); in sqlite3Step()
686 assert( p->startTime==0 ); in sqlite3Step()
H A DvdbeInt.h453 i64 startTime; /* Time when query started - used for profiling */ member