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

12

/external/chromium_org/third_party/sqlite/src/src/
H A Dutf.c64 #define WRITE_UTF8(zOut, c) { \
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
206 unsigned char *zOut; /* Output buffer */ local
417 unsigned char *zOut = zIn; local
[all...]
H A Dtest_func.c336 static void testHexToBin(const char *zIn, char *zOut){ argument
338 *(zOut++) = (testHexChar(zIn[0])<<4) + testHexChar(zIn[1]);
357 char *zOut; local
361 zOut = sqlite3_malloc( n/2 );
362 if( zOut==0 ){
365 testHexToBin(zIn, zOut);
366 sqlite3_result_text16be(pCtx, zOut, n/2, sqlite3_free);
384 char *zOut; local
388 zOut = sqlite3_malloc( n/2 );
389 if( zOut
411 char *zOut; local
[all...]
H A Dmemjournal.c79 u8 *zOut = zBuf; local
103 memcpy(zOut, &pChunk->zChunk[iChunkOffset], nCopy);
104 zOut += nCopy;
H A Dtest_devsym.c64 static int devsymFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut);
71 static int devsymRandomness(sqlite3_vfs*, int nByte, char *zOut);
306 ** Populate buffer zOut with the full canonical pathname corresponding
307 ** to the pathname in zPath. zOut is guaranteed to point to a buffer
314 char *zOut
316 return sqlite3OsFullPathname(g.pVfs, zPath, nOut, zOut);
H A Dtest_server.c229 const char *zOut; /* Tail of the SQL statement */ member in struct:SqlMessage
240 #define MSG_Prepare 2 /* sqlite3_prepare(pDb, zIn, nByte, &pStmt, &zOut) */
354 if( pzTail ) *pzTail = msg.zOut;
429 &pMsg->pStmt, &pMsg->zOut);
H A Dtest_malloc.c316 char zOut[100]; local
323 pointerToText(p, zOut);
324 Tcl_AppendResult(interp, zOut, NULL);
341 char zOut[100]; local
352 pointerToText(p, zOut);
353 Tcl_AppendResult(interp, zOut, NULL);
402 char *zOut; local
427 zOut = p;
429 zOut[i] = zBin[i%n];
H A Dtest_journal.c156 static int jtFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut);
161 static int jtRandomness(sqlite3_vfs*, int nByte, char *zOut);
753 ** Populate buffer zOut with the full canonical pathname corresponding
754 ** to the pathname in zPath. zOut is guaranteed to point to a buffer
761 char *zOut
763 return sqlite3OsFullPathname(g.pVfs, zPath, nOut, zOut);
H A 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);
741 ** Populate buffer zOut with the full canonical pathname corresponding
742 ** to the pathname in zPath. zOut is guaranteed to point to a buffer
749 char *zOut /* Output buffer */
752 return pParent->xFullPathname(pParent, zPath, nOut, zOut);
H A Dos_win.c1987 char *zOut = 0; local
2000 zOut = unicodeToUtf8(zTempWide);
2020 zOut = sqlite3_win32_mbcs_to_utf8(zTemp);
2030 sqlite3_snprintf(nBuf, zBuf, "%s", zOut);
2032 free(zOut);
2385 ** pathname into zOut[]. zOut[] will be at least pVfs->mxPathname
2413 char *zOut; local
2433 zOut = unicodeToUtf8(zTemp);
2450 zOut
[all...]
H A Dtest_osinst.c162 static int vfslogFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut);
167 static int vfslogRandomness(sqlite3_vfs*, int nByte, char *zOut);
535 ** Populate buffer zOut with the full canonical pathname corresponding
536 ** to the pathname in zPath. zOut is guaranteed to point to a buffer
543 char *zOut
545 return REALVFS(pVfs)->xFullPathname(REALVFS(pVfs), zPath, nOut, zOut);
H A Dtest_vfstrace.c75 static int vfstraceRandomness(sqlite3_vfs*, int nByte, char *zOut);
571 ** Populate buffer zOut with the full canonical pathname corresponding
572 ** to the pathname in zPath. zOut is guaranteed to point to a buffer
579 char *zOut
586 rc = pRoot->xFullPathname(pRoot, zPath, nOut, zOut);
588 vfstrace_printf(pInfo, ", out=\"%.*s\"\n", nOut, zOut);
H A Dalter.c132 char *zOut = sqlite3MPrintf(db, "%s%.*s\"%w\"", local
136 zOutput = zOut;
H A Dbackup.c275 u8 *zOut = &zDestData[iOff%nDestPgsz]; local
284 memcpy(zOut, zIn, nCopy);
H A Dtest_vfs.c176 static int tvfsFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut);
183 static int tvfsRandomness(sqlite3_vfs*, int nByte, char *zOut);
656 ** Populate buffer zOut with the full canonical pathname corresponding
657 ** to the pathname in zPath. zOut is guaranteed to point to a buffer
664 char *zOut
666 return sqlite3OsFullPathname(PARENTVFS(pVfs), zPath, nOut, zOut);
H A Dsqlite.h.in883 ** of good-quality randomness into zOut. The return value is
922 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
927 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DAntJarProcessor.java59 protected void zipDir(File dir, ZipOutputStream zOut, String vPath, int mode) argument
63 protected void zipFile(InputStream is, ZipOutputStream zOut, String vPath, argument
74 addParentDirs(struct.name, zOut);
77 zOut, struct.name, struct.time, fromArchive, mode);
81 private void addParentDirs(String file, ZipOutputStream zOut) throws IOException { argument
86 addParentDirs(dir, zOut);
87 super.zipDir((File) null, zOut, dir + "/", ZipFileSet.DEFAULT_DIR_MODE, JAR_MARKER);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSProcessableByteArray.java40 public void write(OutputStream zOut) argument
43 zOut.write(bytes);
H A DCMSAbsentContent.java34 public void write(OutputStream zOut) argument
/external/valgrind/main/none/tests/amd64/
H A Dbug127521-64.c10 ULong* zOut,
47 *zOut = block[5];
63 ULong* zOut,
100 *zOut = block[5];
7 do_cmpxchg8b( ULong* rdxOut, ULong* raxOut, ULong* memHiOut, ULong* memLoOut, ULong* zOut, ULong rdxIn, ULong raxIn, ULong memHiIn, ULong memLoIn, ULong rcxIn, ULong rbxIn ) argument
60 do_cmpxchg16b( ULong* rdxOut, ULong* raxOut, ULong* memHiOut, ULong* memLoOut, ULong* zOut, ULong rdxIn, ULong raxIn, ULong memHiIn, ULong memLoIn, ULong rcxIn, ULong rbxIn ) argument
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfts1_porter.c293 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ argument
299 zOut[i] = c - 'A' + 'a';
302 zOut[i] = c;
308 zOut[j] = zOut[i];
312 zOut[i] = 0;
318 ** Stem the input word zIn[0..nIn-1]. Store the output in zOut.
319 ** zOut is at least big enough to hold nIn bytes. Write the actual
338 ** no chance of overflowing the zOut buffer.
340 static void porter_stemmer(const char *zIn, int nIn, char *zOut, in argument
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_porter.c292 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ argument
298 zOut[i] = c - 'A' + 'a';
301 zOut[i] = c;
307 zOut[j] = zOut[i];
311 zOut[i] = 0;
317 ** Stem the input word zIn[0..nIn-1]. Store the output in zOut.
318 ** zOut is at least big enough to hold nIn bytes. Write the actual
337 ** no chance of overflowing the zOut buffer.
339 static void porter_stemmer(const char *zIn, int nIn, char *zOut, in argument
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_porter.c295 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ argument
301 zOut[i] = c - 'A' + 'a';
304 zOut[i] = c;
310 zOut[j] = zOut[i];
314 zOut[i] = 0;
320 ** Stem the input word zIn[0..nIn-1]. Store the output in zOut.
321 ** zOut is at least big enough to hold nIn bytes. Write the actual
340 ** no chance of overflowing the zOut buffer.
342 static void porter_stemmer(const char *zIn, int nIn, char *zOut, in argument
[all...]
/external/lzma/CPP/7zip/Bundles/Format7zR/
H A Dmakefile67 $O\7zOut.obj \
/external/lzma/CPP/7zip/Bundles/Alone7z/
H A Dmakefile122 $O\7zOut.obj \
/external/chromium_org/third_party/sqlite/src/ext/async/
H A Dsqlite3async.c664 void *zOut,
693 rc = pBase->pMethods->xRead(pBase, zOut, (int)nRead, iOffset);
724 memcpy(&((char *)zOut)[iBeginOut], &pWrite->zBuf[iBeginIn], (size_t)nCopy);
662 asyncRead( sqlite3_file *pFile, void *zOut, int iAmt, sqlite3_int64 iOffset ) argument

Completed in 1039 milliseconds

12