HomeSort by: relevance | last modified time | path
    Searched refs:zIn (Results 1 - 6 of 6) sorted by relevancy

  /src/usr.sbin/makemandb/
custom_apropos_tokenizer.c 350 copy_stemmer(const char *zIn, size_t nIn, char *zOut, size_t *pnOut)
355 char c = zIn[i];
377 * Stem the input word zIn[0..nIn-1]. Store the output in zOut.
400 porter_stemmer(const char *zIn, size_t nIn, char *zOut, size_t *pnOut)
409 copy_stemmer(zIn, nIn, zOut, pnOut);
414 char c = zIn[i];
423 copy_stemmer(zIn, nIn, zOut, pnOut);
640 do_stem(const char *zIn, size_t nIn, char *zOut, size_t *pnOut)
648 dupword[i] = tolower((unsigned char) zIn[i]);
652 copy_stemmer(zIn, nIn, zOut, pnOut)
    [all...]
  /src/external/public-domain/sqlite/dist/
shell.c 1525 size_t sqlite3_qrf_wcswidth(const char *zIn){
1526 const unsigned char *z = (const unsigned char*)zIn;
1551 ** in the (possibly) multi-line input string zIn[0..nByte].
1552 ** zIn[] is not necessarily zero-terminated. Take
1560 static int qrfDisplayWidth(const char *zIn, sqlite3_int64 nByte, int *pnNL){
1566 if( zIn==0 ) zIn = "";
1567 z = (const unsigned char*)zIn;
1622 unsigned char *zIn; /* Text to be escaped */
1627 zIn = (unsigned char*)sqlite3_str_value(pStr)
    [all...]
sqlite3ext.h 306 void (*str_append)(sqlite3_str*, const char *zIn, int N);
307 void (*str_appendall)(sqlite3_str*, const char *zIn);
sqlite3.c 9200 SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N);
9201 SQLITE_API void sqlite3_str_appendall(sqlite3_str*, const char *zIn);
21636 ** Assuming zIn points to the first byte of a UTF-8 character,
21637 ** advance zIn to point to the first byte of the next UTF-8 character.
21639 #define SQLITE_SKIP_UTF8(zIn) { \
21640 if( (*(zIn++))>=0xc0 ){ \
21641 while( (*zIn & 0xc0)==0x80 ){ zIn++; } \
    [all...]
sqlite3.h 8879 SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N);
8880 SQLITE_API void sqlite3_str_appendall(sqlite3_str*, const char *zIn);
  /src/external/public-domain/sqlite/dist/tea/generic/
tclsqlite3.c 1384 ** first SQL statement in the buffer pointed to by parameter zIn. If
1391 ** buffer zIn, or to the '\0' byte at the end of zIn if there is no
1399 char const *zIn, /* SQL to compile */
1403 const char *zSql = zIn; /* Pointer to first SQL statement in zIn */

Completed in 217 milliseconds