Home
last modified time | relevance | path

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

12

/external/chromium_org/third_party/sqlite/src/src/
Dutf.c64 #define WRITE_UTF8(zOut, c) { \ argument
66 *zOut++ = (u8)(c&0xFF); \
69 *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); \
70 *zOut++ = 0x80 + (u8)(c & 0x3F); \
73 *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); \
74 *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \
75 *zOut++ = 0x80 + (u8)(c & 0x3F); \
77 *zOut++ = 0xF0 + (u8)((c>>18) & 0x07); \
78 *zOut++ = 0x80 + (u8)((c>>12) & 0x3F); \
79 *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \
[all …]
Dtest_func.c336 static void testHexToBin(const char *zIn, char *zOut){ in testHexToBin() argument
338 *(zOut++) = (testHexChar(zIn[0])<<4) + testHexChar(zIn[1]); in testHexToBin()
357 char *zOut; in testHexToUtf16be() local
361 zOut = sqlite3_malloc( n/2 ); in testHexToUtf16be()
362 if( zOut==0 ){ in testHexToUtf16be()
365 testHexToBin(zIn, zOut); in testHexToUtf16be()
366 sqlite3_result_text16be(pCtx, zOut, n/2, sqlite3_free); in testHexToUtf16be()
384 char *zOut; in testHexToUtf8() local
388 zOut = sqlite3_malloc( n/2 ); in testHexToUtf8()
389 if( zOut==0 ){ in testHexToUtf8()
[all …]
Dmemjournal.c79 u8 *zOut = zBuf; in memjrnlRead() local
103 memcpy(zOut, &pChunk->zChunk[iChunkOffset], nCopy); in memjrnlRead()
104 zOut += nCopy; in memjrnlRead()
Dtest_devsym.c64 static int devsymFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut);
71 static int devsymRandomness(sqlite3_vfs*, int nByte, char *zOut);
314 char *zOut in devsymFullPathname() argument
316 return sqlite3OsFullPathname(g.pVfs, zPath, nOut, zOut); in devsymFullPathname()
Dfunc.c967 unsigned char *zOut; /* The output */ in replaceFunc() local
1000 zOut = contextMalloc(context, (i64)nOut); in replaceFunc()
1001 if( zOut==0 ){ in replaceFunc()
1007 zOut[j++] = zStr[i]; in replaceFunc()
1016 sqlite3_free(zOut); in replaceFunc()
1019 zOld = zOut; in replaceFunc()
1020 zOut = sqlite3_realloc(zOut, (int)nOut); in replaceFunc()
1021 if( zOut==0 ){ in replaceFunc()
1026 memcpy(&zOut[j], zRep, nRep); in replaceFunc()
1032 memcpy(&zOut[j], &zStr[i], nStr-i); in replaceFunc()
[all …]
Dtest_server.c229 const char *zOut; /* Tail of the SQL statement */ member
354 if( pzTail ) *pzTail = msg.zOut; in sqlite3_client_prepare()
429 &pMsg->pStmt, &pMsg->zOut); in sqlite3_server()
Dtest_malloc.c316 char zOut[100]; in test_malloc() local
323 pointerToText(p, zOut); in test_malloc()
324 Tcl_AppendResult(interp, zOut, NULL); in test_malloc()
341 char zOut[100]; in test_realloc() local
352 pointerToText(p, zOut); in test_realloc()
353 Tcl_AppendResult(interp, zOut, NULL); in test_realloc()
402 char *zOut; in test_memset() local
427 zOut = p; in test_memset()
429 zOut[i] = zBin[i%n]; in test_memset()
Dos_win.c1987 char *zOut = 0; in getLastErrorMsg() local
2000 zOut = unicodeToUtf8(zTempWide); in getLastErrorMsg()
2020 zOut = sqlite3_win32_mbcs_to_utf8(zTemp); in getLastErrorMsg()
2030 sqlite3_snprintf(nBuf, zBuf, "%s", zOut); in getLastErrorMsg()
2032 free(zOut); in getLastErrorMsg()
2413 char *zOut; in winFullPathname() local
2433 zOut = unicodeToUtf8(zTemp); in winFullPathname()
2450 zOut = sqlite3_win32_mbcs_to_utf8(zTemp); in winFullPathname()
2454 if( zOut ){ in winFullPathname()
2455 sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zOut); in winFullPathname()
[all …]
Dtest_journal.c156 static int jtFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut);
161 static int jtRandomness(sqlite3_vfs*, int nByte, char *zOut);
761 char *zOut in jtFullPathname() argument
763 return sqlite3OsFullPathname(g.pVfs, zPath, nOut, zOut); in jtFullPathname()
Dtest_onefile.c166 static int fsFullPathname(sqlite3_vfs*, const char *zName, int nOut,char *zOut);
171 static int fsRandomness(sqlite3_vfs*, int nByte, char *zOut);
749 char *zOut /* Output buffer */ in fsFullPathname() argument
752 return pParent->xFullPathname(pParent, zPath, nOut, zOut); in fsFullPathname()
Dtest_vfstrace.c75 static int vfstraceRandomness(sqlite3_vfs*, int nByte, char *zOut);
579 char *zOut in vfstraceFullPathname() argument
586 rc = pRoot->xFullPathname(pRoot, zPath, nOut, zOut); in vfstraceFullPathname()
588 vfstrace_printf(pInfo, ", out=\"%.*s\"\n", nOut, zOut); in vfstraceFullPathname()
Dtest_osinst.c162 static int vfslogFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut);
167 static int vfslogRandomness(sqlite3_vfs*, int nByte, char *zOut);
543 char *zOut in vfslogFullPathname() argument
545 return REALVFS(pVfs)->xFullPathname(REALVFS(pVfs), zPath, nOut, zOut); in vfslogFullPathname()
Dbackup.c275 u8 *zOut = &zDestData[iOff%nDestPgsz]; in backupOnePage() local
284 memcpy(zOut, zIn, nCopy); in backupOnePage()
Dtest_vfs.c176 static int tvfsFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut);
183 static int tvfsRandomness(sqlite3_vfs*, int nByte, char *zOut);
664 char *zOut in tvfsFullPathname() argument
666 return sqlite3OsFullPathname(PARENTVFS(pVfs), zPath, nOut, zOut); in tvfsFullPathname()
Dalter.c132 char *zOut = sqlite3MPrintf(db, "%s%.*s\"%w\"", in renameParentFunc() local
136 zOutput = zOut; in renameParentFunc()
/external/chromium_org/third_party/sqlite/src/ext/fts2/
Dfts2_porter.c292 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ in copy_stemmer() argument
298 zOut[i] = c - 'A' + 'a'; in copy_stemmer()
301 zOut[i] = c; in copy_stemmer()
307 zOut[j] = zOut[i]; in copy_stemmer()
311 zOut[i] = 0; in copy_stemmer()
339 static void porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ in porter_stemmer() argument
346 copy_stemmer(zIn, nIn, zOut, pnOut); in porter_stemmer()
358 copy_stemmer(zIn, nIn, zOut, pnOut); in porter_stemmer()
550 zOut[i] = 0; in porter_stemmer()
552 zOut[--i] = *(z++); in porter_stemmer()
/external/chromium_org/third_party/sqlite/src/ext/fts3/
Dfts3_porter.c295 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ in copy_stemmer() argument
301 zOut[i] = c - 'A' + 'a'; in copy_stemmer()
304 zOut[i] = c; in copy_stemmer()
310 zOut[j] = zOut[i]; in copy_stemmer()
314 zOut[i] = 0; in copy_stemmer()
342 static void porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ in porter_stemmer() argument
349 copy_stemmer(zIn, nIn, zOut, pnOut); in porter_stemmer()
361 copy_stemmer(zIn, nIn, zOut, pnOut); in porter_stemmer()
553 zOut[i] = 0; in porter_stemmer()
555 zOut[--i] = *(z++); in porter_stemmer()
/external/chromium_org/third_party/sqlite/src/ext/fts1/
Dfts1_porter.c293 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ in copy_stemmer() argument
299 zOut[i] = c - 'A' + 'a'; in copy_stemmer()
302 zOut[i] = c; in copy_stemmer()
308 zOut[j] = zOut[i]; in copy_stemmer()
312 zOut[i] = 0; in copy_stemmer()
340 static void porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ in porter_stemmer() argument
347 copy_stemmer(zIn, nIn, zOut, pnOut); in porter_stemmer()
359 copy_stemmer(zIn, nIn, zOut, pnOut); in porter_stemmer()
551 zOut[i] = 0; in porter_stemmer()
553 zOut[--i] = *(z++); in porter_stemmer()
/external/valgrind/main/none/tests/amd64/
Dbug127521-64.c10 ULong* zOut, in do_cmpxchg8b() argument
47 *zOut = block[5]; in do_cmpxchg8b()
63 ULong* zOut, in do_cmpxchg16b() argument
100 *zOut = block[5]; in do_cmpxchg16b()
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
DCMSProcessableByteArray.java40 public void write(OutputStream zOut) in write() argument
43 zOut.write(bytes); in write()
DCMSAbsentContent.java34 public void write(OutputStream zOut) in write() argument
/external/lzma/CPP/7zip/Bundles/Format7zR/
Dmakefile67 $O\7zOut.obj \
/external/lzma/CPP/7zip/Bundles/Alone7z/
Dmakefile122 $O\7zOut.obj \
/external/chromium_org/third_party/sqlite/src/ext/async/
Dsqlite3async.c664 void *zOut, in asyncRead() argument
693 rc = pBase->pMethods->xRead(pBase, zOut, (int)nRead, iOffset); in asyncRead()
724 memcpy(&((char *)zOut)[iBeginOut], &pWrite->zBuf[iBeginIn], (size_t)nCopy); in asyncRead()
/external/chromium_org/third_party/sqlite/amalgamation/
Dsqlite3.h927 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
932 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);

12