Home | History | Annotate | Download | only in dist

Lines Matching defs:aSalt

64883   u32 aSalt[2];                   /* Two salt values copied from WAL header */
64975 ** 32: | aSalt | |
64996 ** 80: | aSalt | |
65526 memcpy(&aFrame[8], pWal->hdr.aSalt, 8);
65559 if( memcmp(&pWal->hdr.aSalt, &aFrame[8], 8)!=0 ){
65995 memcpy(&pWal->hdr.aSalt, &aBuf[16], 8);
66687 ** The value of parameter salt1 is used as the aSalt[1] value in the
66694 u32 *aSalt = pWal->hdr.aSalt; /* Big-endian salt values */
66697 sqlite3Put4byte((u8*)&aSalt[0], 1 + sqlite3Get4byte((u8*)&aSalt[0]));
66698 memcpy(&pWal->hdr.aSalt[1], &salt1, 4);
67394 if( memcmp(&pWal->hdr.aSalt, &aBuf[16], 8) ){
67961 if( !memcmp(pSnapshot->aSalt, pWal->hdr.aSalt, sizeof(pWal->hdr.aSalt))
68601 if( pWal->nCkpt==0 ) sqlite3_randomness(8, pWal->hdr.aSalt);
68602 memcpy(&aWalHdr[16], pWal->hdr.aSalt, 8);
69063 /* aSalt[0] is a copy of the value stored in the wal file header. It
69065 if( pHdr1->aSalt[0]<pHdr2->aSalt[0] ) return -1;
69066 if( pHdr1->aSalt[0]>pHdr2->aSalt[0] ) return +1;
69089 if( memcmp(pNew->aSalt, pWal->hdr.aSalt, sizeof(pWal->hdr.aSalt))