Searched refs:nSep (Results 1 – 3 of 3) sorted by relevance
/netbsd-src/external/public-domain/sqlite/dist/tea/generic/ |
H A D | tclsqlite3.c | 2478 int nSep; /* Number of bytes in zSep[] */ in DbObjCmd() local 2509 nSep = strlen30(zSep); in DbObjCmd() 2511 if( nSep==0 ){ in DbObjCmd() 2584 if( *z==zSep[0] && strncmp(z, zSep, nSep)==0 ){ in DbObjCmd() 2588 azCol[i] = &z[nSep]; in DbObjCmd() 2589 z += nSep-1; in DbObjCmd()
|
/netbsd-src/external/public-domain/sqlite/dist/ |
H A D | shell.c | 25564 int nSep; /* Number of bytes in p->colSeparator[] */ in do_meta_command() local 25628 nSep = strlen30(p->colSeparator); in do_meta_command() 25629 if( nSep==0 ){ in do_meta_command() 25633 if( nSep>1 ){ in do_meta_command() 25638 nSep = strlen30(p->rowSeparator); in do_meta_command() 25639 if( nSep==0 ){ in do_meta_command() 25643 if( nSep==2 && p->mode==MODE_Csv in do_meta_command() 25651 nSep = strlen30(p->rowSeparator); in do_meta_command() 25653 if( nSep>1 ){ in do_meta_command()
|
H A D | sqlite3.c | 129461 int nSep, 129470 n += (argc-1)*nSep; 129482 if( j>0 && nSep>0 ){ 129483 memcpy(&z[j], zSep, nSep); 129484 j += nSep; 129520 int nSep = sqlite3_value_bytes(argv[0]); 129523 concatFuncCore(context, argc-1, argv+1, nSep, zSep); 129977 int nVal, nSep; 129996 nSep = sqlite3_value_bytes(argv[1]); 129998 sqlite3_str_append(&pGCC->str, zSep, nSep); [all …]
|