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

1 2

  /external/chromium_org/third_party/sqlite/src/src/
utf.c 108 #define READ_UTF16LE(zIn, TERM, c){ \
109 c = (*zIn++); \
110 c += ((*zIn++)<<8); \
112 int c2 = (*zIn++); \
113 c2 += ((*zIn++)<<8); \
118 #define READ_UTF16BE(zIn, TERM, c){ \
119 c = ((*zIn++)<<8); \
120 c += (*zIn++); \
122 int c2 = ((*zIn++)<<8); \
123 c2 += (*zIn++);
    [all...]
test_func.c 336 static void testHexToBin(const char *zIn, char *zOut){
337 while( zIn[0] && zIn[1] ){
338 *(zOut++) = (testHexChar(zIn[0])<<4) + testHexChar(zIn[1]);
339 zIn += 2;
356 const char *zIn;
360 zIn = (const char*)sqlite3_value_text(argv[0]);
365 testHexToBin(zIn, zOut);
383 const char *zIn;
    [all...]
test_hexio.c 47 ** Convert hex to binary. The input zIn[] contains N bytes of
52 int sqlite3TestHexToBin(const unsigned char *zIn, int N, unsigned char *aOut){
76 c = aMap[zIn[i]];
156 const unsigned char *zIn;
166 zIn = (const unsigned char *)Tcl_GetStringFromObj(objv[3], &nIn);
171 nOut = sqlite3TestHexToBin(zIn, nIn, aOut);
203 const unsigned char *zIn;
211 zIn = (const unsigned char *)Tcl_GetStringFromObj(objv[1], &nIn);
216 nOut = sqlite3TestHexToBin(zIn, nIn, aOut);
test_server.c 227 const char *zIn; /* Input filename or SQL statement */
228 int nByte; /* Size of the zIn parameter for prepare() */
239 #define MSG_Open 1 /* sqlite3_open(zIn, &pDb) */
240 #define MSG_Prepare 2 /* sqlite3_prepare(pDb, zIn, nByte, &pStmt, &zOut) */
335 msg.zIn = zDatabaseName;
350 msg.zIn = zSql;
424 pMsg->errCode = sqlite3_open(pMsg->zIn, &pMsg->pDb);
428 pMsg->errCode = sqlite3_prepare(pMsg->pDb, pMsg->zIn, pMsg->nByte,
backup.c 273 const u8 *zIn = &zSrcData[iOff%nSrcPgsz];
284 memcpy(zOut, zIn, nCopy);
sqliteInt.h     [all...]
  /external/lzma/C/Util/7z/
makefile 14 $O\7zIn.obj \
  /external/lzma/C/Util/SfxSetup/
makefile 13 $O\7zIn.obj \
  /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){
297 int c = zIn[i];
318 ** Stem the input word zIn[0..nIn-1]. Store the output in zOut.
340 static void porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){
347 copy_stemmer(zIn, nIn, zOut, pnOut);
351 c = zIn[i];
359 copy_stemmer(zIn, nIn, zOut, pnOut);
  /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){
296 int c = zIn[i];
317 ** Stem the input word zIn[0..nIn-1]. Store the output in zOut.
339 static void porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){
346 copy_stemmer(zIn, nIn, zOut, pnOut);
350 c = zIn[i];
358 copy_stemmer(zIn, nIn, zOut, pnOut);
  /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){
299 char c = zIn[i];
320 ** Stem the input word zIn[0..nIn-1]. Store the output in zOut.
342 static void porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){
349 copy_stemmer(zIn, nIn, zOut, pnOut);
353 char c = zIn[i];
361 copy_stemmer(zIn, nIn, zOut, pnOut);
fts3_expr.c 550 const char *zIn = z;
557 rc = getNextNode(pParse, zIn, nIn, &p, &nByte);
644 zIn += nByte;
  /external/lzma/CPP/7zip/Bundles/Format7zExtractR/
makefile 59 $O\7zIn.obj \
  /external/lzma/CPP/7zip/Bundles/Format7zR/
makefile 66 $O\7zIn.obj \
  /external/chromium_org/third_party/lzma_sdk/
lzma_sdk.target.darwin-arm64.mk 32 third_party/lzma_sdk/7zIn.c \
lzma_sdk.target.darwin-mips.mk 32 third_party/lzma_sdk/7zIn.c \
lzma_sdk.target.darwin-x86.mk 32 third_party/lzma_sdk/7zIn.c \
lzma_sdk.target.darwin-x86_64.mk 32 third_party/lzma_sdk/7zIn.c \
lzma_sdk.target.linux-arm64.mk 32 third_party/lzma_sdk/7zIn.c \
lzma_sdk.target.linux-mips.mk 32 third_party/lzma_sdk/7zIn.c \
lzma_sdk.target.linux-x86.mk 32 third_party/lzma_sdk/7zIn.c \
lzma_sdk.target.linux-x86_64.mk 32 third_party/lzma_sdk/7zIn.c \
lzma_sdk.target.darwin-arm.mk 32 third_party/lzma_sdk/7zIn.c \
lzma_sdk.target.linux-arm.mk 32 third_party/lzma_sdk/7zIn.c \
  /external/lzma/CPP/7zip/Bundles/Alone7z/
makefile 121 $O\7zIn.obj \

Completed in 351 milliseconds

1 2