/external/chromium_org/third_party/sqlite/src/src/ |
D | utf.c | 64 #define WRITE_UTF8(zOut, c) { \ argument 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 …]
|
D | test_func.c | 336 static void testHexToBin(const char *zIn, char *zOut){ in testHexToBin() argument 338 *(zOut++) = (testHexChar(zIn[0])<<4) + testHexChar(zIn[1]); in testHexToBin() 357 char *zOut; in testHexToUtf16be() local 361 zOut = sqlite3_malloc( n/2 ); in testHexToUtf16be() 362 if( zOut==0 ){ in testHexToUtf16be() 365 testHexToBin(zIn, zOut); in testHexToUtf16be() 366 sqlite3_result_text16be(pCtx, zOut, n/2, sqlite3_free); in testHexToUtf16be() 384 char *zOut; in testHexToUtf8() local 388 zOut = sqlite3_malloc( n/2 ); in testHexToUtf8() 389 if( zOut==0 ){ in testHexToUtf8() [all …]
|
D | memjournal.c | 79 u8 *zOut = zBuf; in memjrnlRead() local 103 memcpy(zOut, &pChunk->zChunk[iChunkOffset], nCopy); in memjrnlRead() 104 zOut += nCopy; in memjrnlRead()
|
D | 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); 314 char *zOut in devsymFullPathname() argument 316 return sqlite3OsFullPathname(g.pVfs, zPath, nOut, zOut); in devsymFullPathname()
|
D | func.c | 967 unsigned char *zOut; /* The output */ in replaceFunc() local 1000 zOut = contextMalloc(context, (i64)nOut); in replaceFunc() 1001 if( zOut==0 ){ in replaceFunc() 1007 zOut[j++] = zStr[i]; in replaceFunc() 1016 sqlite3_free(zOut); in replaceFunc() 1019 zOld = zOut; in replaceFunc() 1020 zOut = sqlite3_realloc(zOut, (int)nOut); in replaceFunc() 1021 if( zOut==0 ){ in replaceFunc() 1026 memcpy(&zOut[j], zRep, nRep); in replaceFunc() 1032 memcpy(&zOut[j], &zStr[i], nStr-i); in replaceFunc() [all …]
|
D | test_server.c | 229 const char *zOut; /* Tail of the SQL statement */ member 354 if( pzTail ) *pzTail = msg.zOut; in sqlite3_client_prepare() 429 &pMsg->pStmt, &pMsg->zOut); in sqlite3_server()
|
D | test_malloc.c | 316 char zOut[100]; in test_malloc() local 323 pointerToText(p, zOut); in test_malloc() 324 Tcl_AppendResult(interp, zOut, NULL); in test_malloc() 341 char zOut[100]; in test_realloc() local 352 pointerToText(p, zOut); in test_realloc() 353 Tcl_AppendResult(interp, zOut, NULL); in test_realloc() 402 char *zOut; in test_memset() local 427 zOut = p; in test_memset() 429 zOut[i] = zBin[i%n]; in test_memset()
|
D | os_win.c | 1987 char *zOut = 0; in getLastErrorMsg() local 2000 zOut = unicodeToUtf8(zTempWide); in getLastErrorMsg() 2020 zOut = sqlite3_win32_mbcs_to_utf8(zTemp); in getLastErrorMsg() 2030 sqlite3_snprintf(nBuf, zBuf, "%s", zOut); in getLastErrorMsg() 2032 free(zOut); in getLastErrorMsg() 2413 char *zOut; in winFullPathname() local 2433 zOut = unicodeToUtf8(zTemp); in winFullPathname() 2450 zOut = sqlite3_win32_mbcs_to_utf8(zTemp); in winFullPathname() 2454 if( zOut ){ in winFullPathname() 2455 sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zOut); in winFullPathname() [all …]
|
D | 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); 761 char *zOut in jtFullPathname() argument 763 return sqlite3OsFullPathname(g.pVfs, zPath, nOut, zOut); in jtFullPathname()
|
D | 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); 749 char *zOut /* Output buffer */ in fsFullPathname() argument 752 return pParent->xFullPathname(pParent, zPath, nOut, zOut); in fsFullPathname()
|
D | test_vfstrace.c | 75 static int vfstraceRandomness(sqlite3_vfs*, int nByte, char *zOut); 579 char *zOut in vfstraceFullPathname() argument 586 rc = pRoot->xFullPathname(pRoot, zPath, nOut, zOut); in vfstraceFullPathname() 588 vfstrace_printf(pInfo, ", out=\"%.*s\"\n", nOut, zOut); in vfstraceFullPathname()
|
D | 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); 543 char *zOut in vfslogFullPathname() argument 545 return REALVFS(pVfs)->xFullPathname(REALVFS(pVfs), zPath, nOut, zOut); in vfslogFullPathname()
|
D | backup.c | 275 u8 *zOut = &zDestData[iOff%nDestPgsz]; in backupOnePage() local 284 memcpy(zOut, zIn, nCopy); in backupOnePage()
|
D | 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); 664 char *zOut in tvfsFullPathname() argument 666 return sqlite3OsFullPathname(PARENTVFS(pVfs), zPath, nOut, zOut); in tvfsFullPathname()
|
D | alter.c | 132 char *zOut = sqlite3MPrintf(db, "%s%.*s\"%w\"", in renameParentFunc() local 136 zOutput = zOut; in renameParentFunc()
|
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
D | fts2_porter.c | 292 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ in copy_stemmer() argument 298 zOut[i] = c - 'A' + 'a'; in copy_stemmer() 301 zOut[i] = c; in copy_stemmer() 307 zOut[j] = zOut[i]; in copy_stemmer() 311 zOut[i] = 0; in copy_stemmer() 339 static void porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ in porter_stemmer() argument 346 copy_stemmer(zIn, nIn, zOut, pnOut); in porter_stemmer() 358 copy_stemmer(zIn, nIn, zOut, pnOut); in porter_stemmer() 550 zOut[i] = 0; in porter_stemmer() 552 zOut[--i] = *(z++); in porter_stemmer()
|
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
D | fts3_porter.c | 295 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ in copy_stemmer() argument 301 zOut[i] = c - 'A' + 'a'; in copy_stemmer() 304 zOut[i] = c; in copy_stemmer() 310 zOut[j] = zOut[i]; in copy_stemmer() 314 zOut[i] = 0; in copy_stemmer() 342 static void porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ in porter_stemmer() argument 349 copy_stemmer(zIn, nIn, zOut, pnOut); in porter_stemmer() 361 copy_stemmer(zIn, nIn, zOut, pnOut); in porter_stemmer() 553 zOut[i] = 0; in porter_stemmer() 555 zOut[--i] = *(z++); in porter_stemmer()
|
/external/chromium_org/third_party/sqlite/src/ext/fts1/ |
D | fts1_porter.c | 293 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ in copy_stemmer() argument 299 zOut[i] = c - 'A' + 'a'; in copy_stemmer() 302 zOut[i] = c; in copy_stemmer() 308 zOut[j] = zOut[i]; in copy_stemmer() 312 zOut[i] = 0; in copy_stemmer() 340 static void porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ in porter_stemmer() argument 347 copy_stemmer(zIn, nIn, zOut, pnOut); in porter_stemmer() 359 copy_stemmer(zIn, nIn, zOut, pnOut); in porter_stemmer() 551 zOut[i] = 0; in porter_stemmer() 553 zOut[--i] = *(z++); in porter_stemmer()
|
/external/valgrind/main/none/tests/amd64/ |
D | bug127521-64.c | 10 ULong* zOut, in do_cmpxchg8b() argument 47 *zOut = block[5]; in do_cmpxchg8b() 63 ULong* zOut, in do_cmpxchg16b() argument 100 *zOut = block[5]; in do_cmpxchg16b()
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
D | CMSProcessableByteArray.java | 40 public void write(OutputStream zOut) in write() argument 43 zOut.write(bytes); in write()
|
D | CMSAbsentContent.java | 34 public void write(OutputStream zOut) in write() argument
|
/external/lzma/CPP/7zip/Bundles/Format7zR/ |
D | makefile | 67 $O\7zOut.obj \
|
/external/lzma/CPP/7zip/Bundles/Alone7z/ |
D | makefile | 122 $O\7zOut.obj \
|
/external/chromium_org/third_party/sqlite/src/ext/async/ |
D | sqlite3async.c | 664 void *zOut, in asyncRead() argument 693 rc = pBase->pMethods->xRead(pBase, zOut, (int)nRead, iOffset); in asyncRead() 724 memcpy(&((char *)zOut)[iBeginOut], &pWrite->zBuf[iBeginIn], (size_t)nCopy); in asyncRead()
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
D | sqlite3.h | 927 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut); 932 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
|