Home
last modified time | relevance | path

Searched refs:nSep (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2526 int nSep; /* Number of bytes in zSep[] */ in DbObjCmd() local
2558 nSep = strlen30(zSep); in DbObjCmd()
2560 if( nSep==0 ){ in DbObjCmd()
2637 if( *z==zSep[0] && strncmp(z, zSep, nSep)==0 ){ in DbObjCmd()
2641 azCol[i] = &z[nSep]; in DbObjCmd()
2642 z += nSep-1; in DbObjCmd()
/freebsd/contrib/sqlite3/
H A Dshell.c29622 int nSep; /* Number of bytes in p->colSeparator[] */ in do_meta_command() local
29685 nSep = strlen30(p->colSeparator); in do_meta_command()
29686 if( nSep==0 ){ in do_meta_command()
29690 if( nSep>1 ){ in do_meta_command()
29695 nSep = strlen30(p->rowSeparator); in do_meta_command()
29696 if( nSep==0 ){ in do_meta_command()
29700 if( nSep==2 && p->mode==MODE_Csv in do_meta_command()
29708 nSep = strlen30(p->rowSeparator); in do_meta_command()
29710 if( nSep>1 ){ in do_meta_command()
H A Dsqlite3.c132046 int nSep,
132055 n += (argc-1)*(i64)nSep;
132067 if( j>0 && nSep>0 ){
132068 memcpy(&z[j], zSep, nSep);
132069 j += nSep;
132105 int nSep = sqlite3_value_bytes(argv[0]);
132108 concatFuncCore(context, argc-1, argv+1, nSep, zSep);
132569 int nVal, nSep;
132588 nSep = sqlite3_value_bytes(argv[1]);
132590 sqlite3_str_append(&pGCC->str, zSep, nSep);
[all …]