Home
last modified time | relevance | path

Searched refs:zEnd (Results 1 – 2 of 2) sorted by relevance

/src/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1311 const char *zEnd; in DbTransPostCmd() local
1314 zEnd = azEnd[(rc==TCL_ERROR)*2 + (pDb->nTransaction==0)]; in DbTransPostCmd()
1317 if( sqlite3_exec(pDb->db, zEnd, 0, 0, 0) ){ in DbTransPostCmd()
/src/contrib/sqlite3/
H A Dsqlite3.c31543 SQLITE_PRIVATE char *sqlite3DbSpanDup(sqlite3 *db, const char *zStart, const char *zEnd){ in sqlite3DbSpanDup() argument
31548 for(n=0; sqlite3Isspace(zStart[n]); n++){ assert( &zStart[n]<zEnd ); } in sqlite3DbSpanDup()
31551 n = (int)(zEnd - zStart); in sqlite3DbSpanDup()
32610 const char *zEnd; in sqlite3RecordErrorByteOffset() local
32618 zEnd = &zText[strlen(zText)]; in sqlite3RecordErrorByteOffset()
32619 if( SQLITE_WITHIN(z,zText,zEnd) ){ in sqlite3RecordErrorByteOffset()
35465 unsigned char const *zEnd = &z[nByte-1]; in sqlite3Utf16ByteLen() local
35469 while( n<nChar && z<=zEnd ){ in sqlite3Utf16ByteLen()
35472 if( c>=0xd8 && c<0xdc && z<=zEnd && z[0]>=0xdc && z[0]<0xe0 ) z += 2; in sqlite3Utf16ByteLen()
36043 const char *zEnd; in sqlite3AtoF() local
[all …]