Lines Matching refs:signed

678 	qr{char\s+(?:un)?signed},
679 qr{int\s+(?:(?:un)?signed\s+)?short\s},
680 qr{int\s+short(?:\s+(?:un)?signed)},
681 qr{short\s+int(?:\s+(?:un)?signed)},
682 qr{(?:un)?signed\s+int\s+short},
683 qr{short\s+(?:un)?signed},
684 qr{long\s+int\s+(?:un)?signed},
685 qr{int\s+long\s+(?:un)?signed},
686 qr{long\s+(?:un)?signed\s+int},
687 qr{int\s+(?:un)?signed\s+long},
688 qr{int\s+(?:un)?signed},
689 qr{int\s+long\s+long\s+(?:un)?signed},
690 qr{long\s+long\s+int\s+(?:un)?signed},
691 qr{long\s+long\s+(?:un)?signed\s+int},
692 qr{long\s+long\s+(?:un)?signed},
693 qr{long\s+(?:un)?signed},
698 qr{(?:(?:un)?signed\s+)?char},
699 qr{(?:(?:un)?signed\s+)?short\s+int},
700 qr{(?:(?:un)?signed\s+)?short},
701 qr{(?:(?:un)?signed\s+)?int},
702 qr{(?:(?:un)?signed\s+)?long\s+int},
703 qr{(?:(?:un)?signed\s+)?long\s+long\s+int},
704 qr{(?:(?:un)?signed\s+)?long\s+long},
705 qr{(?:(?:un)?signed\s+)?long},
706 qr{(?:un)?signed},
720 long\s+long\s+int\s+(?:un)?signed|
721 long\s+long\s+(?:un)?signed\s+int|
722 long\s+long\s+(?:un)?signed|
723 (?:(?:un)?signed\s+)?long\s+long\s+int|
724 (?:(?:un)?signed\s+)?long\s+long|
725 int\s+long\s+long\s+(?:un)?signed|
726 int\s+(?:(?:un)?signed\s+)?long\s+long|
728 long\s+int\s+(?:un)?signed|
729 long\s+(?:un)?signed\s+int|
730 long\s+(?:un)?signed|
731 (?:(?:un)?signed\s+)?long\s+int|
732 (?:(?:un)?signed\s+)?long|
733 int\s+long\s+(?:un)?signed|
734 int\s+(?:(?:un)?signed\s+)?long|
736 int\s+(?:un)?signed|
737 (?:(?:un)?signed\s+)?int
2905 if ($line =~ /^\s*signed-off-by:\s*(.*)/i) {
3108 } elsif ($rawlines[$linenr] !~ /^\s*signed-off-by:\s*(.*)/i) {
4343 # check for declarations of signed or unsigned without int
4348 if ($type =~ /^(?:(?:$Storage|$Inline|$Attribute)\s+)*((?:un)?signed)((?:\s*\*)*)\s*$/) {
4502 # check for misordered declarations of char/short/int/long with signed/unsigned
4506 "type '$tmp' should be specified in [[un]signed] [short|int|long|long long] order\n" . $herecurr);
4509 # check for unnecessary <signed> int declarations of short/long/long long
4516 $new_type =~ s/\b\s*(?:un)?signed\b\s*/ /;