Home
last modified time | relevance | path

Searched defs:z (Results 1 – 25 of 182) sorted by relevance

12345678

/sqlite-3.40.0/src/
H A Dwal.h29 # define sqlite3WalOpen(x,y,z) 0 argument
31 # define sqlite3WalClose(v,w,x,y,z) 0 argument
32 # define sqlite3WalBeginReadTransaction(y,z) 0 argument
33 # define sqlite3WalEndReadTransaction(z) argument
37 # define sqlite3WalUndo(x,y,z) 0 argument
38 # define sqlite3WalSavepoint(y,z) argument
39 # define sqlite3WalSavepointUndo(y,z) 0 argument
40 # define sqlite3WalFrames(u,v,w,x,y,z) 0 argument
42 # define sqlite3WalCallback(z) 0 argument
43 # define sqlite3WalExclusiveMode(y,z) 0 argument
[all …]
H A Dutil.c79 int sqlite3Strlen30(const char *z){ in sqlite3Strlen30()
169 char *z; in sqlite3ErrorWithMsg() local
244 void sqlite3Dequote(char *z){ in sqlite3Dequote()
298 void sqlite3TokenInit(Token *p, char *z){ in sqlite3TokenInit()
359 u8 sqlite3StrIHash(const char *z){ in sqlite3StrIHash()
808 int sqlite3DecOrHexToI64(const char *z, i64 *pOut){ in sqlite3DecOrHexToI64()
897 int sqlite3Atoi(const char *z){ in sqlite3Atoi()
909 int sqlite3GetUInt32(const char *z, u32 *pI){ in sqlite3GetUInt32()
1357 void *sqlite3HexToBlob(sqlite3 *db, const char *z, int n){ in sqlite3HexToBlob()
1521 void sqlite3FileSuffix3(const char *zBaseFilename, char *z){ in sqlite3FileSuffix3()
[all …]
H A Dprintf.c181 char *z; in printfTempBuf() local
785 unsigned char *z = (unsigned char*)bufpt; in sqlite3_str_vappendf() local
935 void sqlite3RecordErrorByteOffset(sqlite3 *db, const char *z){ in sqlite3RecordErrorByteOffset()
1051 void sqlite3_str_append(sqlite3_str *p, const char *z, int N){ in sqlite3_str_append()
1068 void sqlite3_str_appendall(sqlite3_str *p, const char *z){ in sqlite3_str_appendall()
1130 char *z; in sqlite3_str_finish() local
1211 char *z; in sqlite3VMPrintf() local
1232 char *z; in sqlite3MPrintf() local
1244 char *z; in sqlite3_vmprintf() local
1269 char *z; in sqlite3_mprintf() local
[all …]
H A Dutf.c187 unsigned char *z; /* Output iterator */ in sqlite3VdbeMemTranslate() local
417 const u8 *z = (const u8*)zIn; in sqlite3Utf8CharLen() local
469 char *sqlite3Utf16to8(sqlite3 *db, const void *z, int nByte, u8 enc){ in sqlite3Utf16to8()
492 unsigned char const *z = zIn; in sqlite3Utf16ByteLen() local
515 unsigned char *z; in sqlite3UtfSelfTest() local
H A Dtokenize.c198 const unsigned char *z = *pz; in getToken() local
246 static int analyzeWindowKeyword(const unsigned char *z){ in analyzeWindowKeyword()
254 static int analyzeOverKeyword(const unsigned char *z, int lastToken){ in analyzeOverKeyword()
261 static int analyzeFilterKeyword(const unsigned char *z, int lastToken){ in analyzeFilterKeyword()
273 int sqlite3GetToken(const unsigned char *z, int *tokenType){ in sqlite3GetToken()
H A Dshell.c.in534 char *z; local
809 char *z; member
2063 char *z; local
2228 char *z; local
2615 char *z; local
2698 const char *z; local
2766 char z[200]; local
2839 char z[100]; local
6481 char *z; local
6576 char *z; local
[all …]
H A Dtest_md5.c80 #define F1(x, y, z) (z ^ (x & (y ^ z))) argument
81 #define F2(x, y, z) F1(z, x, y) argument
82 #define F3(x, y, z) (x ^ y ^ z) argument
83 #define F4(x, y, z) (y ^ (x | ~z)) argument
86 #define MD5STEP(f, w, x, y, z, data, s) \ argument
/sqlite-3.40.0/ext/fts3/
H A Dfts3_porter.c150 static int isConsonant(const char *z){ in isConsonant()
159 static int isVowel(const char *z){ in isVowel()
188 static int m_gt_0(const char *z){ in m_gt_0()
198 static int m_eq_1(const char *z){ in m_eq_1()
212 static int m_gt_1(const char *z){ in m_gt_1()
226 static int hasVowel(const char *z){ in hasVowel()
237 static int doubleConsonant(const char *z){ in doubleConsonant()
249 static int star_oh(const char *z){ in star_oh()
275 char *z = *pz; in stem() local
344 char *z, *z2; in porter_stemmer() local
[all …]
H A Dfts3_expr.c134 const char *z, in sqlite3Fts3OpenTokenizer()
179 const char *z, int n, /* Input string */ in getNextToken()
395 const char *z, int n, /* Input string */ in getNextNode()
400 char *z; /* Keyword text */ in getNextNode() member
614 const char *z, int n, /* Text of MATCH query */ in fts3ExprParse()
968 const char *z, int n, /* Text of MATCH query */ in fts3ExprParseUnbalanced()
1031 const char *z, int n, /* Text of MATCH query */ in sqlite3Fts3ExprParse()
/sqlite-3.40.0/ext/fts2/
H A Dfts2_porter.c151 static int isConsonant(const char *z){ in isConsonant()
160 static int isVowel(const char *z){ in isVowel()
189 static int m_gt_0(const char *z){ in m_gt_0()
199 static int m_eq_1(const char *z){ in m_eq_1()
213 static int m_gt_1(const char *z){ in m_gt_1()
227 static int hasVowel(const char *z){ in hasVowel()
238 static int doubleConsonant(const char *z){ in doubleConsonant()
250 static int star_oh(const char *z){ in star_oh()
276 char *z = *pz; in stem() local
345 char *z, *z2; in porter_stemmer() local
[all …]
/sqlite-3.40.0/ext/fts1/
H A Dfts1_porter.c149 static int isConsonant(const char *z){ in isConsonant()
158 static int isVowel(const char *z){ in isVowel()
187 static int m_gt_0(const char *z){ in m_gt_0()
197 static int m_eq_1(const char *z){ in m_eq_1()
211 static int m_gt_1(const char *z){ in m_gt_1()
225 static int hasVowel(const char *z){ in hasVowel()
236 static int doubleConsonant(const char *z){ in doubleConsonant()
248 static int star_oh(const char *z){ in star_oh()
274 char *z = *pz; in stem() local
343 char *z, *z2; in porter_stemmer() local
[all …]
/sqlite-3.40.0/tool/
H A Dsrcck1.c32 char *z; in readFile() local
80 static int hasSideEffect(const char *z, unsigned int n){ in hasSideEffect()
95 static unsigned int findCloseParen(const char *z){ in findCloseParen()
114 static unsigned int findAllSideEffects(const char *z){ in findAllSideEffects()
144 char *z; in main() local
H A Ddbhash.c81 #define Rl0(v,w,x,y,z,i) \ argument
83 #define Rb0(v,w,x,y,z,i) \ argument
85 #define R1(v,w,x,y,z,i) \ argument
87 #define R2(v,w,x,y,z,i) \ argument
89 #define R3(v,w,x,y,z,i) \ argument
91 #define R4(v,w,x,y,z,i) \ argument
338 const unsigned char *z = sqlite3_column_text(pStmt, i); in hash_one_query() local
348 const unsigned char *z = sqlite3_column_blob(pStmt, i); in hash_one_query() local
393 const char *z = argv[i]; in main() local
H A Dlogest.c96 int isInteger(const char *z){ in isInteger()
101 int isFloat(const char *z){ in isFloat()
128 const char *z = argv[i]; in main() local
H A Dmksourceid.c559 #define Rl0(v,w,x,y,z,i) \ argument
561 #define Rb0(v,w,x,y,z,i) \ argument
563 #define R1(v,w,x,y,z,i) \ argument
565 #define R2(v,w,x,y,z,i) \ argument
567 #define R3(v,w,x,y,z,i) \ argument
569 #define R4(v,w,x,y,z,i) \ argument
747 static char *nextToken(char *z){ in nextToken()
768 const char *z = argv[i]; in main() local
/sqlite-3.40.0/ext/lsm1/
H A Dlsm_varint.c26 static int lsmSqlite4GetVarint64(const unsigned char *z, u64 *pResult){ in lsmSqlite4GetVarint64()
69 static void lsmVarintWrite32(unsigned char *z, unsigned int y){ in lsmVarintWrite32()
81 static int lsmSqlite4PutVarint64(unsigned char *z, u64 x){ in lsmSqlite4PutVarint64()
157 int lsmVarintGet32(u8 *z, int *piVal){ in lsmVarintGet32()
H A Dlsm_vtab.c197 static void lsm1VblobAppendText(lsm1_vblob *p, const char *z){ in lsm1VblobAppendText()
202 static void lsm1Dequote(char *z){ in lsm1Dequote()
426 static void varintWrite32(unsigned char *z, unsigned int y){ in varintWrite32()
438 static int lsm1PutVarint64(unsigned char *z, sqlite3_uint64 x){ in lsm1PutVarint64()
514 const unsigned char *z, in lsm1GetVarint64()
568 static int lsm1PutSignedVarint64(u8 *z, sqlite3_int64 v){ in lsm1PutSignedVarint64()
581 const unsigned char *z, in lsm1GetSignedVarint64()
651 const unsigned char *z = (const unsigned char*)pVal; in lsm1Column() local
/sqlite-3.40.0/ext/misc/
H A Dvtablog.c59 static const char *vtablog_skip_whitespace(const char *z){ in vtablog_skip_whitespace()
65 static void vtablog_trim_whitespace(char *z){ in vtablog_trim_whitespace()
72 static void vtablog_dequote(char *z){ in vtablog_dequote()
91 static const char *vtablog_parameter(const char *zTag, int nTag, const char *z){ in vtablog_parameter()
190 const char *z = argv[i]; in vtablogConnectCreate() local
349 char z[50]; in vtablogQuote() local
367 const unsigned char *z = (const unsigned char*)sqlite3_value_blob(p); in vtablogQuote() local
375 const char *z = (const char*)sqlite3_value_text(p); in vtablogQuote() local
H A Dcsv.c76 char *z; /* Accumulated text for a field */ member
348 static const char *csv_skip_whitespace(const char *z){ in csv_skip_whitespace()
354 static void csv_trim_whitespace(char *z){ in csv_trim_whitespace()
361 static void csv_dequote(char *z){ in csv_dequote()
380 static const char *csv_parameter(const char *zTag, int nTag, const char *z){ in csv_parameter()
422 static int csv_boolean(const char *z){ in csv_boolean()
448 const char *z, /* Input parameter */ in csv_boolean_parameter()
518 const char *z = argv[i]; in csvtabConnect() local
587 char *z = csv_read_one_field(&sRdr); in csvtabConnect() local
733 char *z; in csvtabNext() local
H A Dsha1.c58 #define Rl0(v,w,x,y,z,i) \ argument
60 #define Rb0(v,w,x,y,z,i) \ argument
62 #define R1(v,w,x,y,z,i) \ argument
64 #define R2(v,w,x,y,z,i) \ argument
66 #define R3(v,w,x,y,z,i) \ argument
68 #define R4(v,w,x,y,z,i) \ argument
282 const char *z; in sha1QueryFunc() local
H A Ddbdump.c70 char *z; /* The text */ member
284 char *z; in output_formatted() local
300 const char *z, /* Result must not appear anywhere in z */ in unused_string()
319 static void output_quoted_escaped_string(DState *p, const char *z){ in output_quoted_escaped_string()
555 const char *z; in output_sql_from_query() local
613 char *z; in run_schema_dump_query() local
H A Dzorder.c38 sqlite3_int64 z, x[63]; in zorderFunc() local
71 sqlite3_int64 z, n, i, x; in unzorderFunc() local
/sqlite-3.40.0/test/
H A Dthreadtest3.c42 #define closedb(y,z) (SEL(y), closedb_x(y,z)) argument
50 #define sql_script_printf(x,y,z,...) ( \ argument
60 #define timetostop(z) (SEL(z), timetostop_x(z)) argument
64 #define clear_error(y,z) clear_error_x(y, z) argument
67 #define filesize(y,z) (SEL(y), filesize_x(y,z)) argument
169 #define F1(x, y, z) (z ^ (x & (y ^ z))) argument
170 #define F2(x, y, z) F1(z, x, y) argument
171 #define F3(x, y, z) (x ^ y ^ z) argument
172 #define F4(x, y, z) (y ^ (x | ~z)) argument
175 #define MD5STEP(f, w, x, y, z, data, s) \ argument
[all …]
/sqlite-3.40.0/mptest/
H A Dmptest.c136 int strglob(const char *zGlob, const char *z){ in strglob()
294 static int clipLength(const char *z){ in clipLength()
410 char *z; /* the string */ member
422 static void stringAppend(String *p, const char *z, int n){ in stringAppend()
444 static void stringAppendTerm(String *p, const char *z){ in stringAppendTerm()
687 char *z; in readFile() local
704 static int tokenLength(const char *z, int *pnLine){ in tokenLength()
763 static int findEnd(const char *z, int *pnLine){ in findEnd()
776 static int findEndif(const char *z, int stopAtElse, int *pnLine){ in findEndif()
836 static char *filenameTail(char *z){ in filenameTail()
[all …]
/sqlite-3.40.0/ext/lsm1/lsm-test/
H A Dlsmtest_io.c84 char *z = zIn; in getNextSize() local
128 char *z = zCmd; in doOneCmd() local
202 char *z; in do_io() local

12345678