Lines Matching defs:zOut
350 copy_stemmer(const char *zIn, size_t nIn, char *zOut, size_t *pnOut)
357 zOut[i] = c - 'A' + 'a';
361 zOut[i] = c;
367 zOut[j] = zOut[i];
371 zOut[i] = 0;
377 * Stem the input word zIn[0..nIn-1]. Store the output in zOut.
378 * zOut is at least big enough to hold nIn bytes. Write the actual
397 * no chance of overflowing the zOut buffer.
400 porter_stemmer(const char *zIn, size_t nIn, char *zOut, size_t *pnOut)
409 copy_stemmer(zIn, nIn, zOut, pnOut);
423 copy_stemmer(zIn, nIn, zOut, pnOut);
626 zOut[i] = 0;
628 zOut[--i] = *(z++);
640 do_stem(const char *zIn, size_t nIn, char *zOut, size_t *pnOut)
652 copy_stemmer(zIn, nIn, zOut, pnOut);
654 porter_stemmer(zIn, nIn, zOut, pnOut);