| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonMCCodeEmitter.cpp | 1 //===- HexagonMCCodeEmitter.cpp - Hexagon Target Descriptions -------- 47 #define _ fixup_I global() macro [all...] |
| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_interceptors_ioctl_netbsd.inc | 1 //===-- sanitizer_interceptors_ioctl_netbsd.inc -----------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 //===----------------------------------------------------------------------===// 35 #define _(rq, tp, sz) \ 46 _(AFM_ADDFMAP, READWRITE, struct_atm_flowmap_sz); 47 _(AFM_DELFMAP, READWRITE, struct_atm_flowmap_sz); 48 _(AFM_CLEANFMAP, READWRITE, struct_atm_flowmap_sz); 49 _(AFM_GETFMAP, READWRITE, struct_atm_flowmap_sz); 51 _(ALTQGTYPE, READWRITE, struct_altqreq_sz); [all …]
|
| H A D | sanitizer_common_interceptors_ioctl.inc | 1 //===-- sanitizer_common_interceptors_ioctl.inc -----------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 //===----------------------------------------------------------------------===// 41 #define _(rq, tp, sz) \ 51 _(FIOASYNC, READ, sizeof(int)); 52 _(FIOCLEX, NONE, 0); 53 _(FIOGETOWN, WRITE, sizeof(int)); 54 _(FIONBIO, READ, sizeof(int)); 55 _(FIONCLEX, NONE, 0); [all …]
|
| /freebsd/contrib/bmake/ |
| H A D | bmake.cat1 | 4 bbmmaakkee - maintain program dependencies 7 …maakkee [--BBeeiikkNNnnqqrrSSssttWWwwXX] [--CC _d_i_r_e_c_t_o_r_y] [… 8 …[--ff _m_a_k_e_f_i_l_e] [--II _d_i_r_e_c_t_o_r_y] [--JJ _p_r_i_v_a_t_… 9 …[--mm _d_i_r_e_c_t_o_r_y] [--TT _f_i_l_e] [--VV _v_a_r_i_a_b_l_e] [--v… 10 [_v_a_r_i_a_b_l_e==_v_a_l_u_e] [_t_a_r_g_e_t ...] 15 which programs and other files depend. If no --ff _m_a_k_e_f_i_l_e option is 16 …given, bbmmaakkee looks for the makefiles listed in _._M_A_K_E_._M_A_K_E_F_I_L_… 17 …(default `_m_a_k_e_f_i_l_e', `_M_a_k_e_f_i_l_e') in order to find the specificatio… 18 the file `_._d_e_p_e_n_d' exists, it is read, see mkdep(1). 21 thorough description of bbmmaakkee and makefiles, please refer to _P_M_a_k_e _- _A [all …]
|
| /freebsd/crypto/openssl/crypto/perlasm/ |
| H A D | s390x.pm | 2 # Copyright 2018-2020 The OpenSSL Project Authors. All Rights Reserved. 9 # Copyright IBM Corp. 2018-2019 23 # store-clock-fast facility 25 # general-instruction-extension facility 27 # extended-immediate facility 29 # miscellaneous-instruction-extensions facility 1 31 # message-security assist 33 # message-security-assist extension 4 35 # message-security-assist extension 5 37 # message-security-assist extension 8 [all …]
|
| H A D | x86asm.pl | 2 # Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved. 27 die "more than 4 arguments passed to $opcode" if ($#_>3); 31 elsif ($opcode =~ /^pop/) { $stack-=4; } 33 &generic($opcode,@_) or die "undefined subroutine \&$AUTOLOAD"; 39 if ($#_==-1) { push(@out,"\t$opcode\n"); } 40 else { push(@out,"\t$opcode\t".join(',',@_)."\n"); } 44 { $_[0] =~ m/^e?([a-d])x$/o or die "$_[0] does not have a 'low byte'"; 48 { $_[0] =~ m/^e?([a-d])x$/o or die "$_[0] does not have a 'high byte'"; 51 sub ::stack_push{ my $num=$_[0]*4; $stack+=$num; &sub("esp",$num); } 52 sub ::stack_pop { my $num=$_[0]*4; $stack-=$num; &add("esp",$num); } [all …]
|
| /freebsd/crypto/openssl/Configurations/platform/ |
| H A D | BASE.pm | 17 # Currently known internal or semi-internal extensions are: 25 sub binname { return $_[1] } # Name of executable binary 26 sub dsoname { return $_[1] } # Name of dynamic shared object (DSO) 27 sub sharedname { return __isshared($_[1]) ? $_[1] : undef } # Name of shared lib 28 sub staticname { return __base($_[1], '.a') } # Name of static lib 35 sub bin { return $_[0]->binname($_[1]) . $_[0]->binext() } 36 sub dso { return $_[0]->dsoname($_[1]) . $_[0]->dsoext() } 37 sub sharedlib { return __concat($_[0]->sharedname($_[1]), $_[0]->shlibext()) } 38 sub staticlib { return $_[0]->staticname($_[1]) . $_[0]->libext() } 41 sub def { return __base($_[1], '.ld') . $_[0]->defext() } [all …]
|
| /freebsd/contrib/less/ |
| H A D | less.hlp | 4 Commands marked with * may be preceded by a number, _N. 5 Notes in parentheses indicate the behavior if _N is given. 6 A key preceded by a caret indicates the Ctrl key; thus ^K is ctrl-K. 10 --------------------------------------------------------------------------- 14 e ^E j ^N CR * Forward one line (or _N lines). 15 y ^Y k ^K ^P * Backward one line (or _N lines). 16 ESC-j * Forward one file line (or _N file lines). 17 ESC-k * Backward one file line (or _N file lines). 18 f ^F ^V SPACE * Forward one window (or _N lines). 19 b ^B ESC-v * Backward one window (or _N lines). [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86InstrAVX512.td | 1 //===-- X86InstrAVX512.td - AVX512 Instruction Set ---------*- tablegen -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 13 //===----------------------------------------------------------------------===// 15 // This multiclass generates the masking variants from the non-masking 64 multiclass AVX512_maskable_common<bits<8> O, Format F, X86VectorVTInfo _, 78 [(set _.RC:$dst, RHS)], 79 [(set _.RC:$dst, MaskingRHS)], 80 [(set _.RC:$dst, 81 (Select _.KRCWM:$mask, RHS, _.ImmAllZerosV))], [all …]
|
| /freebsd/contrib/elftoolchain/libelf/ |
| H A D | elf_types.m4 | 1 /*- 26 * $Id: elf_types.m4 321 2009-03-07 16:59:14Z jkoshy $ 32 * The members of the list form a 2-tuple: (name, C-type-suffix). 34 * + `C-type-suffix' is the suffix for Elf32_ and Elf64_ type names. 43 `GNUHASH, -', 62 `NUM, _'') 69 * Each member-list element comprises of pairs of (field name, type), 76 * The last element of a member list is the null element: `_,_'. 84 `_,_'') 89 `_,_'') [all …]
|
| /freebsd/stand/lua/ |
| H A D | gfx-install.lua | 1 -- 2 -- Copyright (c) 2025 Joseph Mingrone <jrm@FreeBSD.org> 3 -- 4 -- SPDX-License-Identifier: BSD-2-Clause 5 -- 11 " _____ ____ ____ ____ ___ _ _ _", 12 "| ___| __ ___ ___| __ ) ___|| _ \\ |_ _|_ __ ___| |_ __ _| | | ___ _ __", 13 "| |_ | '__/ _ \\/ _ \\ _ \\___ \\| | | | | || '_ \\/ __| __/ _` | | |/ _ \\ '__|", 14 "| _|| | | __/ __/ |_) |__) | |_| | | || | | \\__ \\ || (_| | | | __/ |", 15 "|_| |_| \\___|\\___|____/____/|____/ |___|_| |_|___/\\__\\__,_|_|_|\\___|_|", [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | arm_sve.td | 1 //===--- arm_sve.td - ARM SVE compiler interface ------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 // https://developer.arm.com/architectures/system-architectures/software-standards/acle 14 //===----------------------------------------------------------------------===// 22 def SVLD1 : MInst<"svld1[_{2}]", "dPc", "csilUcUsUiUlhfd", [IsLoad, VerifyRuntimeMode], … 31 …def SVLD1_BF : MInst<"svld1[_{2}]", "dPc", "b", [IsLoad, VerifyRuntimeMode], MemEltTyDe… 32 …def SVLD1_VNUM_BF : MInst<"svld1_vnum[_{2}]", "dPcl", "b", [IsLoad, VerifyRuntimeMode], MemEltTyDe… 36 def SVLD1_VNUM : MInst<"svld1_vnum[_{2}]", "dPcl", "csilUcUsUiUlhfd", [IsLoad, VerifyRuntimeMode]… 46 def SVLD1_GATHER_BASES_U : MInst<"svld1_gather[_{2}base]_{d}", "dPu", "ilUiUlfd", [IsGatherLoad… [all …]
|
| H A D | arm_sme.td | 1 //===--- arm_sme.td - ARM SME compiler interface ------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 // https://developer.arm.com/architectures/system-architectures/software-standards/acle 14 //===----------------------------------------------------------------------===// 103 def NAME # _H : SInst<"svread_hor_" # n_suffix # "[_{d}]", "ddPim", t, 107 def NAME # _V : SInst<"svread_ver_" # n_suffix # "[_{d}]", "ddPim", t, 124 def NAME # _H : SInst<"svwrite_hor_" # n_suffix # "[_{d}]", "vimPd", t, 128 def NAME # _V : SInst<"svwrite_ver_" # n_suffix # "[_{d}]", "vimPd", t, 141 // SME - Zero [all …]
|
| /freebsd/contrib/ntp/sntp/libopts/ |
| H A D | genshell.c | 1 /* -*- buffer-read-only: t -*- vi: set ro: 5 * It has been AutoGen-ed 22 * Copyright (C) 1999-2018 Bruce Korb, all rights reserved. 25 * version 2 or later <http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html> 39 * <http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html> 74 "Copyright (C) 1999-2018 Bruce Korb, all rights reserved.\n" 77 "version 2 or later <http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html>\n\0" 88 "<http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html>\n\0" 94 /* 1028 */ "no-shell\0" 99 /* 1134 */ "more-help\0" [all …]
|
| /freebsd/contrib/ntp/ntpsnmpd/ |
| H A D | ntpsnmpd-opts.c | 2 * EDIT THIS FILE WITH CAUTION (ntpsnmpd-opts.c) 4 * It has been AutoGen-ed May 25, 2024 at 12:04:35 AM by AutoGen 5.18.16 5 * From the definitions ntpsnmpd-opts.def 21 * Copyright (C) 1992-2024 The University of Delaware and Network Time Foundation, all rights reserved. 26 * <http://opensource.org/licenses/ntp-license.php> 41 #include "ntpsnmpd-opts.h" 70 "Copyright (C) 1992-2024 The University of Delaware and Network Time Foundation, all rights reserved.\n" 75 " <http://opensource.org/licenses/ntp-license.php>\n\0" 92 /* 1069 */ "The socket address ntpsnmpd uses to connect to net-snmpd\0" 99 /* 1270 */ "more-hel [all...] |
| /freebsd/contrib/ntp/sntp/libopts/autoopts/ |
| H A D | usage-txt.h | 1 /* -*- buffer-read-only: t -*- vi: set ro: 3 * DO NOT EDIT THIS FILE (usage-txt.h) 5 * It has been AutoGen-ed 6 * From the definitions usage-txt.def 7 * and the template file usage-txt.tpl 11 * AutoOpts is Copyright (C) 1992-2017 by Bruce Korb - all rights reserved 29 /** @file usage-txt.h 34 * library and accessed by client code only in a very well-controlled way: 192 "\tCopyright (C) 1999-2017 by Bruce Korb - all rights reserved\n\0" 194 /* 427 */ "optionResetOpt() called, but reset-option not configured\0" [all …]
|
| /freebsd/contrib/ntp/sntp/ag-tpl/0-old/ |
| H A D | mdoc2man | 4 # Properly implement -columns in the "my %lists" definition... 20 Mdoc::def_macro( '.Sh', sub { '.SH', hs, @_ }, raw => 1); 21 Mdoc::def_macro( '.Ss', sub { '.SS', hs, @_ }, raw => 1); 23 Mdoc::def_macro( '.Nd', sub { "\\- @_" } ); 33 Mdoc::def_macro( '.D1' , sub { ".in +4\n", ns, @_ , ns , "\n.in -4" } , greedy => 1); 35 Mdoc::def_macro( 'Oo', sub { '[', @_ } ); 36 Mdoc::def_macro( 'Oc', sub { ']', @_ } ); 38 Mdoc::def_macro( 'Po', sub { '(', @_} ); 39 Mdoc::def_macro( 'Pc', sub { ')', @_ } ); 41 Mdoc::def_macro( 'Bro', sub { '{', ns, @_ } ); [all …]
|
| H A D | mdoc2texi | 5 # the Bl -column command needs work: 6 # - support for "-offset" 7 # - support for the header widths 24 Mdoc::def_macro( '.An', sub { @_, ns, '@*' } ); 39 gen_encloser($o, $c)->(@_) 41 Mdoc::def_macro( '.D1', sub { "\@example\n", ns, @_, ns, "\n\@end example" }, 43 Mdoc::def_macro( '.Dl', sub { "\@example\n", ns, @_, ns, "\n\@end example" }, 47 Mdoc::def_macro( 'Oo', sub { '@code{[', ns, @_ } ); 48 Mdoc::def_macro( 'Oc', sub { @_, ns, pp(']}') } ); 51 Mdoc::def_macro( 'Bro', sub { '@code{@{', ns, @_ } ); [all …]
|
| /freebsd/crypto/heimdal/lib/gssapi/mech/ |
| H A D | mech.cat5 | 5 mmeecchh, qqoopp -- GSS-API Mechanism and QOP files 8 _/_e_t_c_/_g_s_s_/_m_e_c_h _/_e_t_c_/_g_s_s_/_q_o_p 11 The _/_e_t_c_/_g_s_s_/_m_e_c_h file contains a list of installed GSS-API security 15 Name The name of this GSS-API mechanism. 24 A kernel module containing the implementation of this mech- 32 … The _/_e_t_c_/_g_s_s_/_q_o_p file contains a list of Quality of Protection values for 33 use with GSS-API. Each line of the file either contains a comment if the 40 with GSS-API functions such as gss_get_mic(3). 43 The GSS-API mechanism name that corresponds to this algo- 47 This is a typical entry from _/_e_t_c_/_g_s_s_/_m_e_c_h: [all …]
|
| /freebsd/sys/dev/vt/font/ |
| H A D | vt_mouse_cursor.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 38 0x40, 0x00, /* "_*_ " */ 39 0x60, 0x00, /* "_**_ " */ 40 0x70, 0x00, /* "_***_ " */ 41 0x78, 0x00, /* "_****_ " */ 42 0x7c, 0x00, /* "_*****_ " */ 43 0x7e, 0x00, /* "_******_ " */ 44 0x7f, 0x00, /* "_*******_ " */ 45 0x7f, 0x80, /* "_********_" */ [all …]
|
| /freebsd/crypto/openssl/Configurations/ |
| H A D | gentemplate.pm | 15 my %opts = @_; 17 my $generator = OpenSSL::GenTemplate->new(%opts); 20 foreach (@{$generator->{info}->{depends}->{""}}) { $generator->dogenerate($_); } 24 foreach (@{$generator->{info}->{targets}}) { $generator->dotarget($_); } 25 foreach (@{$generator->{info}->{libraries}}) { $generator->dolib($_); } 26 foreach (@{$generator->{info}->{modules}}) { $generator->domodule($_); } 27 foreach (@{$generator->{info}->{programs}}) { $generator->dobin($_); } 28 foreach (@{$generator->{info}->{scripts}}) { $generator->doscript($_); } 29 foreach (sort keys %{$generator->{info}->{htmldocs}}) { $generator->dodocs('html', $_); } 30 foreach (sort keys %{$generator->{info}->{mandocs}}) { $generator->dodocs('man', $_); } [all …]
|
| /freebsd/contrib/ntp/sntp/ag-tpl/ |
| H A D | mdoc2man | 3 ## mdoc2man.pl -- Convert mdoc tags to man tags 10 ## AutoOpts is Copyright (C) 1992-2015 by Bruce Korb - all rights reserved 29 # Properly implement -columns in the "my %lists" definition... 46 Mdoc::def_macro( '.Sh', sub { '.SH', hs, @_ }, raw => 1); 47 Mdoc::def_macro( '.Ss', sub { '.SS', hs, @_ }, raw => 1); 49 Mdoc::def_macro( '.Nd', sub { "\\- @_" } ); 59 Mdoc::def_macro( '.D1' , sub { ".in +4\n", ns, @_ , ns , "\n.in -4" } , greedy => 1); 61 Mdoc::def_macro( 'Oo', sub { '[', @_ } ); 62 Mdoc::def_macro( 'Oc', sub { ']', @_ } ); 64 Mdoc::def_macro( 'Po', sub { '(', @_} ); [all …]
|
| /freebsd/contrib/ntp/ntpdc/ |
| H A D | ntpdc-opts.c | 2 * EDIT THIS FILE WITH CAUTION (ntpdc-opts.c) 4 * It has been AutoGen-ed May 25, 2024 at 12:04:11 AM by AutoGen 5.18.16 5 * From the definitions ntpdc-opts.def 21 * Copyright (C) 1992-2024 The University of Delaware and Network Time Foundation, all rights reserved. 26 * <http://opensource.org/licenses/ntp-license.php> 41 #include "ntpdc-opts.h" 78 "Copyright (C) 1992-2024 The University of Delaware and Network Time Foundation, all rights reserved.\n" 83 " <http://opensource.org/licenses/ntp-license.php>\n\0" 105 /* 1174 */ "debug-level\0" 108 /* 1232 */ "set-debu [all...] |
| /freebsd/crypto/krb5/src/util/ |
| H A D | depfix.pl | 1 #!env perl -w 26 eval 'exec perl -S $0 ${1+"$@"}' 56 my($x) = @_; 63 my($old,$new,$s) = @_; 68 if ($i == -1) { 85 local($_) = @_; 91 s,^([a-zA-Z0-9_\-]*)\.o:,$1.so $1.po \$(OUTPRE)$1.\$(OBJEXT):,; 93 s,^([a-zA-Z0-9_\-]*)\.o:,\$(OUTPRE)$1.\$(OBJEXT):,; 97 $_ = strrep(" $srct", " \$(top_srcdir)/", $_); 99 while ($srct =~ m,/[a-z][a-zA-Z0-9_.\-]*/\.\./,) { [all …]
|
| /freebsd/crypto/krb5/src/kprop/ |
| H A D | kproplog.c | 1 /* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */ 11 #include "k5-int.h" 12 #include "k5-hex.h" 29 fprintf(stderr, _("\nUsage: %s [-h] [-v] [-v] [-e num]\n\t%s -R\n\n"), in usage() 95 len = str->utf8str_t_len; in print_hex() 97 if (k5_hex_encode(str->utf8str_t_val, len, FALSE, &hex) != 0) in print_hex() 110 s = k5memdup0(str->utf8str_t_val, str->utf8str_t_len, &ret); in print_str() 112 fprintf(stderr, _("\nCouldn't allocate memory")); in print_str() 115 printf("\t\t\t%s(%d): %s\n", tag, str->utf8str_t_len, s); in print_str() 123 printf("\t\t\tmagic: 0x%x\n", data->k_magic); in print_data() [all …]
|