Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dtest_sqllog.c295 char *zInit = 0; in sqllogCopydb() local
302 zInit = sqlite3_mprintf(""); in sqllogCopydb()
305 zInit = sqllogFindFile(zFile); in sqllogCopydb()
307 zInit = 0; in sqllogCopydb()
309 if( zInit==0 ){ in sqllogCopydb()
316 zInit = sqlite3_mprintf("%s_%02d.db", sqllogglobal.zPrefix, iDb); in sqllogCopydb()
321 rc = sqlite3_open(zInit, &copy); in sqllogCopydb()
351 zInit, zName, sqllogglobal.iClock++ in sqllogCopydb()
354 zFree = sqlite3_mprintf("-- Main database is '%q'\n", zInit); in sqllogCopydb()
359 sqlite3_free(zInit); in sqllogCopydb()
/sqlite-3.40.0/ext/misc/
H A Dregexp.c157 unsigned char zInit[12]; /* Initial text to match */ member
242 unsigned char x = pRe->zInit[0]; in re_match()
245 strncmp((const char*)zIn+in.i, (const char*)pRe->zInit, pRe->nInit)!=0) in re_match()
722 pRe->zInit[j++] = (unsigned char)x; in re_compile()
724 pRe->zInit[j++] = (unsigned char)(0xc0 | (x>>6)); in re_compile()
725 pRe->zInit[j++] = 0x80 | (x&0x3f); in re_compile()
727 pRe->zInit[j++] = (unsigned char)(0xe0 | (x>>12)); in re_compile()
728 pRe->zInit[j++] = 0x80 | ((x>>6)&0x3f); in re_compile()
729 pRe->zInit[j++] = 0x80 | (x&0x3f); in re_compile()
734 if( j>0 && pRe->zInit[j-1]==0 ) j--; in re_compile()
[all …]