Home
last modified time | relevance | path

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

/sqlite-3.40.0/test/
H A Dfuzz3.test70 # 8 bits of iMod determine the new byte value. The offset of the byte
71 # modified is the value of ($iMod >> 8).
73 # The return value is the iMod value required to restore the file
81 proc modify_database {iMod} {
82 set blob [binary format c [expr {$iMod&0xFF}]]
83 set offset [expr {$iMod>>8}]
/sqlite-3.40.0/ext/session/
H A Dchangesetfuzz.c875 int iMod = -1; in fuzzSelectChange() local
881 iMod = fuzzRandomInt(8) + 1; in fuzzSelectChange()
889 iMod = fuzzRandomInt(nByte) + iFirst; in fuzzSelectChange()
895 if( iMod>=0 ){ in fuzzSelectChange()
897 pChange->aSub[iMod] ^= mask; in fuzzSelectChange()