HomeSort by relevance Sort by last modified time
    Searched full:zout (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/valgrind/main/none/tests/x86/
cmpxchg8b.c 13 UInt zout; variable
36 "\tmovl %eax," VG_SYM(zout) "\n"
49 zout = 0x55555555;
53 eax, ebx, ecx, edx, zout & 0xFFFF, m64 );
57 zout = 0x55555555;
62 eax, ebx, ecx, edx, zout & 0xFFFF, m64 );
66 zout = 0x55555555;
71 eax, ebx, ecx, edx, zout & 0xFFFF, m64 );
75 zout = 0x55555555;
79 eax, ebx, ecx, edx, zout & 0xFFFF, m64 )
    [all...]
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
AntJarProcessor.java 59 protected void zipDir(File dir, ZipOutputStream zOut, String vPath, int mode)
63 protected void zipFile(InputStream is, ZipOutputStream zOut, String vPath,
74 addParentDirs(struct.name, zOut);
77 zOut, struct.name, struct.time, fromArchive, mode);
81 private void addParentDirs(String file, ZipOutputStream zOut) throws IOException {
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/
CMSProcessableByteArray.java 40 public void write(OutputStream zOut)
43 zOut.write(bytes);
CMSAbsentContent.java 34 public void write(OutputStream zOut)
  /external/chromium_org/third_party/sqlite/src/src/
utf.c 64 #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++ = 0x80 + (u8)((c>>6) & 0x3F);
    [all...]
test_func.c 336 static void testHexToBin(const char *zIn, char *zOut){
338 *(zOut++) = (testHexChar(zIn[0])<<4) + testHexChar(zIn[1]);
357 char *zOut;
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;
388 zOut = sqlite3_malloc( n/2 );
389 if( zOut==0 )
    [all...]
test_devsym.c 64 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);
memjournal.c 79 u8 *zOut = zBuf;
103 memcpy(zOut, &pChunk->zChunk[iChunkOffset], nCopy);
104 zOut += nCopy;
func.c 967 unsigned char *zOut; /* The output */
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==0 )
    [all...]
test_malloc.c 316 char zOut[100];
323 pointerToText(p, zOut);
324 Tcl_AppendResult(interp, zOut, NULL);
341 char zOut[100];
352 pointerToText(p, zOut);
353 Tcl_AppendResult(interp, zOut, NULL);
402 char *zOut;
427 zOut = p;
429 zOut[i] = zBin[i%n];
    [all...]
test_server.c 229 const char *zOut; /* Tail of the SQL statement */
240 #define MSG_Prepare 2 /* sqlite3_prepare(pDb, zIn, nByte, &pStmt, &zOut) */
354 if( pzTail ) *pzTail = msg.zOut;
429 &pMsg->pStmt, &pMsg->zOut);
test_journal.c 156 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);
test_onefile.c 166 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);
test_vfstrace.c 75 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);
test_osinst.c 162 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);
    [all...]
test_vfs.c 176 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);
    [all...]
  /external/openssl/crypto/comp/
c_zlib.c 439 z_stream zout; /* Output compression context */ member in struct:__anon32800
498 ctx->zout.zalloc = Z_NULL;
499 ctx->zout.zfree = Z_NULL;
500 ctx->zout.next_in = NULL;
501 ctx->zout.avail_in = 0;
502 ctx->zout.next_out = NULL;
503 ctx->zout.avail_out = 0;
526 deflateEnd(&ctx->zout);
601 z_stream *zout; local
605 zout = &ctx->zout
669 z_stream *zout; local
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zUpdate.h 8 #include "7zOut.h"
7zOut.h 1 // 7zOut.h
  /external/valgrind/main/none/tests/amd64/
bug127521-64.c 10 ULong* zOut,
47 *zOut = block[5];
63 ULong* zOut,
100 *zOut = block[5];
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1_porter.c 293 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){
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, int *pnOut)
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_porter.c 292 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){
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, int *pnOut)
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_porter.c 295 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){
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, int *pnOut)
    [all...]
  /build/tools/zipalign/
ZipAlign.cpp 110 ZipFile zin, zout; local
131 if (zout.open(outFileName,
139 int result = copyAndAlign(&zin, &zout, alignment, zopfli);
  /external/lzma/CPP/7zip/Bundles/Alone7z/
makefile 122 $O\7zOut.obj \

Completed in 680 milliseconds

1 2 3