Home
last modified time | relevance | path

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

/scripts/
Dgcc-version.sh17 MAJOR=$(echo __GNUC__ | $compiler -E -x c - | tail -n 1)
18 MINOR=$(echo __GNUC_MINOR__ | $compiler -E -x c - | tail -n 1)
19 PATCHLEVEL=$(echo __GNUC_PATCHLEVEL__ | $compiler -E -x c - | tail -n 1)
Dclang-version.sh16 MAJOR=$(echo __clang_major__ | $compiler -E -x c - | tail -n 1)
17 MINOR=$(echo __clang_minor__ | $compiler -E -x c - | tail -n 1)
18 PATCHLEVEL=$(echo __clang_patchlevel__ | $compiler -E -x c - | tail -n 1)
Dextract-ikconfig22 tail -c+$(($pos+8)) "$1" | zcat > $tmp1 2> /dev/null
36 tail -c+$pos "$img" | $3 > $tmp2 2> /dev/null
Dextract-vmlinux33 tail -c+$pos "$img" | $3 > $tmp 2> /dev/null
Dcleanpatch222 my $tail = $5; # doesn't include the final newline
226 $tail);
Dadjust_autoksyms.sh78 done | tail -1 )
Dnsdeps45 tail -n +$((offset +1)) ${source_file} | grep -v MODULE_IMPORT_NS >> ${source_file}.tmp
Dcheck_extable.sh15 suspicious_relocs=$(objdump -rj __ex_table ${obj} | tail -n +6 |
Dkallsyms.c665 const char *tail = str; in prefix_underscores_count() local
667 while (*tail == '_') in prefix_underscores_count()
668 tail++; in prefix_underscores_count()
670 return tail - str; in prefix_underscores_count()
/scripts/kconfig/
Dexpr.c1003 char *tail; in expr_parse_string() local
1015 val->s = strtoll(str, &tail, 10); in expr_parse_string()
1019 val->u = strtoull(str, &tail, 16); in expr_parse_string()
1023 val->s = strtoll(str, &tail, 0); in expr_parse_string()
1027 return !errno && !*tail && tail > str && isxdigit(tail[-1]) in expr_parse_string()