Home
last modified time | relevance | path

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

/sqlite-3.40.0/test/
H A Dfuzzinvariants.c275 const char *zSuffix = zColName ? strrchr(zColName, ':') : 0; in fuzz_invariant_sql() local
276 if( zSuffix in fuzz_invariant_sql()
277 && isdigit(zSuffix[1]) in fuzz_invariant_sql()
278 && (zSuffix[1]>'3' || isdigit(zSuffix[2])) in fuzz_invariant_sql()
H A Dstartup.c432 static const struct { char *zSuffix; int iMult; } aMult[] = { in integerValue() member
465 if( sqlite3_stricmp(aMult[i].zSuffix, zArg)==0 ){ in integerValue()
H A Ddbfuzz.c503 static const struct { char *zSuffix; int iMult; } aMult[] = { in integerValue() member
536 if( sqlite3_stricmp(aMult[i].zSuffix, zArg)==0 ){ in integerValue()
H A Dkvtest.c200 static const struct { char *zSuffix; int iMult; } aMult[] = { in integerValue() member
233 if( sqlite3_stricmp(aMult[i].zSuffix, zArg)==0 ){ in integerValue()
H A Dfuzzcheck.c1677 static const struct { char *zSuffix; int iMult; } aMult[] = { in integerValue() member
1710 if( sqlite3_stricmp(aMult[i].zSuffix, zArg)==0 ){ in integerValue()
H A Dspeedtest1.c221 static const struct { char *zSuffix; int iMult; } aMult[] = { in integerValue() member
254 if( sqlite3_stricmp(aMult[i].zSuffix, zArg)==0 ){ in integerValue()
/sqlite-3.40.0/ext/fts5/
H A Dmkportersteps.tcl176 set zSuffix [lindex $I 0] ;# Suffix text for this rule
180 set n [string length $zSuffix]
183 set match "nBuf>$n && 0==memcmp(\"$zSuffix\", &aBuf\[nBuf-$n\], $n)"
H A Dfts5_tokenize.c618 const char *zSuffix; member
631 for(p=aRule; p->zSuffix; p++){
632 assert( strlen(p->zSuffix)==p->nSuffix );
635 if( 0==memcmp(&aBuf[nBuf - p->nSuffix], p->zSuffix, p->nSuffix) ) break;
638 if( p->zSuffix ){
H A Dfts5_storage.c776 static int fts5StorageCount(Fts5Storage *p, const char *zSuffix, i64 *pnRow){ in fts5StorageCount() argument
782 pConfig->zDb, pConfig->zName, zSuffix in fts5StorageCount()
/sqlite-3.40.0/ext/misc/
H A Dfuzzer.c667 const char *zSuffix
673 zSuffix
682 zSuffix
/sqlite-3.40.0/tool/
H A Dfuzzershell.c732 static const struct { char *zSuffix; int iMult; } aMult[] = { in integerValue() member
765 if( sqlite3_stricmp(aMult[i].zSuffix, zArg)==0 ){ in integerValue()
/sqlite-3.40.0/src/
H A Dshell.c.in763 static const struct { char *zSuffix; int iMult; } aMult[] = { member
796 if( sqlite3_stricmp(aMult[i].zSuffix, zArg)==0 ){
6166 static void newTempFile(ShellState *p, const char *zSuffix){ argument
6188 p->zTempFile = sqlite3_mprintf("%s/temp%llx.%s", zTemp, r, zSuffix);
6190 p->zTempFile = sqlite3_mprintf("%z.%s", p->zTempFile, zSuffix);