HomeSort by relevance Sort by last modified time
    Searched defs:zOut (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
memjournal.c 79 u8 *zOut = zBuf;
103 memcpy(zOut, &pChunk->zChunk[iChunkOffset], nCopy);
104 zOut += nCopy;
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...]
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_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_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);
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...]
os_win.c     [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-archiver/2.2/
plexus-archiver-2.2.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-archiver/1.0/
plexus-archiver-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-archiver/2.2/
plexus-archiver-2.2.jar 
  /external/dexmaker/lib/
jarjar.jar 
  /frameworks/testing/espresso/libs/
jarjar-1.4.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
ant.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.2/
ant-1.8.2.jar 
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 1216 milliseconds