Lines Matching refs:zIn

1017   const char *zIn = (const char*)sqlite3_value_text(apVal[0]);  in shellAddSchemaName()  local
1022 if( zIn!=0 && strncmp(zIn, "CREATE ", 7)==0 ){ in shellAddSchemaName()
1025 if( strncmp(zIn+7, aPrefix[i], n)==0 && zIn[n+7]==' ' ){ in shellAddSchemaName()
1031 z = sqlite3_mprintf("%.*s \"%w\".%s", n+7, zIn, zSchema, zIn+n+8); in shellAddSchemaName()
1033 z = sqlite3_mprintf("%.*s %s.%s", n+7, zIn, zSchema, zIn+n+8); in shellAddSchemaName()
1041 z = sqlite3_mprintf("%s\n/* %s */", zIn, zFake); in shellAddSchemaName()
4640 const unsigned char *zIn; in decimal_new() local
4652 zIn = zAlt; in decimal_new()
4660 zIn = sqlite3_value_text(pIn); in decimal_new()
4664 for(i=0; isspace(zIn[i]); i++){} in decimal_new()
4665 if( zIn[i]=='-' ){ in decimal_new()
4668 }else if( zIn[i]=='+' ){ in decimal_new()
4671 while( i<n && zIn[i]=='0' ) i++; in decimal_new()
4673 char c = zIn[i]; in decimal_new()
4682 if( zIn[j]=='-' ){ in decimal_new()
4685 }else if( zIn[j]=='+' ){ in decimal_new()
4689 if( zIn[j]>='0' && zIn[j]<='9' ){ in decimal_new()
4690 iExp = iExp*10 + zIn[j] - '0'; in decimal_new()
6161 static int re_match(ReCompiled *pRe, const unsigned char *zIn, int nIn){ in re_match() argument
6172 in.z = zIn; in re_match()
6174 in.mx = nIn>=0 ? nIn : (int)strlen((char const*)zIn); in re_match()
6180 && (zIn[in.i]!=x || in re_match()
6181 strncmp((const char*)zIn+in.i, (const char*)pRe->zInit, pRe->nInit)!=0) in re_match()
6378 const unsigned char *zIn = p->sIn.z + p->sIn.i; in re_esc_char() local
6379 if( re_hex(zIn[1],&v) in re_esc_char()
6380 && re_hex(zIn[2],&v) in re_esc_char()
6381 && re_hex(zIn[3],&v) in re_esc_char()
6382 && re_hex(zIn[4],&v) in re_esc_char()
6389 const unsigned char *zIn = p->sIn.z + p->sIn.i; in re_esc_char() local
6390 if( re_hex(zIn[1],&v) in re_esc_char()
6391 && re_hex(zIn[2],&v) in re_esc_char()
6594 static const char *re_compile(ReCompiled **ppRe, const char *zIn, int noCase){ in re_compile() argument
6610 if( zIn[0]=='^' ){ in re_compile()
6611 zIn++; in re_compile()
6615 pRe->sIn.z = (unsigned char*)zIn; in re_compile()
6617 pRe->sIn.mx = (int)strlen(zIn); in re_compile()
7059 static void zipfileDequote(char *zIn){ in zipfileDequote() argument
7060 char q = zIn[0]; in zipfileDequote()
7065 while( ALWAYS(zIn[iIn]) ){ in zipfileDequote()
7066 char c = zIn[iIn++]; in zipfileDequote()
7067 if( c==q && zIn[iIn++]!=q ) break; in zipfileDequote()
7068 zIn[iOut++] = c; in zipfileDequote()
7070 zIn[iOut] = '\0'; in zipfileDequote()
9624 static char *expertDequote(const char *zIn){ in expertDequote() argument
9625 int n = STRLEN(zIn); in expertDequote()
9628 assert( zIn[0]=='\'' ); in expertDequote()
9629 assert( zIn[n-1]=='\'' ); in expertDequote()
9635 if( zIn[iIn]=='\'' ){ in expertDequote()
9636 assert( zIn[iIn+1]=='\'' ); in expertDequote()
9639 zRet[iOut++] = zIn[iIn]; in expertDequote()
10023 static char *idxAppendText(int *pRc, char *zIn, const char *zFmt, ...){ in idxAppendText() argument
10027 int nIn = zIn ? STRLEN(zIn) : 0; in idxAppendText()
10037 if( nIn ) memcpy(zRet, zIn, nIn); in idxAppendText()
10045 sqlite3_free(zIn); in idxAppendText()
10075 char *zIn, /* Column defn accumulated so far */ in idxAppendColDefn() argument
10079 char *zRet = zIn; in idxAppendColDefn()