/freebsd-src/contrib/expat/doc/ |
H A D | ok.min.css | 2 …-height:1.15}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:conten… selector
|
/freebsd-src/crypto/openssl/test/recipes/ |
H A D | 20-test_mac.t | 2 # Copyright 2018-2021 The OpenSSL Project Authors. All Rights Reserved. 20 …{ cmd => [qw{openssl mac -digest SHA1 -macopt hexkey:000102030405060708090A0B0C0D0E0F1011121314151… 21 type => 'HMAC', 22 input => unpack("H*", "Sample message for keylen=blocklen"), 25 …{ cmd => [qw{openssl mac -macopt digest:SHA1 -macopt hexkey:000102030405060708090A0B0C0D0E0F101112… 26 type => 'HMAC', 27 input => unpack("H*", "Sample message for keylen=blocklen"), 29 desc => 'HMAC SHA1 via -macopt' }, 30 …{ cmd => [qw{openssl mac -cipher AES-256-GCM -macopt hexkey:4C973DBC7364621674F8B5B89E5C15511FCED9… 31 type => 'GMAC', [all …]
|
/freebsd-src/contrib/llvm-project/clang/include/clang/Driver/ |
H A D | Types.h | 1 //===--- Types.h - Input & Temporary Driver Types ---------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 25 #define TYPE(NAME, ID, PP_TYPE, TEMP_SUFFIX, ...) TY_##ID, macro 27 #undef TYPE 31 /// getTypeName - Return the name of the type for \p Id. 34 /// getPreprocessedType - Get the ID of the type for this input when 35 /// it has been preprocessed, or INVALID if this input is not 39 /// getPrecompiledType - Get the ID of the type for this input when 40 /// it has been precompiled, or INVALID if this input is not [all …]
|
H A D | Action.h | 1 //===- Action.h - Abstract compilation steps --------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 35 /// Action - Represent an abstract compilation step to perform. 38 /// it is a job to transform an input using some tool. 93 // The device offloading tool chains - one bit for each programming model. 104 /// The output type of this action. 105 types::ID Type; variable 120 /// The host offloading kind - a combination of kinds encoded in a mask. 134 Action(ActionClass Kind, types::ID Type) : Action(Kind, ActionList(), Type) {} in Action() argument [all …]
|
/freebsd-src/sys/contrib/device-tree/Bindings/iio/addac/ |
H A D | adi,ad74115.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Cosmin Tanislav <cosmin.tanislav@analog.com> 13 The AD74115H is a single-channel software configurable input/output 15 analog output, analog input, digital output, digital input, resistance 17 chip solution with an SPI interface. The device features a 16-bit ADC and a 18 14-bit DAC. 25 - adi,ad74115h 30 spi-max-frequency: [all …]
|
/freebsd-src/contrib/llvm-project/clang/lib/Driver/ |
H A D | Action.cpp | 1 //===- Action.cpp - Abstract compilation steps ----------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 22 case InputClass: return "input"; in getClassName() 23 case BindArchClass: return "bind-arch"; in getClassName() 29 return "api-extractor"; in getClassName() 35 case IfsMergeJobClass: return "interface-stub-merger"; in getClassName() 39 case VerifyDebugInfoJobClass: return "verify-debug-info"; in getClassName() 40 case VerifyPCHJobClass: return "verify-pch"; in getClassName() 42 return "clang-offload-bundler"; in getClassName() [all …]
|
/freebsd-src/sys/contrib/device-tree/Bindings/pinctrl/ |
H A D | pincfg-node.yaml | 1 # SPDX-License-Identifier: GPL-2.0-only 3 --- 4 $id: http://devicetree.org/schemas/pinctrl/pincfg-node.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Linu [all...] |
H A D | qcom,pmic-mpp.txt | 1 Qualcomm PMIC Multi-Purpose Pin (MPP) block 6 - compatible: 8 Value type: <string> 10 "qcom,pm8018-mpp", 11 "qcom,pm8019-mpp", 12 "qcom,pm8038-mpp", 13 "qcom,pm8058-mpp", 14 "qcom,pm8821-mpp", 15 "qcom,pm8841-mpp", 16 "qcom,pm8916-mpp", [all …]
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | IntrinsicsRISCV.td | 1 //===- IntrinsicsRISCV.td - Defines RISCV intrinsics -------*- tablege [all...] |
/freebsd-src/contrib/unbound/sldns/ |
H A D | str2wire.h | 2 * str2wire.h - read txt presentation of RRs 4 * (c) NLnet Labs, 2005-2006 33 /* SVCB keys currently defined in draft-ietf-dnsop-svcb-https */ 49 * To convert class and type to string see 59 * @param len: length of the buffer on input, length of the result on output. 69 * @param len: length of the buffer on input, length of the result on output. 89 * the wire-dname(uncompressed), type, class, ttl, rdatalen, rdata. 93 * @param len: on input the length of the buffer, on output the amount of 95 * @param dname_len: if non-NULL, filled with the dname length as result. 96 * Because after the dname you find the type, class, ttl, rdatalen, rdata. [all …]
|
/freebsd-src/contrib/llvm-project/lldb/bindings/lua/ |
H A D | lua-typemaps.swig | 5 //===----------------------------------------------------------------------===// 11 %define LLDB_NUMBER_TYPEMAP(TYPE) 14 %typemap(in,checkfn="lua_isinteger") TYPE 15 %{ $1 = ($type)lua_tointeger(L, $input); %} 16 %typemap(in,checkfn="lua_isinteger") const TYPE&($basetype temp) 17 %{ temp=($basetype)lua_tointeger(L,$input); $1=&temp;%} 18 %typemap(out) TYPE 20 %typemap(out) const TYPE& 24 %typemap(in,checkfn="lua_isinteger") TYPE *INPUT($*ltype temp), TYPE &INPUT($*ltype temp) 25 %{ temp = ($*ltype)lua_tointeger(L,$input); [all …]
|
/freebsd-src/sys/contrib/device-tree/src/arm/allwinner/ |
H A D | sun4i-a10-inet9f-rev03.dts | 4 * This file is dual-licensed: you can use it either under the terms 43 /dts-v1/; 44 #include "sun4i-a10.dtsi" 45 #include "sunxi-common-regulators.dtsi" 46 #include <dt-bindings/gpio/gpio.h> 47 #include <dt-bindings/input/input.h> 48 #include <dt-bindings/interrupt-controller/irq.h> 51 model = "iNet-9F Rev 03"; 52 compatible = "inet-tek,inet9f-rev03", "allwinner,sun4i-a10"; 59 stdout-path = "serial0:115200n8"; [all …]
|
/freebsd-src/contrib/llvm-project/lldb/source/Utility/ |
H A D | XcodeSDK.cpp | 1 //===-- XcodeSDK.cpp ------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 #include "lldb/lldb-types.h" 21 static llvm::StringRef GetName(XcodeSDK::Type type) { in GetName() argument 22 switch (type) { in GetName() 48 llvm_unreachable("Unhandled sdk type!"); in GetName() 51 XcodeSDK::XcodeSDK(XcodeSDK::Info info) : m_name(GetName(info.type).str()) { in XcodeSDK() 67 static XcodeSDK::Type ParseSDKName(llvm::StringRef &name) { in ParseSDKName() 90 static_assert(XcodeSDK::Linux == XcodeSDK::numSDKTypes - 1, in ParseSDKName() [all …]
|
/freebsd-src/crypto/heimdal/appl/telnet/libtelnet/ |
H A D | encrypt.c | 1 /*- 94 #define typemask(x) ((x) > 0 ? 1 << ((x)-1) : 0) 141 findencryption(int type) in findencryption() argument 145 if (!(I_SUPPORT_ENCRYPT & remote_supports_decrypt & typemask(type))) in findencryption() 147 while (ep->type && ep->type != type) in findencryption() 149 return(ep->type ? ep : 0); in findencryption() 153 finddecryption(int type) in finddecryption() argument 157 if (!(I_SUPPORT_DECRYPT & remote_supports_encrypt & typemask(type))) in finddecryption() 159 while (ep->type && ep->type != type) in finddecryption() 161 return(ep->type ? ep : 0); in finddecryption() [all …]
|
/freebsd-src/contrib/kyua/engine/ |
H A D | atf_list_test.cpp | 34 #include <atf-c++.hpp> 76 properties["X-foo"] = "value1"; in ATF_TEST_CASE_BODY() 77 properties["X-bar"] = "value2"; in ATF_TEST_CASE_BODY() 78 properties["X-baz-www"] = "value3"; in ATF_TEST_CASE_BODY() 87 .add_custom("baz-www", "value3") in ATF_TEST_CASE_BODY() 121 std::istringstream input(text); in ATF_TEST_CASE_BODY() 122 ATF_REQUIRE_THROW_RE(engine::format_error, "expecting Content-Type", in ATF_TEST_CASE_BODY() 123 engine::parse_atf_list(input)); 119 std::istringstream input(text); ATF_TEST_CASE_BODY() local 131 std::istringstream input(text); ATF_TEST_CASE_BODY() local 139 std::istringstream input(text); ATF_TEST_CASE_BODY() local 147 std::istringstream input(text); ATF_TEST_CASE_BODY() local 159 std::istringstream input(text); ATF_TEST_CASE_BODY() local 172 std::istringstream input(text); ATF_TEST_CASE_BODY() local 190 std::istringstream input(text); ATF_TEST_CASE_BODY() local 210 std::istringstream input(text); ATF_TEST_CASE_BODY() local 227 std::istringstream input(text); ATF_TEST_CASE_BODY() local 247 std::istringstream input(text); ATF_TEST_CASE_BODY() local [all...] |
/freebsd-src/contrib/bsnmp/snmpd/ |
H A D | trans_lsock.c | 83 (void)remove(port->name); in lsock_remove() 85 return (-1); in lsock_remove() 113 int type) in lsock_open_port() argument 125 switch (type) { in lsock_open_port() 159 if ((port->name = malloc(namelen + 1)) == NULL) { in lsock_open_port() 165 strncpy(port->name, name, namelen); in lsock_open_port() 166 port->name[namelen] = '\0'; in lsock_open_port() 168 port->type = type; in lsock_open_port() 169 port->str_sock = -1; in lsock_open_port() 170 LIST_INIT(&port->peers); in lsock_open_port() [all …]
|
/freebsd-src/sys/contrib/dpdk_rte_lpm/ |
H A D | rte_common.h | 1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2010-2019 Intel Corporation 11 * Generic, commonly-used macro and inline function definitions 107 * Check format string and its arguments at compile-time. 109 * GCC on Windows assumes MS-specific format string by default, 110 * even if the underlying stdio implementation is ANSI-compliant, 207 * add a byte-value offset to a pointer 212 * subtract a byte-value offset from a pointer 214 #define RTE_PTR_SUB(ptr, x) ((void*)((uintptr_t)ptr - (x))) 221 #define RTE_PTR_DIFF(ptr1, ptr2) ((uintptr_t)(ptr1) - (uintptr_t)(ptr2)) [all …]
|
/freebsd-src/crypto/openssl/doc/man3/ |
H A D | OSSL_DECODER_CTX.pod | 30 - Decoder context routines 87 figure out what the input data is and to attempt to unpack it into one of 89 the output from one can become the input for another. This allows having 93 The chains may be limited by specifying an input type, which is considered a 96 added those that take the specified input type, and functions like 98 the decoder implementations that take that input type. For example, if the 99 input typ [all...] |
/freebsd-src/contrib/telnet/libtelnet/ |
H A D | encrypt.c | 1 /*- 75 int EncryptType(char *type, char *mode); 93 #define typemask(x) ((x) > 0 ? 1 << ((x)-1) : 0) 141 findencryption(int type) in findencryption() argument 145 if (!(I_SUPPORT_ENCRYPT & remote_supports_decrypt & (unsigned)typemask(type))) in findencryption() 147 while (ep->type && ep->type != type) in findencryption() 149 return(ep->type ? ep : 0); in findencryption() 153 finddecryption(int type) in finddecryption() argument 157 if (!(I_SUPPORT_DECRYPT & remote_supports_encrypt & (unsigned)typemask(type))) in finddecryption() 159 while (ep->type && ep->type != type) in finddecryption() [all …]
|
/freebsd-src/contrib/kyua/utils/text/ |
H A D | operations.ipp | 53 iter != --strings.end(); ++iter) 57 output << *(--strings.end()); 62 /// Converts a string to a native type. 64 /// \tparam Type The type to convert the string to. An input stream operator 65 /// must exist to extract such a type from an std::istream. 68 /// \return The converted string, if the input string was valid. 70 /// \throw std::value_error If the input string does not represent a valid 71 /// target type. This exception does not include any details, so the caller 72 /// must take care to re-raise it with appropriate details. 73 template< typename Type > [all …]
|
/freebsd-src/secure/lib/libcrypto/man/man3/ |
H A D | OSSL_DECODER_CTX.3 | 18 .\" Set up some character translations and predefined strings. \*(-- will 24 .tr \(*W- 25 .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' 27 . ds -- \(* [all...] |
/freebsd-src/sys/contrib/device-tree/Bindings/regulator/ |
H A D | qcom,spmi-regulator.txt | 3 - compatible: 5 Value type: <string> 7 "qcom,pm8004-regulators" 8 "qcom,pm8005-regulators" 9 "qcom,pm8226-regulators" 10 "qcom,pm8841-regulators" 11 "qcom,pm8916-regulators" 12 "qcom,pm8941-regulators" 13 "qcom,pm8950-regulators" 14 "qcom,pm8994-regulators" [all …]
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Compression.h | 1 //===-- llvm/Support/Compression.h ---Compression----- 81 formatFor(DebugCompressionType Type) formatFor() argument [all...] |
/freebsd-src/usr.sbin/bsdinstall/partedit/ |
H A D | scripted.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 46 LIST_FOREACH(classp, &mesh->lg_class, lg_class) { in provider_for_name() 47 LIST_FOREACH(gp, &classp->lg_geom, lg_geom) { in provider_for_name() 48 if (LIST_EMPTY(&gp->lg_provider)) in provider_for_name() 51 LIST_FOREACH(pp, &gp->lg_provider, lg_provider) in provider_for_name() 52 if (strcmp(pp->lg_name, name) == 0) in provider_for_name() 67 char *partition, *ap, *size = NULL, *type = NULL, *mount = NULL; in part_config() local 78 return (-1); in part_config() 82 return (-1); in part_config() [all …]
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
H A D | MsgPackReader.h | 1 //===- MsgPackReader.h - Simple MsgPack reader ------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 17 /// StringRef input = GetInput(); 18 /// msgpack::Reader MPReader(input); 26 /// break; // Reached end of input 28 /// case msgpack::Type::Int: 36 //===----------------------------------------------------------------------===// 53 enum class Type : uint8_t { enum 67 /// Extension types are composed of a user-defined type ID and an uninterpreted [all …]
|