Home
last modified time | relevance | path

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

/scripts/
A Dclang-version.sh20 MAJOR=$(echo __clang_major__ | $compiler -E -x c - | tail -n 1)
21 MINOR=$(echo __clang_minor__ | $compiler -E -x c - | tail -n 1)
22 PATCHLEVEL=$(echo __clang_patchlevel__ | $compiler -E -x c - | tail -n 1)
A Dgcc-version.sh26 MAJOR=$(echo __GNUC__ | $compiler -E -x c - | tail -n 1)
27 MINOR=$(echo __GNUC_MINOR__ | $compiler -E -x c - | tail -n 1)
29 PATCHLEVEL=$(echo __GNUC_PATCHLEVEL__ | $compiler -E -x c - | tail -n 1)
A Dcleanpatch220 my $tail = $5; # doesn't include the final newline
224 $tail);
/scripts/kconfig/
A Dexpr.c995 char *tail; in expr_parse_string() local
1007 val->s = strtoll(str, &tail, 10); in expr_parse_string()
1011 val->u = strtoull(str, &tail, 16); in expr_parse_string()
1016 val->s = strtoll(str, &tail, 0); in expr_parse_string()
1022 return !errno && !*tail && tail > str && isxdigit(tail[-1]) in expr_parse_string()

Completed in 8 milliseconds