Home
last modified time | relevance | path

Searched refs:match_flg (Results 1 – 4 of 4) sorted by relevance

/dports/emulators/mess/mame-mame0226/src/lib/util/
H A Dcorestr.cpp261 std::unique_ptr<bool []> match_flg(std::make_unique<bool []>(longer.length())); in edit_distance()
263 std::fill_n(match_flg.get(), longer.length(), false); in edit_distance()
271 if (!match_flg[j] && (ch == longer[j])) in edit_distance()
274 match_flg[j] = true; in edit_distance()
298 if (match_flg[i]) in edit_distance()
301 match_flg.reset(); in edit_distance()
/dports/emulators/mame/mame-mame0226/src/lib/util/
H A Dcorestr.cpp261 std::unique_ptr<bool []> match_flg(std::make_unique<bool []>(longer.length())); in edit_distance()
263 std::fill_n(match_flg.get(), longer.length(), false); in edit_distance()
271 if (!match_flg[j] && (ch == longer[j])) in edit_distance()
274 match_flg[j] = true; in edit_distance()
298 if (match_flg[i]) in edit_distance()
301 match_flg.reset(); in edit_distance()
/dports/sysutils/busybox/busybox-1.26.2/findutils/
H A Dgrep.c371 int match_flg; in grep_file()
389 match_flg = 0; in grep_file()
398 regexec(&gl->compiled_regex, match_at, 1, &gl->matched_range, match_flg) == 0 in grep_file()
432 match_flg |= REG_NOTBOL; in grep_file()
/dports/devel/radare2/radare2-5.1.1/libr/io/
H A Dio.c22 static st64 on_map_skyline(RIO *io, ut64 vaddr, ut8 *buf, int len, int match_flg, cbOnIterMap op, b… in on_map_skyline() argument
67 if (((map->perm & match_flg) == match_flg || io->p_cache)) { in on_map_skyline()