HomeSort by relevance Sort by last modified time
    Searched refs:zOut (Results 1 - 25 of 36) sorted by null

1 2

  /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...]
memjournal.c 79 u8 *zOut = zBuf;
103 memcpy(zOut, &pChunk->zChunk[iChunkOffset], nCopy);
104 zOut += nCopy;
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);
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_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_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);
os_win.c     [all...]
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_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);
alter.c 132 char *zOut = sqlite3MPrintf(db, "%s%.*s\"%w\"",
136 zOutput = zOut;
backup.c 275 u8 *zOut = &zDestData[iOff%nDestPgsz];
284 memcpy(zOut, zIn, nCopy);
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...]
sqlite.h.in     [all...]
  /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/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...]
  /external/lzma/CPP/7zip/Bundles/Format7zR/
makefile 67 $O\7zOut.obj \
  /external/lzma/CPP/7zip/Bundles/Alone7z/
makefile 122 $O\7zOut.obj \
  /external/chromium_org/third_party/sqlite/src/ext/async/
sqlite3async.c 664 void *zOut,
693 rc = pBase->pMethods->xRead(pBase, zOut, (int)nRead, iOffset);
724 memcpy(&((char *)zOut)[iBeginOut], &pWrite->zBuf[iBeginIn], (size_t)nCopy);
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.h     [all...]

Completed in 870 milliseconds

1 2