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

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSAbsentContent.java34 public void write(OutputStream zOut) argument
H A DCMSProcessableByteArray.java40 public void write(OutputStream zOut) argument
43 zOut.write(bytes);
/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/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/chromium_org/third_party/sqlite/src/src/
H A Dmemjournal.c79 u8 *zOut = zBuf; local
103 memcpy(zOut, &pChunk->zChunk[iChunkOffset], nCopy);
104 zOut += nCopy;
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 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 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_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 Dfunc.c967 unsigned char *zOut; /* The output */ local
971 i64 nOut; /* Maximum size of zOut */
1000 zOut = contextMalloc(context, (i64)nOut);
1001 if( zOut==0 ){
1007 zOut[j++] = zStr[i];
1016 sqlite3_free(zOut);
1019 zOld = zOut;
1020 zOut = sqlite3_realloc(zOut, (int)nOut);
1021 if( zOut
[all...]
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 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...]
/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
/external/dexmaker/lib/
H A Djarjar.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/tonicsystems/ com/tonicsystems/jarjar/ com/tonicsystems/jarjar/AbstractDepHandler ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c1431 ** of good-quality randomness into zOut. The return value is
1470 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1475 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
19723 #define WRITE_UTF8(zOut, c) { \
19725 *zOut++ = (u8)(c&0xFF); \
19728 *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); \
19729 *zOut++ = 0x80 + (u8)(c & 0x3F); \
19732 *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); \
19733 *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \
19734 *zOut
19865 unsigned char *zOut; /* Output buffer */ local
20076 unsigned char *zOut = zIn; local
33106 char *zOut = 0; local
33532 char *zOut; local
55538 u8 *zOut = &zDestData[iOff%nDestPgsz]; local
69215 u8 *zOut = zBuf; local
74626 char *zOut = sqlite3MPrintf(db, "%s%.*s\\"%w\\"", local
82666 unsigned char *zOut; /* The output */ local
118845 copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
118892 porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c1231 ** of good-quality randomness into zOut. The return value is
1270 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1275 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
20731 char *zOut; /* Rendering buffer */ local
20918 zOut = buf;
20921 zOut = zExtra = sqlite3Malloc( nOut );
20922 if( zOut==0 ){
20927 bufpt = &zOut[nOut-1];
20945 length = (int)(&zOut[nOut-1]-bufpt);
20956 length = (int)(&zOut[nOu
21910 unsigned char *zOut; /* Output buffer */ local
22119 unsigned char *zOut = zIn; local
33725 char *zOut = 0; local
37033 char *zOut = sqlite3MallocZero( pVfs->mxPathname+1 ); local
37055 char *zOut = sqlite3MallocZero( pVfs->mxPathname+1 ); local
37101 char *zOut; local
60347 u8 *zOut = &zDestData[iOff%nDestPgsz]; local
76427 u8 *zOut = zBuf; local
82713 char *zOut = sqlite3MPrintf(db, "%s%.*s\\"%w\\"", local
92685 unsigned char *z, *zOut; local
92782 unsigned char *zOut; /* The output */ local
135148 copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
135195 porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
144205 char *zOut; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c1231 ** of good-quality randomness into zOut. The return value is
1270 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1275 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
20731 char *zOut; /* Rendering buffer */ local
20918 zOut = buf;
20921 zOut = zExtra = sqlite3Malloc( nOut );
20922 if( zOut==0 ){
20927 bufpt = &zOut[nOut-1];
20945 length = (int)(&zOut[nOut-1]-bufpt);
20956 length = (int)(&zOut[nOu
21910 unsigned char *zOut; /* Output buffer */ local
22119 unsigned char *zOut = zIn; local
33745 char *zOut = 0; local
37053 char *zOut = sqlite3MallocZero( pVfs->mxPathname+1 ); local
37075 char *zOut = sqlite3MallocZero( pVfs->mxPathname+1 ); local
37121 char *zOut; local
60367 u8 *zOut = &zDestData[iOff%nDestPgsz]; local
76447 u8 *zOut = zBuf; local
82733 char *zOut = sqlite3MPrintf(db, "%s%.*s\\"%w\\"", local
92705 unsigned char *z, *zOut; local
92802 unsigned char *zOut; /* The output */ local
135180 copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
135227 porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
144237 char *zOut; local
[all...]

Completed in 2069 milliseconds