Home
last modified time | relevance | path

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

/third_party/sqlite/src/
H A Dshell.c3902 unsigned char zInit[12]; /* Initial text to match */ member
3903 int nInit; /* Number of bytes in zInit */
3987 unsigned char x = pRe->zInit[0]; in re_match()
3990 strncmp((const char*)zIn+in.i, (const char*)pRe->zInit, pRe->nInit)!=0) in re_match()
4458 ** zInit[]. The re_match() routine can then search ahead in the input in re_compile()
4464 for(j=0, i=1; j<(int)sizeof(pRe->zInit)-2 && pRe->aOp[i]==RE_OP_MATCH; i++){ in re_compile()
4467 pRe->zInit[j++] = (unsigned char)x; in re_compile()
4469 pRe->zInit[j++] = (unsigned char)(0xc0 | (x>>6)); in re_compile()
4470 pRe->zInit[j++] = 0x80 | (x&0x3f); in re_compile()
4472 pRe->zInit[ in re_compile()
[all...]

Completed in 21 milliseconds