Searched refs:next_match (Results 1 – 5 of 5) sorted by relevance
/external/rust/crates/libz-sys/src/zlib-ng/ |
D | deflate_medium.c | 166 struct match next_match; in deflate_medium() local 169 memset(&next_match, 0, sizeof(struct match)); in deflate_medium() 187 next_match.match_length = 0; in deflate_medium() 195 if (next_match.match_length > 0) { in deflate_medium() 196 current_match = next_match; in deflate_medium() 197 next_match.match_length = 0; in deflate_medium() 238 next_match.strstart = s->strstart; in deflate_medium() 239 next_match.orgstart = next_match.strstart; in deflate_medium() 249 next_match.match_length = (uint16_t)functable.longest_match(s, hash_head); in deflate_medium() 250 next_match.match_start = s->match_start; in deflate_medium() [all …]
|
/external/rust/crates/regex/src/ |
D | pattern.rs | 9 next_match: Option<(usize, usize)>, field 20 next_match: None, in into_searcher() 33 if let Some((s, e)) = self.next_match { in next() 34 self.next_match = None; in next() 54 self.next_match = Some((s, e)); in next()
|
/external/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/ |
D | ObjectContainerBSDArchive.cpp | 186 const ObjectNameToIndexMap::Entry *next_match = in FindObject() local 188 while (next_match) { in FindObject() 189 if (m_objects[next_match->value].modification_time == in FindObject() 191 return &m_objects[next_match->value]; in FindObject() 192 next_match = m_object_name_to_index_map.FindNextValueForName(next_match); in FindObject()
|
/external/tensorflow/tensorflow/tools/tensorflow_builder/compat_checker/ |
D | compat_checker.py | 268 next_match = match_grp[i + 1] 275 comma_count = next_match.count(",") 279 err_msg += "match = %s)" % str(next_match) 288 min_max = next_match.replace(" ", "").split(",") 301 self.exclude = next_match.replace(" ", "").split(",") 304 self.include = next_match.replace(" ", "").split(",")
|
/external/elfutils/libcpu/ |
D | i386_disasm.c | 385 next_match: in i386_disasm() 435 goto next_match; in i386_disasm()
|