rm_so             966 lib/pengine/rules.c             if (match_data->nregs >= i && match_data->pmatch[i].rm_so != -1 &&
rm_so             967 lib/pengine/rules.c                 match_data->pmatch[i].rm_eo > match_data->pmatch[i].rm_so) {
rm_so             968 lib/pengine/rules.c                 len += p - last_match_index + (match_data->pmatch[i].rm_eo - match_data->pmatch[i].rm_so);
rm_so             988 lib/pengine/rules.c             if (match_data->nregs >= i && match_data->pmatch[i].rm_so != -1 &&
rm_so             989 lib/pengine/rules.c                 match_data->pmatch[i].rm_eo > match_data->pmatch[i].rm_so) {
rm_so             991 lib/pengine/rules.c                 int match_len = match_data->pmatch[i].rm_eo - match_data->pmatch[i].rm_so;
rm_so             992 lib/pengine/rules.c                 memcpy(p_dst, match_data->string + match_data->pmatch[i].rm_so, match_len);
rm_so            1034 pengine/constraints.c     if (match_data && match_data->re && match_data->re->nregs > 0 && match_data->re->pmatch[0].rm_so != -1) {