/freebsd/lib/libc/regex/grot/ |
H A D | mkh | 2 # mkh - pull headers out of C source 11 # because -o needs to have prototypes on one line to strip them down. 12 # Getting comments into the output is tricky; we turn C++-style // comments 19 for a 21 case "$a" in 22 -o) # old (pre-function-prototype) compiler 25 "'/^\([^#\/][^\/]*[a-zA-Z0-9_)]\)(\(.*\))/s;;\1(/*\2*/);' 28 -b) # funny Berkeley __P macro 30 "'/^\([^#\/][^\/]*[a-zA-Z0-9_)]\)(\(.*\))/s;;\1 __P((\2));' 33 -s) # compiler doesn't like `static foo();' [all …]
|
/freebsd/crypto/openssl/crypto/modes/asm/ |
H A D | ghash-c64xplus.pl | 2 # Copyright 2012-2020 The OpenSSL Project Authors. All Rights Reserved. 5 # this file except in compliance with the License. You can obtain a copy 23 # byte in ~7 cycles, which is >6x faster than "4-bit" table-driven 24 # code compiled with TI's cl6x 6.0 with -mv6400+ -o2 flags. We are 27 # estimate for "4-bit" table-driven implementation is ~12 cycles. 33 ($Z0,$Z1,$Z2,$Z3, $H0, $H1, $H2, $H3, 34 $H0x,$H1x,$H2x,$H3x)=map("A$_",(16..27)); 36 $H0z,$H1z,$H2z,$H3z)=map("B$_",(16..27)); 38 ($xip,$x0,$x1,$xib)=map("B$_",(6..9)); # $xip zaps $len 64 LDDW *${Htable}[-1],$H1:$H0 ; H.lo [all …]
|
/freebsd/lib/libsysdecode/ |
H A D | mkioctls | 4 set -e 6 if [ $# -ne 1 ]; then 7 echo "usage: sh $0 include-dir" 15 # Build a list of headers that have ioctls in them. 19 set -e 21 if set -o | grep -q pipefail; then 22 set -o pipefail 27 filter='egrep -v (net/pfvar|net/if_pfsync)\.h' 29 # find -s would avoid the need to invoke sort but it is non-portable 30 find -L ./* -type f -name '*.h' | \ [all …]
|
H A D | mktables | 16 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 29 # Originally this script was 'mksubr' for kdump which generated a complete 33 set -e 37 if [ -z "$1" ] 39 echo "usage: sh $0 include-dir [output-file]" 43 if [ -n "$2" ]; then 45 output_tmp=$(mktemp -u) 51 # Generate a table C #definitions. The including file can define the 63 if [ -z "$excl" ]; then 66 filter="egrep -v" [all …]
|
/freebsd/crypto/openssl/providers/common/der/ |
H A D | oids_to_c.pm | 5 # this file except in compliance with the License. You can obtain a copy 18 my $OID_name_re = qr/([a-z](?:[-_A-Za-z0-9]*[A-Za-z0-9])?)/; 28 my @oid_nums = @_; 33 (my $C_name = $name) =~ s|-|_|g; 34 my $C_bytes_size = 2 + scalar @_; 35 my $C_bytes = join(', ', map { sprintf("0x%02X", $_) } @oid_nums ); 47 my @oid_nums = @_; 54 (my $C_name = $name) =~ s|-|_|g; 66 my %opts = %{ pop @_ } if ref $_[$#_] eq 'HASH'; 71 foreach my $file (@_) { [all …]
|
/freebsd/libexec/rc/ |
H A D | safe_eval.sh | 1 # SPDX-License-Identifier: BSD-2-Clause 6 # @(#) Copyright (c) 2023-2024 Simon J. Gerraty 15 # Please send copies of changes and bug-fixes to: 23 # return a safe variable setting 24 # any non-alphanumeric chars are replaced with '_' 27 ${SED:-sed} 's/[ ]*#.*//;/^[A-Za-z_][A-Za-z0-9_]*=/!d;s;[^A-Za-z0-9_. "$,/=-];_;g' 48 eval `cat "$@" | safe_set | ${SED:-sed} 's/^\([^=]*\)=.*/&; export \1/'` 57 eval ${local:-:} ef ex f rc 64 --export) ex=_export; shift;; 70 test -s "$f" -a -f "$f" || continue [all …]
|
/freebsd/share/mk/ |
H A D | version_gen.awk | 2 # SPDX-License-Identifier: BSD-2-Clause 17 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 30 # Make a list of all the library versions listed in the master file. 32 # versions[] - array indexed by version name, contains number 34 # successors[] - array index by version name, contains successor 36 # symbols[][] - array index by [version name, symbol index], contains 38 # names[] - array index is symbol name and value is its first version seen, 55 if (/^[a-zA-Z0-9._]+[ \t]*{$/) { 65 else if (/^}[ \t]*[a-zA-Z0-9._]+[ \t]*;$/) { 84 brackets--; [all …]
|
/freebsd/crypto/openssl/util/ |
H A D | merge-err-lines | 5 # this file except in compliance with the License. You can obtain a copy 11 # It should be run before the "err-to-raise" script. 14 # perl -pi util/merge-err-lines files... 16 # git grep -l '[A-Z0-9]err([^)]*$' | xargs perl -pi util/merge-err-lines 21 # Look for "{whitespace}XXXerr(no-close-paren{WHITESPACE}" lines 22 if ( /^ *[_A-Z0-9]+err\([^)]+ *$/ ) { 23 my $copy = $_; 28 $_ = $copy . ' ' . $next;
|
/freebsd/crypto/openssl/VMS/ |
H A D | translatesyms.pl | 5 # this file except in compliance with the License. You can obtain a copy 10 # This script will translate any SYMBOL_VECTOR item that has a translation 17 # read as a text file, with each record as one line. 24 # $ is present at the end of the shortened symbol name, and is preceded by a 47 ((?:[A-Za-z0-9_]+)\/)?([A-Za-z0-9_]+)=(PROCEDURE|DATA) 61 print $_;
|
/freebsd/lib/libipsec/ |
H A D | policy_token.l | 3 /*- 4 * SPDX-License-Identifier: BSD-3-Clause 23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 63 digit [0-9] 64 hexdigit [0-9A-Fa-f] 68 hyphen \- 86 ipaddress [a-zA-Z0-9:\._][a-zA-Z0-9:\._]*(%[a-zA-Z0-9]+)?
|
/freebsd/usr.bin/getaddrinfo/ |
H A D | tables.awk | 1 #!/usr/bin/awk -f 21 # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 36 !(($1 == "#define") && ($3 ~ /^[0-9]*$/)) { 40 ($2 ~ /^AF_[A-Z0-9_]*$/) && ($2 != "AF_MAX") { 44 ($2 ~ /^SOCK_[A-Z0-9_]*$/) && ($2 != "SOCK_MAXADDRLEN") {
|
/freebsd/tests/sys/netinet6/frag6/ |
H A D | frag6.subr | 1 #- 2 # SPDX-License-Identifier: BSD-2-Clause 17 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 42 if [ $$ -gt 65535 ]; then 43 xl=`printf "%x" $(($$ - 65535))` 56 ifconfig ${epair}a up 57 ifconfig ${epair}a inet6 ${ip6a}/64 59 jname="v6t-${id}-${yl}-${xl}" 69 while [ `ifconfig ${epair}a inet6 | grep -c tentative` != "0" ]; do 77 while test $i -lt 60; do [all …]
|
/freebsd/sbin/setkey/ |
H A D | token.l | 3 /*- 4 * SPDX-License-Identifier: BSD-3-Clause 23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 74 digit [0-9] 75 letter [0-9 [all...] |
/freebsd/usr.sbin/route6d/misc/ |
H A D | chkrt | 7 system("rm -f $dump"); 10 $_ = <FD>; 13 system("kill -INT $_"); 15 open(NS, "/usr/bin/netstat -r -n|") || die "Can not open netstat"; 33 $f[2] =~ /if\(\d:([a-z0-9]+)\)/; 35 $f[3] =~ /gw\(([a-z0-9:]+)\)/;
|
/freebsd/sys/contrib/device-tree/Bindings/pinctrl/ |
H A D | nvidia,tegra194-pinmux.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/pinctrl/nvidia,tegra194-pinmu [all...] |
/freebsd/contrib/libfido2/man/ |
H A D | check.sh | 1 #!/bin/sh -u 4 # Use of this source code is governed by a BSD-style 6 # SPDX-License-Identifier: BSD-2-Clause 8 T=$(mktemp -d) || exit 1 9 find . -maxdepth 1 -type f -name '*.3' -print0 > "$T/files" 11 xargs -0 awk '/^.Sh NAME/,/^.Nd/' < "$T/files" | \ 12 awk '/^.Nm/ { print $2 }' | sort -u > "$T/Nm" 13 xargs -0 awk '/^.Fn/ { print $2 }' < "$T/files" | sort -u > "$T/Fn" 14 (cd "$T" && diff -u Nm Fn) 16 cut -c2- ../src/export.llvm | sort > "$T/exports" [all …]
|
/freebsd/contrib/sendmail/contrib/ |
H A D | passwd-to-alias.pl | 11 $wordpat = '([a-zA-Z]+?[a-zA-Z0-9-]*)?[a-zA-Z0-9]'; # 'DB2' 12 while (@a = getpwent) { 13 ($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) = @a; 17 if (!-d $dir || !-x $shell || $shell =~ m!/bin/(false|true)$!) { 21 $fullname =~ s/\.*[ _]+\.*/./g; 22 $fullname =~ tr [���������] [aaeouAAOU]; # <hakan@af.lu.se> 1997-06-15
|
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/ |
H A D | mksignal.sh | 10 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 27 set -e 37 pattern='^#define[ ]*_*\(SIG[A-Z0-9]*\)[ ]\{1,\}\([A-Z0-9]*\).*$' 40 sed -n "s/$pattern/$replace/p;/SIGRTMAX/q" | tr '@' '\n'
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | CharInfo.h | 1 //===--- clang/Basic/CharInfo.h - Classifying ASCII Characters --*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 25 CHAR_DIGIT = 0x0008, // 0-9 26 CHAR_XLETTER = 0x0010, // a-f,A-F 27 CHAR_UPPER = 0x0020, // A-Z 28 CHAR_LOWER = 0x0040, // a-z 29 CHAR_UNDER = 0x0080, // _ 31 CHAR_PUNCT = 0x0200, // {}[]#<>%:;?*+-/^&|~!=,"'`$@() 40 /// Returns true if a byte is an ASCII character. [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | nvidia,tegra-audio-wm9712.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/sound/nvidia,tegra-audio-wm9712.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Jon Hunter <jonathanh@nvidia.com> 11 - Thierry Reding <thierry.reding@gmail.com> 14 - $ref: nvidia,tegra-audio-common.yaml# 19 - pattern: '^[a-z0-9]+,tegra-audio-wm9712([-_][a-z0-9]+)+$' 20 - const: nvidia,tegra-audio-wm9712 22 nvidia,audio-routing: [all …]
|
H A D | nvidia,tegra-audio-sgtl5000.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/sound/nvidia,tegra-audio-sgtl5000.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Jon Hunter <jonathanh@nvidia.com> 11 - Thierry Reding <thierry.reding@gmail.com> 14 - $ref: nvidia,tegra-audio-common.yaml# 19 - pattern: '^[a-z0-9]+,tegra-audio-sgtl5000([-_][a-z0-9]+)+$' 20 - const: nvidia,tegra-audio-sgtl5000 22 nvidia,audio-routing: [all …]
|
/freebsd/sys/dev/bnxt/bnxt_en/ |
H A D | convert_hsi.pl | 9 if (! -f $ARGV[0]) { 29 /*- 48 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 63 # Convert arrays of two u32_t to a single uint64_t 64 $header =~ s/\bu32_t(\s+[a-zA-Z0-9_]+)\[2\]/uint64_t$1/gs; 66 # Convert uint32_t *_lo/uint32_t *_hi to a single uint64_t 67 $header =~ s/\bu32_t(\s+[a-zA-Z0-9_]+)_lo;\s*\r?\n\s*u32_t(\s+[a-zA-Z0-9_]+)_hi/uint64_t$1/gs; 70 $header =~ s/\bu([0-9]+)_t\b/uint$1_t/gs; 73 $header =~ s/\b((?:0x)?[0-9a-f]+)UL/UINT32_C($1)/gs; 103 /*- [all …]
|
/freebsd/contrib/ncurses/man/ |
H A D | MKterminfo.sh | 4 # MKterminfo.sh -- generate terminfo.5 from Caps tabular data 7 # Copyright 2018-2020,2022 Thomas E. Dickey * 8 # Copyright 1998-2003,2017 Free Software Foundation, Inc. * 10 # Permission is hereby granted, free of charge, to any person obtaining a * 23 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * 36 # them a table derived from the Caps data file. Besides avoiding having 56 while test $# -gt 1 75 trap 'code=$?; rm -f $sorted $temp $unsorted; exit $code' EXIT HUP INT QUIT TERM 76 rm -f $sorted $temp $unsorted 78 cat $caps | sed -n "\ [all …]
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/scripts/ |
H A D | dtest.pl | 9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 39 $USAGE = "Usage: $PNAME [-abfghjlnqs] [-d dir] [-i isa] " 40 . "[-x opt[=arg]] [file | dir ...]\n"; 41 ($MACH = `uname -p`) =~ s/\W*\n//; 42 ($PLATFORM = `uname -i`) =~ s/\W*\n//; 54 # If no test files are specified on the command-line, execute a find on "." 61 if ($_ =~ /^(tst|err|drp)\..+\.(d|ksh)$/ && -f "$_"); 65 my($s) = @_; 68 $s = substr($s, 0, $i) if (($i = rindex($s, '/')) != -1); 69 return $i == -1 ? '.' : $i == 0 ? '/' : $s; [all …]
|
/freebsd/crypto/openssl/util/perl/OpenSSL/ |
H A D | OID.pm | 1 # Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved. 4 # this file except in compliance with the License. You can obtain a copy 35 OpenSSL::OID - an OBJECT IDENTIFIER parser / encoder 51 my @nums = parse_oid('{ pkcs-1 1 }'); 55 my @bytes = encode_oid('{ pkcs-1 1 }'); 57 # This registers a name with an OID. It's saved internally and 58 # serves as repository of names for further parsing, such as 'pkcs-1' 60 register_object('pkcs-1', '{ pkcs 1 }'); 94 my $identifier_re = qr/[a-z](?:[-_A-Za-z0-9]*[A-Za-z0-9])?/; 97 # groups, so we get a pair of values regardless. That's the reason for the [all …]
|