Lines Matching refs:signed
735 qr{char\s+(?:un)?signed},
736 qr{int\s+(?:(?:un)?signed\s+)?short\s},
737 qr{int\s+short(?:\s+(?:un)?signed)},
738 qr{short\s+int(?:\s+(?:un)?signed)},
739 qr{(?:un)?signed\s+int\s+short},
740 qr{short\s+(?:un)?signed},
741 qr{long\s+int\s+(?:un)?signed},
742 qr{int\s+long\s+(?:un)?signed},
743 qr{long\s+(?:un)?signed\s+int},
744 qr{int\s+(?:un)?signed\s+long},
745 qr{int\s+(?:un)?signed},
746 qr{int\s+long\s+long\s+(?:un)?signed},
747 qr{long\s+long\s+int\s+(?:un)?signed},
748 qr{long\s+long\s+(?:un)?signed\s+int},
749 qr{long\s+long\s+(?:un)?signed},
750 qr{long\s+(?:un)?signed},
755 qr{(?:(?:un)?signed\s+)?char},
756 qr{(?:(?:un)?signed\s+)?short\s+int},
757 qr{(?:(?:un)?signed\s+)?short},
758 qr{(?:(?:un)?signed\s+)?int},
759 qr{(?:(?:un)?signed\s+)?long\s+int},
760 qr{(?:(?:un)?signed\s+)?long\s+long\s+int},
761 qr{(?:(?:un)?signed\s+)?long\s+long},
762 qr{(?:(?:un)?signed\s+)?long},
763 qr{(?:un)?signed},
777 long\s+long\s+int\s+(?:un)?signed|
778 long\s+long\s+(?:un)?signed\s+int|
779 long\s+long\s+(?:un)?signed|
780 (?:(?:un)?signed\s+)?long\s+long\s+int|
781 (?:(?:un)?signed\s+)?long\s+long|
782 int\s+long\s+long\s+(?:un)?signed|
783 int\s+(?:(?:un)?signed\s+)?long\s+long|
785 long\s+int\s+(?:un)?signed|
786 long\s+(?:un)?signed\s+int|
787 long\s+(?:un)?signed|
788 (?:(?:un)?signed\s+)?long\s+int|
789 (?:(?:un)?signed\s+)?long|
790 int\s+long\s+(?:un)?signed|
791 int\s+(?:(?:un)?signed\s+)?long|
793 int\s+(?:un)?signed|
794 (?:(?:un)?signed\s+)?int
2967 if ($line =~ /^\s*signed-off-by:\s*(.*)/i) {
3170 } elsif ($rawlines[$linenr] !~ /^signed-off-by:\s*(.*)/i) {
4495 # check for declarations of signed or unsigned without int
4500 if ($type =~ /^(?:(?:$Storage|$Inline|$Attribute)\s+)*((?:un)?signed)((?:\s*\*)*)\s*$/) {
4655 # check for misordered declarations of char/short/int/long with signed/unsigned
4659 "type '$tmp' should be specified in [[un]signed] [short|int|long|long long] order\n" . $herecurr);
4662 # check for unnecessary <signed> int declarations of short/long/long long
4669 $new_type =~ s/\b\s*(?:un)?signed\b\s*/ /;