HomeSort by relevance Sort by last modified time
    Searched full:nappend (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_snippet.c 530 ** If nAppend is negative, then the length of the string zAppend is
536 int nAppend /* Size of zAppend in bytes (or -1) */
538 if( nAppend<0 ){
539 nAppend = (int)strlen(zAppend);
546 if( pStr->n+nAppend+1>=pStr->nAlloc ){
547 int nAlloc = pStr->nAlloc+nAppend+100;
557 memcpy(&pStr->z[pStr->n], zAppend, nAppend);
558 pStr->n += nAppend;
    [all...]
  /bionic/libc/bionic/
fts.c 251 #define NAPPEND(p) \
389 name: t = sp->fts_path + NAPPEND(p->fts_parent);
632 len = NAPPEND(cur);
  /external/chromium_org/third_party/sqlite/src/test/
corrupt2.test 352 set nAppend [expr 1024*207 - [file size corrupt.db]]
355 puts -nonewline $fd [string repeat x $nAppend]
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1.c 78 static void nappend(StringBuffer *sb, const char *zFrom, int nFrom){ function
92 nappend(sb, zFrom, strlen(zFrom));
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
shell.c 887 int nAppend = strlen30(zAppend);
890 len = nAppend+nIn+1;
893 for(i=0; i<nAppend; i++){
906 for(i=0; i<nAppend; i++){
914 memcpy(&zIn[nIn], zAppend, nAppend);
    [all...]
  /external/sqlite/dist/orig/
shell.c 974 int nAppend = strlen30(zAppend);
977 len = nAppend+nIn+1;
980 for(i=0; i<nAppend; i++){
993 for(i=0; i<nAppend; i++){
1001 memcpy(&zIn[nIn], zAppend, nAppend);
    [all...]
  /external/sqlite/dist/
shell.c 979 int nAppend = strlen30(zAppend);
982 len = nAppend+nIn+1;
985 for(i=0; i<nAppend; i++){
998 for(i=0; i<nAppend; i++){
1006 memcpy(&zIn[nIn], zAppend, nAppend);
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2.c 576 static void nappend(StringBuffer *sb, const char *zFrom, int nFrom){ function
584 nappend(sb, zFrom, strlen(zFrom));
    [all...]

Completed in 529 milliseconds