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

  /external/chromium_org/third_party/sqlite/src/src/
utf.c 131 ** During translation, assume that the byte that zTerm points
155 #define READ_UTF8(zIn, zTerm, c) \
159 while( zIn!=zTerm && (*zIn & 0xc0)==0x80 ){ \
172 /* Same as READ_UTF8() above but without the zTerm parameter.
208 unsigned char *zTerm; /* End of input */
239 zTerm = &zIn[pMem->n&~1];
240 while( zIn<zTerm ){
268 /* Set zIn to point at the start of the input buffer and zTerm to point 1
275 zTerm = &zIn[pMem->n];
285 while( zIn<zTerm ){
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3Int.h 324 const char *zTerm;
343 char *zTerm; /* Pointer to term buffer */
344 int nTerm; /* Size of zTerm in bytes */
fts3_write.c 104 char *zTerm; /* Pointer to current term */
105 int nTermAlloc; /* Allocated size of zTerm buffer */
130 char *zTerm; /* Pointer to previous term buffer */
131 int nTerm; /* Number of bytes in zTerm */
133 char *zMalloc; /* Malloc'd space (possibly) used for zTerm */
154 char *zTerm; /* Pointer to previous term buffer */
155 int nTerm; /* Number of bytes in zTerm */
157 char *zMalloc; /* Malloc'd space (possibly) used for zTerm */
932 pReader->zTerm = (char *)fts3HashKey(pElem);
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fulltext.c 716 /* select rowid, doclist from %_term where term = [zTerm] and first = [iFirst]
719 static int term_select(fulltext_vtab *v, const char *zTerm, int nTerm,
727 rc = sqlite3_bind_text(s, 1, zTerm, nTerm, SQLITE_TRANSIENT);
746 /* select max(first) from %_term where term = [zTerm] and first <= [iFirst]
750 static int term_chunk_select(fulltext_vtab *v, const char *zTerm, int nTerm,
756 rc = sqlite3_bind_text(s, 1, zTerm, nTerm, SQLITE_STATIC);
782 values ([zTerm], [iFirst], [doclist]) */
783 static int term_insert(fulltext_vtab *v, const char *zTerm, int nTerm,
789 rc = sqlite3_bind_text(s, 1, zTerm, nTerm, SQLITE_STATIC);
1061 /* Read the posting list for [zTerm]; AND it with the doclist [in] t
    [all...]
  /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 568 milliseconds