Home
last modified time | relevance | path

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

/src/contrib/sqlite3/
H A Dshell.c2947 char zBuf[50]; in sha3_step_vformat() local
2949 sqlite3_vsnprintf(sizeof(zBuf),zBuf,zFormat,ap); in sha3_step_vformat()
2951 n = (int)strlen(zBuf); in sha3_step_vformat()
2952 SHA3Update(p, (unsigned char*)zBuf, n); in sha3_step_vformat()
3373 char zBuf[50]; in hash_step_vformat() local
3375 sqlite3_vsnprintf(sizeof(zBuf),zBuf,zFormat,ap); in hash_step_vformat()
3377 n = (int)strlen(zBuf); in hash_step_vformat()
3378 hash_step(p, (unsigned char*)zBuf, n); in hash_step_vformat()
9765 void *zBuf, in apndRead() argument
9771 return pFile->pMethods->xRead(pFile, zBuf, iAmt, paf->iPgOne+iOfst); in apndRead()
[all …]
H A Dsqlite3.c21199 char zBuf[24]; /* Storage for significant digits */ member
25909 char zBuf[32]; in datetimeFunc() local
25913 zBuf[1] = '0' + (Y/1000)%10; in datetimeFunc()
25914 zBuf[2] = '0' + (Y/100)%10; in datetimeFunc()
25915 zBuf[3] = '0' + (Y/10)%10; in datetimeFunc()
25916 zBuf[4] = '0' + (Y)%10; in datetimeFunc()
25917 zBuf[5] = '-'; in datetimeFunc()
25918 zBuf[6] = '0' + (x.M/10)%10; in datetimeFunc()
25919 zBuf[7] = '0' + (x.M)%10; in datetimeFunc()
25920 zBuf[8] = '-'; in datetimeFunc()
[all …]
/src/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c877 char zBuf[64]; in setTestUnlockNotifyVars() local
878 sqlite3_snprintf(sizeof(zBuf), zBuf, "%d", iArg); in setTestUnlockNotifyVars()
879 Tcl_SetVar(interp, "sqlite_unlock_notify_arg", zBuf, TCL_GLOBAL_ONLY); in setTestUnlockNotifyVars()
880 sqlite3_snprintf(sizeof(zBuf), zBuf, "%d", nArg); in setTestUnlockNotifyVars()
881 Tcl_SetVar(interp, "sqlite_unlock_notify_argcount", zBuf, TCL_GLOBAL_ONLY); in setTestUnlockNotifyVars()
3741 char zBuf[100]; in DbObjCmd() local
3742 sqlite3_snprintf(sizeof(zBuf), zBuf, "%p", in DbObjCmd()
3744 Tcl_SetResult(interp, zBuf, TCL_VOLATILE); in DbObjCmd()