Home
last modified time | relevance | path

Searched refs:to_parse (Results 1 – 3 of 3) sorted by relevance

/openbmc/linux/arch/um/kernel/
H A Dum_arch.c294 char *to_parse = strstr(line, ":"); in parse_cache_line() local
295 if (to_parse) { in parse_cache_line()
296 to_parse++; in parse_cache_line()
297 while (*to_parse != 0 && isspace(*to_parse)) { in parse_cache_line()
298 to_parse++; in parse_cache_line()
300 if (kstrtoul(to_parse, 10, &res) == 0 && is_power_of_2(res)) in parse_cache_line()
/openbmc/openbmc/poky/bitbake/lib/bs4/
H A Dtesting.py40 def assertSoupEquals(self, to_parse, compare_parsed_to=None): argument
42 obj = BeautifulSoup(to_parse, builder=builder)
44 compare_parsed_to = to_parse
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/
H A Dgit.py560 to_parse, shallow_branches = [], []
565 to_parse.append('%s~%d^{}' % (revision, depth - 1))
582 … parsed_depths = runfetchcmd("%s rev-parse %s" % (ud.basecmd, " ".join(to_parse)), d, workdir=dest)