Home | History | Annotate | Download | only in src

Lines Matching defs:stem

40 	int stem_id;		/* indicates which stem-compression item */
46 /* A regular expression stem */
47 struct stem {
75 struct stem *stem_arr;
225 /* Return the length of the text that can be considered the stem, returns 0
226 * if there is no identifiable stem */
265 struct stem *tmp_arr;
282 /* find the stem of a file spec, returns the index into stem_arr for a new
283 * or existing stem, (or -1 if there is no possible stem - IE for a file in
289 char *stem;
299 stem = strndup(buf, stem_len);
300 if (!stem)
303 return store_stem(data, stem, stem_len);
328 struct stem *stem_arr = data->stem_arr;
335 /* Skip the fixed stem. */
415 /* Stem of regex does not match requested prefix, discard. */