Lines Matching refs:zInit
3902 unsigned char zInit[12]; /* Initial text to match */
3903 int nInit; /* Number of bytes in zInit */
3987 unsigned char x = pRe->zInit[0];
3990 strncmp((const char*)zIn+in.i, (const char*)pRe->zInit, pRe->nInit)!=0)
4458 ** zInit[]. The re_match() routine can then search ahead in the input
4464 for(j=0, i=1; j<(int)sizeof(pRe->zInit)-2 && pRe->aOp[i]==RE_OP_MATCH; i++){
4467 pRe->zInit[j++] = (unsigned char)x;
4469 pRe->zInit[j++] = (unsigned char)(0xc0 | (x>>6));
4470 pRe->zInit[j++] = 0x80 | (x&0x3f);
4472 pRe->zInit[j++] = (unsigned char)(0xe0 | (x>>12));
4473 pRe->zInit[j++] = 0x80 | ((x>>6)&0x3f);
4474 pRe->zInit[j++] = 0x80 | (x&0x3f);
4479 if( j>0 && pRe->zInit[j-1]==0 ) j--;
4569 sqlite3_str_appendf(pStr, "%02x", pRe->zInit[i]);