/freebsd/contrib/file/magic/Magdir/ |
H A D | pgp | 29 >>&0 use pgp 37 >>&0 use pgp 49 >>&0 use pgp 281 >3 use crypto 283 >>5 use hash 287 >>5 use hash 294 >0 use crypto 298 >2 use hash 315 >5 use crypto 317 >>6 use chkcrypto [all …]
|
H A D | netbsd | 36 >0 use netbsd-detail 45 >0 use netbsd-detail 51 >0 use netbsd-detail 58 >0 use netbsd-4096 61 >0 use netbsd-pure 64 >0 use netbsd-normal 67 >0 use netbsd-core 70 >0 use \^netbsd-8192 73 >0 use \^netbsd-pure 76 >0 use \^netbsd-normal [all …]
|
H A D | mips | 20 >>0 use \^display-mips-ecoff 22 >>0 use display-coff 26 >>0 use \^display-mips-ecoff 30 >>0 use display-mips-ecoff 32 >>0 use display-coff 36 >>0 use display-mips-ecoff 42 >>0 use \^display-mips-ecoff 46 >>0 use \^display-mips-ecoff 48 >>0 use display-coff 52 >>0 use display-mips-ecoff [all …]
|
H A D | gpt | 13 # (use -k if you do want them as well) 35 #>>>>>>>>>>>>>446 use gpt-mbr-partition 37 >>>>>>>>>>>>>>0 use gpt-mbr-type 38 >>>>>>>>>>>>>>&-8 use gpt-table 42 >>>>>>>>>>>>>>>0 use gpt-mbr-type 43 >>>>>>>>>>>>>>>&-8 use gpt-table 47 >>>>>>>>>>>>>>>>0 use gpt-mbr-type 48 >>>>>>>>>>>>>>>>&-8 use gpt-table 52 >>>>>>>>>>>>>>>>>0 use gpt-mbr-type 53 >>>>>>>>>>>>>>>>>&-8 use gpt-table [all …]
|
H A D | pgp-binary-keys | 164 >&0 use primary_key_length_new 167 >&0 use primary_key_length_new 170 >&-1 use primary_key_length_old 173 >&-1 use primary_key_length_old 185 >>&0 use pgp_binary_key_pk_check 186 >>>&(&-1.B) use sig_or_component_1 193 >>>&1 use pgp_binary_key_pk_check 194 >>>>&(&-2.S-48960) use sig_or_component_1 197 >>&4 use pgp_binary_key_pk_check 198 >>>&(&-4.L) use sig_or_component_1 [all …]
|
H A D | nifty | 13 >0 use nifti1 17 >0 use nifti1 22 >0 use nifti2 26 >0 use nifti2 32 >>70 use nifti-datatype-le 34 >>0 use nifti1-dim-le 36 >>>252 use xform-code-nifti1-le 38 >>>254 use xform-code-nifti1-le 41 >>70 use \^nifti-datatype-le 43 >>0 use \^nifti1-dim-le [all …]
|
/freebsd/crypto/heimdal/doc/doxyout/krb5/man/man3/ |
H A D | krb5_deprecated.3 | 10 …krb5_data *result_code_string, krb5_data *result_string) KRB5_DEPRECATED_FUNCTION('Use X instead')" 13 … context, const char *string, krb5_config_section **res) KRB5_DEPRECATED_FUNCTION('Use X instead')" 16 …krb5_keytype keytype, unsigned *len, krb5_enctype **val) KRB5_DEPRECATED_FUNCTION('Use X instead')" 19 …ntext context, krb5_enctype etype1, krb5_enctype etype2) KRB5_DEPRECATED_FUNCTION('Use X instead')" 22 …data_contents\fP (krb5_context context, krb5_data *data) KRB5_DEPRECATED_FUNCTION('Use X instead')" 25 …krb5_keytype keytype, unsigned *len, krb5_enctype **val) KRB5_DEPRECATED_FUNCTION('Use X instead')" 28 …b5_context context, krb5_keytype keytype, char **string) KRB5_DEPRECATED_FUNCTION('Use X instead')" 31 …text context, const char *string, krb5_keytype *keytype) KRB5_DEPRECATED_FUNCTION('Use X instead')" 34 …t salt, krb5_const_pointer keyseed, krb5_keyblock **key) KRB5_DEPRECATED_FUNCTION('Use X instead')" 37 …e ccache, krb5_creds *creds, krb5_kdc_rep *ret_as_reply) KRB5_DEPRECATED_FUNCTION('Use X instead')" [all …]
|
/freebsd/sys/dev/mii/ |
H A D | rlswitch.c | 8 * Redistribution and use in source and binary forms, with or without 16 * 3. All advertising materials mentioning features or use of this software 29 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 32 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 144 val |= 1 << 6; /* internal use */ in rlswitch_attach() 145 val |= 1 << 5; /* internal use */ in rlswitch_attach() 146 val |= 1 << 4; /* internal use */ in rlswitch_attach() 147 val |= 1 << 3; /* internal use */ in rlswitch_attach() 176 val |= 1 << 6; /* internal use */ in rlswitch_attach() 177 val |= 3 << 4; /* internal use */ in rlswitch_attach() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Use.h | 1 //===- llvm/Use.h - Definition of the Use class -----------------*- C++ -*-===// 10 /// This defines the Use class. The Use class represents the operand of an 11 /// instruction or some other User instance which refers to a Value. The Use 12 /// class keeps the "use list" of the referenced value up to date. 14 /// Pointer tagging is used to efficiently find the User corresponding to a Use 15 /// without having to store a User pointer in every Use. A User is preceded in 17 /// one of the fields (Prev) of the Use class are used to encode offsets to be 18 /// able to find that User given a pointer to any Use. For details, see: 37 /// A Use represents the edge between a Value definition and its users. 43 class Use { [all …]
|
H A D | User.h | 23 #include "llvm/IR/Use.h" 73 User(Type *ty, unsigned vty, Use *, unsigned NumOps) in User() argument 94 ~User() = default; // Use deleteValue() to delete a generic Instruction. 99 /// Free memory allocated for User and Use objects. 127 template <int Idx, typename U> static Use &OpFrom(const U *that) { in OpFrom() 133 template <int Idx> Use &Op() { in Op() 136 template <int Idx> const Use &Op() const { in Op() 141 const Use *getHungOffOperands() const { in getHungOffOperands() 142 return *(reinterpret_cast<const Use *const *>(this) - 1); in getHungOffOperands() 145 Use *&getHungOffOperands() { return *(reinterpret_cast<Use **>(this) - 1); } in getHungOffOperands() [all …]
|
/freebsd/contrib/llvm-project/openmp/runtime/src/include/ |
H A D | omp_lib.F90.var | 15 use, intrinsic :: iso_c_binding 58 use omp_lib_kinds 213 use omp_lib_kinds 218 use omp_lib_kinds 223 use omp_lib_kinds 228 use omp_lib_kinds 233 use omp_lib_kinds 238 use omp_lib_kinds 243 use omp_lib_kinds 248 use omp_lib_kinds [all …]
|
/freebsd/sbin/setkey/ |
H A D | test-policy.c | 7 * Redistribution and use in source and binary forms, with or without 25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 52 "ipsec ah/use/", 54 "ipsec ah/use/203.178.141.195 esp/use/203.178.141.194", 57 ipsec esp/require ah/use esp/require/10.0.0.1 58 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1 59 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1 60 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1 61 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1 [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/net/ |
H A D | macb.txt | 5 Use "cdns,at91rm9200-emac" Atmel at91rm9200 SoC. 6 Use "cdns,at91sam9260-macb" for Atmel at91sam9 SoCs. 7 Use "cdns,sam9x60-macb" for Microchip sam9x60 SoC. 8 Use "cdns,np4-macb" for NP4 SoC devices. 9 Use "cdns,at32ap7000-macb" for other 10/100 usage or use the generic form: "cdns,macb". 10 Use "atmel,sama5d2-gem" for the GEM IP (10/100) available on Atmel sama5d2 SoCs. 11 Use "atmel,sama5d29-gem" for GEM XL IP (10/100) available on Atmel sama5d29 SoCs. 12 Use "atmel,sama5d3-macb" for the 10/100Mbit IP available on Atmel sama5d3 SoCs. 13 Use "atmel,sama5d3-gem" for the Gigabit IP available on Atmel sama5d3 SoCs. 14 Use "atmel,sama5d4-gem" for the GEM IP (10/100) available on Atmel sama5d4 SoCs. [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | User.cpp | 32 // most importantly, removing "this" from the use list of "From". in replaceUsesOfWith() 53 static_assert(alignof(Use) >= alignof(BasicBlock *), in allocHungoffUses() 57 size_t size = N * sizeof(Use); in allocHungoffUses() 60 Use *Begin = static_cast<Use*>(::operator new(size)); in allocHungoffUses() 61 Use *End = Begin + N; in allocHungoffUses() 64 new (Begin) Use(this); in allocHungoffUses() 76 Use *OldOps = getOperandList(); in growHungoffUses() 78 Use *NewOps = getOperandList(); in growHungoffUses() 89 Use::zap(OldOps, OldOps + OldNumUses, true); in growHungoffUses() 135 ::operator new(Size + sizeof(Use) * Us + DescBytesToAllocate)); in allocateFixedOperandUser() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/ |
H A D | Use.h | 1 //===- Use.h ----------------------------------------------------*- C++ -*-===// 9 // Sandbox IR Use. 16 #include "llvm/IR/Use.h" 25 /// Represents a Def-use/Use-def edge in SandboxIR. 26 /// NOTE: Unlike llvm::Use, this is not an integral part of the use-def chains. 28 /// more than one sandboxir::Use objects for the same use-def edge. 29 class Use { 30 llvm::Use *LLVMUse; 34 /// Don't allow the user to create a sandboxir::Use directly. 35 Use(llvm::Use *LLVMUse, User *Usr, Context &Ctx) in Use() function [all …]
|
H A D | SandboxIR.h | 53 // Use 66 #include "llvm/SandboxIR/Use.h" 85 /// Iterator for the `Use` edges of a User's operands. 86 /// \Returns the operand `Use` when dereferenced. 88 sandboxir::Use Use; variable 90 OperandUseIterator(const class Use &Use) : Use(Use) {} in OperandUseIterator() argument 97 using value_type = sandboxir::Use; 106 return Use == Other.Use; 113 /// Iterator for the `Use` edges of a Value's users. 114 /// \Returns a `Use` when dereferenced. [all …]
|
/freebsd/crypto/krb5/doc/ |
H A D | notice.rst | 5 Redistribution and use in source and binary forms, with or without 21 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 50 (MIT). No commercial use of these trademarks may be made without 53 "Commercial use" means use of a name in a product or other for-profit 73 You may freely use and distribute the Source Code and Object Code 81 AGREEMENT, INCLUDING, WITHOUT LIMITATION, THOSE RESULTING FROM THE USE 117 WITHIN THAT CONSTRAINT, permission to use, copy, modify, and 140 The redistribution and use of this software (with or without 165 Redistribution and use in source and binary forms, with or without [all …]
|
/freebsd/sys/arm/arm/ |
H A D | bus_space_base.c | 7 * Redistribution and use in source and binary forms, with or without 25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 62 .bs_r_1 = NULL, /* Use inline code in bus.h */ 63 .bs_r_2 = NULL, /* Use inline code in bus.h */ 64 .bs_r_4 = NULL, /* Use inline code in bus.h */ 65 .bs_r_8 = NULL, /* Use inline code in bus.h */ 80 .bs_w_1 = NULL, /* Use inline code in bus.h */ 81 .bs_w_2 = NULL, /* Use inline code in bus.h */ 82 .bs_w_4 = NULL, /* Use inline code in bus.h */ [all …]
|
/freebsd/crypto/heimdal/lib/krb5/ |
H A D | codec.c | 6 * Redistribution and use in source and binary forms, with or without 27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 44 KRB5_DEPRECATED_FUNCTION("Use X instead") in krb5_decode_EncTicketPart() 55 KRB5_DEPRECATED_FUNCTION("Use X instead") in krb5_encode_EncTicketPart() 66 KRB5_DEPRECATED_FUNCTION("Use X instead") in krb5_decode_EncASRepPart() 77 KRB5_DEPRECATED_FUNCTION("Use X instead") in krb5_encode_EncASRepPart() 88 KRB5_DEPRECATED_FUNCTION("Use X instead") in krb5_decode_EncTGSRepPart() 99 KRB5_DEPRECATED_FUNCTION("Use X instead") in krb5_encode_EncTGSRepPart() 110 KRB5_DEPRECATED_FUNCTION("Use X instead") in krb5_decode_EncAPRepPart() [all …]
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | depsrc-use.mk | 1 # $NetBSD: depsrc-use.mk,v 1.6 2022/04/18 14:38:24 rillig Exp $ 3 # Tests for the special source .USE in dependency declarations, 11 # regarded as a candidate for the main target. On the other hand, a .USE 13 not-a-main-candidate: .USE 17 first: .USE first-first first-second 20 first-first: .USE 23 first-second: .USE 27 second: .USE 31 # It's possible but uncommon to have a .USE target with no commands. 33 empty: .USE [all …]
|
/freebsd/usr.bin/fortune/datfiles/ |
H A D | freebsd-tips | 1 Any user that is a member of the wheel group can use "su -" to simulate 6 By pressing "Scroll Lock" you can use the arrow keys to scroll backward 17 Forget how to spell a word or a variation of a word? Use 26 Easter, use "ncal -o" instead. 30 starting multiuser mode (ie, starting the computer up for normal use) is to 77 If you use the C shell, add the following line to the .cshrc file in your 85 environment to 'K'. You can also use 'M' for Megabytes or 'G' for 87 then use 'df -h'. 102 In order to search for a string in some files, use 'grep' like this: 137 Need to do a search in a manpage or in a file you've sent to a pager? Use [all …]
|
/freebsd/contrib/ncurses/misc/ |
H A D | terminfo.src | 142 # search of the termcap form even if you don't use reorder). Minor sections 174 # -vb Use visible bell (<flash>) rather than <bel>. 179 # Entries with embedded plus signs are designed to be included through use/tc 199 # capabilities for use by applications, <u0>...<u9>. In this file, we use 237 # use /usr/lib/tabset or (more recently) /usr/share/lib/tabset. 259 # of heaviest use, popularity, and interesting features. 287 # Use it as you like. Use it at your own risk. Copy and redistribute freely. 309 gn, use=dumb, 340 # implementing some ANSI subset can use many of them. 345 cuu=\E[%p1%dA, use=ansi+local1, [all …]
|
/freebsd/crypto/heimdal/doc/doxyout/hcrypto/man/man3/ |
H A D | hcrypto_des.3 | 86 \fIks\fP key schedule to use 88 \fIiv\fP initial vector to use 106 \fIks\fP key schedule to use 108 \fIiv\fP initial vector to use 128 \fIks\fP key schedule to use 130 \fIiv\fP initial vector to use 163 \fIks1\fP key schedule to use 165 \fIks2\fP key schedule to use 167 \fIks3\fP key schedule to use 183 \fIks\fP key schedule to use [all …]
|
/freebsd/sys/kern/ |
H A D | syscalls.c | 99 "#91", /* 91 = reserved for local use */ 102 "#94", /* 94 = reserved for local use */ 127 "#119", /* 119 = reserved for local use */ 159 "#151", /* 151 = reserved for local use */ 160 "#152", /* 152 = reserved for local use */ 161 "#153", /* 153 = reserved for local use */ 167 "#159", /* 159 = reserved for local use */ 175 "#167", /* 167 = reserved for local use */ 176 "#168", /* 168 = reserved for local use */ 180 "#172", /* 172 = reserved for local use */ [all …]
|
/freebsd/sys/compat/freebsd32/ |
H A D | freebsd32_syscalls.c | 99 "#91", /* 91 = reserved for local use */ 102 "#94", /* 94 = reserved for local use */ 127 "#119", /* 119 = reserved for local use */ 159 "#151", /* 151 = reserved for local use */ 160 "#152", /* 152 = reserved for local use */ 161 "#153", /* 153 = reserved for local use */ 167 "#159", /* 159 = reserved for local use */ 175 "#167", /* 167 = reserved for local use */ 176 "#168", /* 168 = reserved for local use */ 180 "#172", /* 172 = reserved for local use */ [all …]
|