Lines Matching +full:2 +full:x32 +full:- +full:bit
2 # SPDX-License-Identifier: GPL-2.0
5 out="$2"
9 nr="$2"
25 nr="$2"
30 if [ "$abi" = "64" -a -n "$compat" ]; then
31 echo "a compat entry for a 64-bit syscall makes no sense" >&2
36 if [ "$abi" = "64" -a "${entry}" != "${entry#__x64_sys}" ]; then
40 if [ -z "$compat" ]; then
41 if [ -n "$entry" -a -z "$umlentry" ]; then
43 elif [ -n "$umlentry" ]; then # implies -n "$entry"
52 if [ -n "$entry" ]; then
61 grep '^[0-9]' "$in" | sort -n | (
63 abi=`echo "$abi" | tr '[a-z]' '[A-Z]'`
64 if [ "$abi" = "COMMON" -o "$abi" = "64" ]; then
65 # COMMON is the same as 64, except that we don't expect X32
69 elif [ "$abi" = "X32" ]; then
70 # X32 is equivalent to 64 on an X32-compatible kernel.
77 echo "Unknown abi $abi" >&2