• Home
  • Raw
  • Download

Lines Matching refs:zOut

1333   int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1338 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
17964 #define WRITE_UTF8(zOut, c) { \ argument
17966 *zOut++ = (u8)(c&0xFF); \
17969 *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); \
17970 *zOut++ = 0x80 + (u8)(c & 0x3F); \
17973 *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); \
17974 *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \
17975 *zOut++ = 0x80 + (u8)(c & 0x3F); \
17977 *zOut++ = 0xF0 + (u8)((c>>18) & 0x07); \
17978 *zOut++ = 0x80 + (u8)((c>>12) & 0x3F); \
17979 *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \
17980 *zOut++ = 0x80 + (u8)(c & 0x3F); \
17984 #define WRITE_UTF16LE(zOut, c) { \ argument
17986 *zOut++ = (u8)(c&0x00FF); \
17987 *zOut++ = (u8)((c>>8)&0x00FF); \
17989 *zOut++ = (u8)(((c>>10)&0x003F) + (((c-0x10000)>>10)&0x00C0)); \
17990 *zOut++ = (u8)(0x00D8 + (((c-0x10000)>>18)&0x03)); \
17991 *zOut++ = (u8)(c&0x00FF); \
17992 *zOut++ = (u8)(0x00DC + ((c>>8)&0x03)); \
17996 #define WRITE_UTF16BE(zOut, c) { \ argument
17998 *zOut++ = (u8)((c>>8)&0x00FF); \
17999 *zOut++ = (u8)(c&0x00FF); \
18001 *zOut++ = (u8)(0x00D8 + (((c-0x10000)>>18)&0x03)); \
18002 *zOut++ = (u8)(((c>>10)&0x003F) + (((c-0x10000)>>10)&0x00C0)); \
18003 *zOut++ = (u8)(0x00DC + ((c>>8)&0x03)); \
18004 *zOut++ = (u8)(c&0x00FF); \
18106 unsigned char *zOut; /* Output buffer */ in sqlite3VdbeMemTranslate() local
18176 zOut = sqlite3DbMallocRaw(pMem->db, len); in sqlite3VdbeMemTranslate()
18177 if( !zOut ){ in sqlite3VdbeMemTranslate()
18180 z = zOut; in sqlite3VdbeMemTranslate()
18199 pMem->n = (int)(z - zOut); in sqlite3VdbeMemTranslate()
18216 pMem->n = (int)(z - zOut); in sqlite3VdbeMemTranslate()
18225 pMem->z = (char*)zOut; in sqlite3VdbeMemTranslate()
18317 unsigned char *zOut = zIn; in sqlite3Utf8To8() local
18324 WRITE_UTF8(zOut, c); in sqlite3Utf8To8()
18327 *zOut = 0; in sqlite3Utf8To8()
18328 return (int)(zOut - zStart); in sqlite3Utf8To8()
25647 char *zOut /* Output buffer */
25660 zOut[nOut-1] = '\0';
25662 sqlite3_snprintf(nOut, zOut, "%s", zPath);
25665 if( getcwd(zOut, nOut-1)==0 ){
25668 nCwd = (int)strlen(zOut);
25669 sqlite3_snprintf(nOut-nCwd, &zOut[nCwd], "/%s", zPath);
28573 char *zOut = 0;
28586 zOut = unicodeToUtf8(zTempWide);
28606 zOut = sqlite3_win32_mbcs_to_utf8(zTemp);
28616 sqlite3_snprintf(nBuf, zBuf, "%s", zOut);
28618 free(zOut);
28898 char *zOut;
28911 zOut = unicodeToUtf8(zTemp);
28928 zOut = sqlite3_win32_mbcs_to_utf8(zTemp);
28932 if( zOut ){
28933 sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zOut);
28934 free(zOut);
45929 u8 *zOut = &zDestData[iOff%nDestPgsz];
45938 memcpy(zOut, zIn, nCopy);
58996 u8 *zOut = zBuf;
59020 memcpy(zOut, &pChunk->zChunk[iChunkOffset], nCopy);
59021 zOut += nCopy;
64383 char *zOut = sqlite3MPrintf(db, "%s%.*s\"%w\"",
64387 zOutput = zOut;
72174 unsigned char *zOut; /* The output */
72207 zOut = contextMalloc(context, (i64)nOut);
72208 if( zOut==0 ){
72214 zOut[j++] = zStr[i];
72223 sqlite3DbFree(db, zOut);
72226 zOld = zOut;
72227 zOut = sqlite3_realloc(zOut, (int)nOut);
72228 if( zOut==0 ){
72233 memcpy(&zOut[j], zRep, nRep);
72239 memcpy(&zOut[j], &zStr[i], nStr-i);
72242 zOut[j] = 0;
72243 sqlite3_result_text(context, (char*)zOut, j, sqlite3_free);
102799 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){
102805 zOut[i] = c - 'A' + 'a';
102808 zOut[i] = c;
102814 zOut[j] = zOut[i];
102818 zOut[i] = 0;
102846 static void porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){
102853 copy_stemmer(zIn, nIn, zOut, pnOut);
102865 copy_stemmer(zIn, nIn, zOut, pnOut);
103057 zOut[i] = 0;
103059 zOut[--i] = *(z++);