Home
last modified time | relevance | path

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

/src/contrib/sqlite3/
H A Dshell.c3387 char *zOut, /* Store hex or binary hash here */ in hash_finish() argument
3408 memcpy(zOut, digest, 20); in hash_finish()
3411 zOut[i*2] = zEncode[(digest[i]>>4)&0xf]; in hash_finish()
3412 zOut[i*2+1] = zEncode[digest[i] & 0xf]; in hash_finish()
3414 zOut[i*2]= 0; in hash_finish()
3437 char zOut[44]; in sha1Func() local
3448 hash_finish(&cx, zOut, 1); in sha1Func()
3449 sqlite3_result_blob(context, zOut, 20, SQLITE_TRANSIENT); in sha1Func()
3451 hash_finish(&cx, zOut, 0); in sha1Func()
3452 sqlite3_result_blob(context, zOut, 40, SQLITE_TRANSIENT); in sha1Func()
[all …]
H A Dsqlite3.c1819 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1824 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
31853 char *zOut; /* Rendering buffer */ in sqlite3_str_vappendf() local
32077 zOut = buf; in sqlite3_str_vappendf()
32082 zOut = zExtra = printfTempBuf(pAccum, n); in sqlite3_str_vappendf()
32083 if( zOut==0 ) return; in sqlite3_str_vappendf()
32086 bufpt = &zOut[nOut-1]; in sqlite3_str_vappendf()
32104 length = (int)(&zOut[nOut-1]-bufpt); in sqlite3_str_vappendf()
32130 length = (int)(&zOut[nOut-1]-bufpt); in sqlite3_str_vappendf()
32222 zOut = bufpt; in sqlite3_str_vappendf()
[all …]
H A Dsqlite3.h1500 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1505 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);