Lines Matching full:off

95   --no-signoff               do not check for 'Signed-off-by' line
126 --debug KEY=[0|1] turn on/off debugging of KEY, where KEY is one of
128 is all off)
622 Signed-off-by:|
721 'Signed-off-by:', 'Co-developed-by:', 'Acked-by:', 'Tested-by:',
1584 my $off = 0;
1590 for ($off = 1; $off < length($line); $off++) {
1591 $c = substr($line, $off, 1);
1595 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
1598 substr($res, $off, 2, "$;$;");
1599 $off++;
1602 if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
1604 substr($res, $off, 2, "$;$;");
1605 $off++;
1608 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
1611 substr($res, $off, 2, $sanitise_quote);
1612 $off++;
1619 substr($res, $off, 2, 'XX');
1620 $off++;
1628 substr($res, $off, 1, $c);
1636 if ($off != 0 && $sanitise_quote eq '*/' && $c ne "\t") {
1637 substr($res, $off, 1, $;);
1638 } elsif ($off != 0 && $sanitise_quote eq '//' && $c ne "\t") {
1639 substr($res, $off, 1, $;);
1640 } elsif ($off != 0 && $sanitise_quote && $c ne "\t") {
1641 substr($res, $off, 1, 'X');
1643 substr($res, $off, 1, $c);
1679 my ($linenr, $remain, $off) = @_;
1682 my $soff = $off;
1683 my $coff = $off - 1;
1700 # If we are about to drop off the end, pull in more
1702 if ($off >= $len) {
1714 #warn "CSB: blk<$blk> off<$off> len<$len>\n";
1715 if ($off >= $len) {
1718 if ($level == 0 && substr($blk, $off) =~ /^.\s*#\s*define/) {
1724 $c = substr($blk, $off, 1);
1725 $remainder = substr($blk, $off);
1749 $coff = $off + length($1) - 1;
1764 $coff = $off;
1778 if (substr($blk, $off + 1, 1) eq ';') {
1779 $off++;
1788 $off++;
1791 $off++;
1794 if ($off == $len) {
1800 my $statement = substr($blk, $soff, $off - $soff + 1);
1806 #print "coff<$coff> soff<$off> loff<$loff>\n";
1809 $line, $remain + 1, $off - $loff + 1, $level);
1856 my ($linenr, $remain, $off) = @_;
1862 ($statement, $condition, $linenr, $remain, $off, $level) =
1863 ctx_statement_block($linenr, $remain, $off);
1873 ($statement, $condition, $linenr, $remain, $off, $level) =
1874 ctx_statement_block($linenr, $remain, $off);
1885 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
1911 ##print "C<$c>L<$level><$open$close>O<$off>\n";
1912 if ($off > 0) {
1913 $off--;
1947 my ($linenr, $remain, $off) = @_;
1949 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
1958 my ($linenr, $remain, $off) = @_;
1960 return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
2979 if ($line =~ /^\s*signed-off-by:\s*(.*)/i) {
3173 # Check Co-developed-by: immediately followed by Signed-off-by: with same name and email
3181 "Co-developed-by: must be immediately followed by Signed-off-by:\n" . $herecurr);
3182 } elsif ($rawlines[$linenr] !~ /^signed-off-by:\s*(.*)/i) {
3184 …"Co-developed-by: must be immediately followed by Signed-off-by:\n" . $herecurr . $rawlines[$linen…
3187 …"Co-developed-by and Signed-off-by: name/email do not match\n" . $herecurr . $rawlines[$linenr] . …
5118 my $off = 0;
5121 push(@fix_elements, substr($rawline, $off, length($el)));
5122 $off += length($el);
5125 $off = 0;
5136 $off += length($elements[$n]);
5139 my $ca = substr($opline, 0, $off);
5141 if (length($opline) >= ($off + length($elements[$n + 1]))) {
5142 $cc = substr($opline, $off + length($elements[$n + 1]));
5172 my $ptr = substr($blank, 0, $off) . "^";
5176 my $op_type = substr($curr_values, $off + 1, 1);
5179 my $opv = $op . substr($curr_vars, $off, 1);
5391 $off += length($elements[$n + 1]);
5933 my ($off, $dstat, $dcond, $rest);
5937 ($dstat, $dcond, $ln, $cnt, $off) =
5940 #print "dstat<$dstat> dcond<$dcond> cnt<$cnt> off<$off>\n";
6106 my ($off, $dstat, $dcond, $rest);
6108 ($dstat, $dcond, $ln, $cnt, $off) =
7731 "Missing Signed-off-by: line(s)\n");
7734 # 0 -> missing sign off
7735 # 1 -> sign off identical
7741 my $sob_msg = "'From: $author' != 'Signed-off-by: $author_sob'";
7745 "Missing Signed-off-by: line by nominal patch author '$author'\n");
7748 "From:/Signed-off-by: email comments mismatch: $sob_msg\n");
7751 "From:/Signed-off-by: email name mismatch: $sob_msg\n");
7754 "From:/Signed-off-by: email address mismatch: $sob_msg\n");
7757 "From:/Signed-off-by: email subaddress mismatch: $sob_msg\n");