Home
last modified time | relevance | path

Searched refs:next_match (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/dev/aic7xxx/aicasm/
H A Daicasm_scan.l506 const char **next_match,
516 const char *next_match;
527 next_match = body_head;
533 while (body_pos > next_match)
540 next_match = match_marg->replacement_text;
541 strp = next_match + strlen(next_match);
542 while (strp > next_match)
573 search_pos = *next_match;
581 && (matches[1].rm_eo + search_pos) > *next_match) {
583 *next_match = match->rm_eo + search_pos;
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.cpp166 const ObjectNameToIndexMap::Entry *next_match = in FindObject() local
168 while (next_match) { in FindObject()
169 if (m_objects[next_match->value].modification_time == in FindObject()
171 return &m_objects[next_match->value]; in FindObject()
172 next_match = m_object_name_to_index_map.FindNextValueForName(next_match); in FindObject()