Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dwal.c729 int nativeCksum, /* True for native byte-order, false for non-native */ in walChecksumBytes() argument
750 if( nativeCksum ){ in walChecksumBytes()
829 int nativeCksum; /* True for native byte-order checksums */ in walEncodeFrame() local
837 nativeCksum = (pWal->hdr.bigEndCksum==SQLITE_BIGENDIAN); in walEncodeFrame()
838 walChecksumBytes(nativeCksum, aFrame, 8, aCksum, aCksum); in walEncodeFrame()
839 walChecksumBytes(nativeCksum, aData, pWal->szPage, aCksum, aCksum); in walEncodeFrame()
860 int nativeCksum; /* True for native byte-order checksums */ in walDecodeFrame() local
884 nativeCksum = (pWal->hdr.bigEndCksum==SQLITE_BIGENDIAN); in walDecodeFrame()
885 walChecksumBytes(nativeCksum, aFrame, 8, aCksum, aCksum); in walDecodeFrame()
886 walChecksumBytes(nativeCksum, aData, pWal->szPage, aCksum, aCksum); in walDecodeFrame()