Searched refs:nr (Results 1 – 9 of 9) sorted by relevance
/scripts/ |
A D | syscalltbl.sh | 57 while read nr abi name native compat noreturn; do 59 if [ $nxt -gt $nr ]; then 64 while [ $nxt -lt $nr ]; do 79 echo "__SYSCALL_COMPAT_NORETURN($nr, $native, $compat)" 81 echo "__SYSCALL_NORETURN($nr, $native)" 84 echo "__SYSCALL_WITH_COMPAT($nr, $native, $compat)" 86 echo "__SYSCALL($nr, $native)" 88 echo "__SYSCALL($nr, sys_ni_syscall)" 90 nxt=$((nr + 1))
|
A D | syscallhdr.sh | 44 --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"
|
A D | syscallnr.sh | 67 while read nr abi name native compat ; do 68 max=$nr
|
A D | stackusage | 32 sort -k3,3nr > "${outfile}"
|
A D | checksyscalls.sh | 265 while read nr abi name entry ; do
|
A D | get_maintainer.pl | 1906 foreach my $nr (@wish) { 1907 $nr = lc($nr); 1908 my $sel = substr($nr, 0, 1); 1909 my $str = substr($nr, 1); 1920 } elsif ($nr =~ /^\d+$/ && $nr > 0 && $nr <= $count) { 1921 $selected{$nr - 1} = !$selected{$nr - 1}; 2056 print STDERR "invalid option: '$nr'\n";
|
A D | asn1_compiler.c | 749 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()
|
A D | Makefile.asm-headers | 21 syshdr-args := --emit-nr
|
/scripts/gdb/linux/ |
A D | mm.py | 16 def test_bit(nr, addr): argument 17 if addr.dereference() & (0x1 << nr): 133 def __nr_to_section(self, nr): argument 134 root = self.SECTION_NR_TO_ROOT(nr) 136 return mem_section[root][nr & self.SECTION_ROOT_MASK]
|
Completed in 778 milliseconds