Searched refs:zOut (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/crypto/heimdal/lib/sqlite/
H A Dsqlite3.h930 ** of good-quality randomness into zOut. The return value is
969 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
974 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
H A Dsqlite3.c1483 ** of good-quality randomness into zOut. The return value is
1522 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1527 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
20117 #define WRITE_UTF8(zOut, c) { \
20119 *zOut++ = (u8)(c&0xFF); \
20122 *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); \
20123 *zOut++ = 0x80 + (u8)(c & 0x3F); \
20126 *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); \
20127 *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \
20128 *zOut
20259 unsigned char *zOut; /* Output buffer */ local
20470 unsigned char *zOut = zIn; local
32128 char *zOut = 0; local
34382 char *zOut; local
56720 u8 *zOut = &zDestData[iOff%nDestPgsz]; local
71480 u8 *zOut = zBuf; local
76909 char *zOut = sqlite3MPrintf(db, "%s%.*s\\"%w\\"", local
85033 unsigned char *zOut; /* The output */ local
121181 copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
121228 porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
[all...]
/freebsd-11-stable/contrib/sqlite3/
H A Dsqlite3.c2405 ** of good-quality randomness into zOut. The return value is
2444 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
2449 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
28666 char *zOut; /* Rendering buffer */ local
31131 unsigned char *zOut; /* Output buffer */ local
31393 unsigned char *zOut = zIn; local
32098 sqlite3Int64ToText(i64 v, char *zOut) argument
40239 mkFullPathname( const char *zPath, char *zOut, int nOut ) argument
44101 char *zOut = 0; local
47671 char *zOut; local
47693 char *zOut = sqlite3MallocZero( pVfs->mxPathname+1 ); local
47715 char *zOut = sqlite3MallocZero( pVfs->mxPathname+1 ); local
75962 u8 *zOut = &zDestData[iOff%nDestPgsz]; local
98033 u8 *zOut = zBuf; local
107890 char *zOut; local
119555 unsigned char *z, *zOut; local
119650 unsigned char *zOut; /* The output */ local
141730 const char *zOut; /* Name of output file */ local
178635 copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
178682 porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
188102 char *zOut; local
189202 char *zOut; local
203783 char *zOut = sqlite3_mprintf("rbu(%s)/%z", pRbuVfs->base.zName, zIn); local
207580 char *zOut = (char *)&p->aBuf[p->nBuf]; local
214234 char *zOut; /* Output value */ member in struct:HighlightContext
215658 char *zOut = sqlite3_malloc64(nIn+1); local
231065 char *zOut = aFold; local
231935 char *zOut = aBuf; local
[all...]
H A Dsqlite3.h1342 ** of good-quality randomness into zOut. The return value is
1381 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1386 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
H A Dshell.c3789 static int apndFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut);
3794 static int apndRandomness(sqlite3_vfs*, int nByte, char *zOut);
4217 char *zOut
4219 return ORIGVFS(pVfs)->xFullPathname(ORIGVFS(pVfs),zPath,nOut,zOut);
14656 char *zOut = (char*)sqlite3_malloc64(nAlloc); local
14657 if( zOut==0 ){
14663 memcpy(&zOut[iOut], "replace(replace(", 16);
14666 memcpy(&zOut[iOut], "replace(", 8);
14671 memcpy(&zOut[iOut], zNL, nNL);
14674 memcpy(&zOut[iOu
19911 const char *zOut; local
[all...]

Completed in 1136 milliseconds