Lines Matching defs:stem
55 int stem_id; /* indicates which stem-compression item */
61 /* A regular expression stem */
62 struct stem {
90 struct stem *stem_arr;
244 /* Return the length of the text that can be considered the stem, returns 0
245 * if there is no identifiable stem */
284 struct stem *tmp_arr;
302 /* find the stem of a file spec, returns the index into stem_arr for a new
303 * or existing stem, (or -1 if there is no possible stem - IE for a file in
309 char *stem;
320 stem = strndup(buf, stem_len);
321 if (!stem)
324 r = store_stem(data, stem, stem_len);
326 free(stem);