Searched refs:tail (Results 1 – 10 of 10) sorted by relevance
17 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)
16 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)
22 tail -c+$(($pos+8)) "$1" | zcat > $tmp1 2> /dev/null36 tail -c+$pos "$img" | $3 > $tmp2 2> /dev/null
33 tail -c+$pos "$img" | $3 > $tmp 2> /dev/null
222 my $tail = $5; # doesn't include the final newline226 $tail);
78 done | tail -1 )
45 tail -n +$((offset +1)) ${source_file} | grep -v MODULE_IMPORT_NS >> ${source_file}.tmp
15 suspicious_relocs=$(objdump -rj __ex_table ${obj} | tail -n +6 |
665 const char *tail = str; in prefix_underscores_count() local667 while (*tail == '_') in prefix_underscores_count()668 tail++; in prefix_underscores_count()670 return tail - str; in prefix_underscores_count()
1003 char *tail; in expr_parse_string() local1015 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()