Home
last modified time | relevance | path

Searched refs:nr (Results 1 – 7 of 7) sorted by relevance

/scripts/
Dsyscalltbl.sh57 while read nr abi name native compat ; do
59 if [ $nxt -gt $nr ]; then
64 while [ $nxt -lt $nr ]; do
70 echo "__SYSCALL_WITH_COMPAT($nr, $native, $compat)"
72 echo "__SYSCALL($nr, $native)"
74 echo "__SYSCALL($nr, sys_ni_syscall)"
76 nxt=$((nr + 1))
Dsyscallhdr.sh44 --emit-nr)
78 while read nr abi name native compat ; do
80 max=$nr
83 nr="($offset + $nr)"
86 echo "#define __NR_$prefix$name $nr"
Dsyscallnr.sh67 while read nr abi name native compat ; do
68 max=$nr
Dstackusage32 sort -k3,3nr > "${outfile}"
Dchecksyscalls.sh263 while read nr abi name entry ; do
Dget_maintainer.pl1874 foreach my $nr (@wish) {
1875 $nr = lc($nr);
1876 my $sel = substr($nr, 0, 1);
1877 my $str = substr($nr, 1);
1887 } elsif ($nr =~ /^\d+$/ && $nr > 0 && $nr <= $count) {
1888 $selected{$nr - 1} = !$selected{$nr - 1};
2023 print STDERR "invalid option: '$nr'\n";
Dasn1_compiler.c749 unsigned nr, t, n; in build_type_list() local
751 nr = 0; in build_type_list()
755 nr++; in build_type_list()
757 if (nr == 0) { in build_type_list()
762 nr_types = nr; in build_type_list()
763 types = type_list = calloc(nr + 1, sizeof(type_list[0])); in build_type_list()
768 type_index = calloc(nr, sizeof(type_index[0])); in build_type_list()
787 qsort(type_index, nr, sizeof(type_index[0]), type_index_compare); in build_type_list()