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

/macosx-10.9.5/Heimdal-323.92.1/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...]

Completed in 303 milliseconds