Lines Matching refs:match
74 Dwarf_Line **match = *nsrcs == 0 ? NULL : *srcsp;
95 no match is performed. */
111 /* Match the name with the name the user provided. */
121 /* See whether line and possibly column match. */
125 /* Cannot match. */
128 /* Determine whether this is the best match so far. */
131 if (match[inner]->files == line->files
132 && match[inner]->file == line->file)
135 && (match[inner]->line != line->line
136 || match[inner]->line != lineno
138 && (match[inner]->column != line->column
139 || match[inner]->column != column))))
142 match for the line number, use it. */
143 if (match[inner]->line >= line->line
144 && (match[inner]->line != line->line
145 || match[inner]->column >= line->column))
147 match[inner] = line;
157 Dwarf_Line **newp = realloc (match,
162 free (match);
166 match = newp;
169 match[cur_match++] = line;
183 assert (*nsrcs == 0 || *srcsp == match);
186 *srcsp = match;