Home
last modified time | relevance | path

Searched refs:AtomicStore (Results 1 – 6 of 6) sorted by relevance

/sqlite-3.40.0/src/
H A Dmalloc.c114 AtomicStore(&mem0.nearlyFull, n>0 && n<=nUsed); in sqlite3_soft_heap_limit64()
245 AtomicStore(&mem0.nearlyFull, 1); in mallocWithAlarm()
255 AtomicStore(&mem0.nearlyFull, 0); in mallocWithAlarm()
828 AtomicStore(&db->u1.isInterrupted, 1); in sqlite3OomFault()
854 AtomicStore(&db->u1.isInterrupted, 0); in sqlite3OomClear()
H A Dwal.c1176 AtomicStore(&sLoc.aHash[iKey], (ht_slot)idx); in walIndexAppend()
1997 AtomicStore(&pInfo->nBackfill, 0); in walRestartHdr()
2078 AtomicStore(pInfo->aReadMark+i, iMark); in walCheckpoint()
2160 AtomicStore(&pInfo->nBackfill, mxSafeFrame); in walCheckpoint()
2853 AtomicStore(pInfo->aReadMark+i,mxFrame); in walTryBeginRead()
H A Dtokenize.c584 AtomicStore(&db->u1.isInterrupted, 0);
H A Dmain.c1803 AtomicStore(&db->u1.isInterrupted, 1); in sqlite3_interrupt()
2469 AtomicStore(&db->u1.isInterrupted, 0); in sqlite3_wal_checkpoint_v2()
H A DsqliteInt.h236 # define AtomicStore(PTR,VAL) __atomic_store_n((PTR),(VAL),__ATOMIC_RELAXED) macro
240 # define AtomicStore(PTR,VAL) (*(PTR) = (VAL)) macro
H A Dvdbeapi.c674 AtomicStore(&db->u1.isInterrupted, 0); in sqlite3Step()