Home
last modified time | relevance | path

Searched +full:3 +full:- +full:tuples (Results 1 – 25 of 136) sorted by relevance

123456

/freebsd/usr.sbin/dumpcis/
H A Dcis.h6 *-------------------------------------------------------------------------
8 /*-
9 * SPDX-License-Identifier: BSD-3-Clause
21 * 3. The name of the author may not be used to endorse or promote products
38 * Card Information Structure tuples definitions
45 * Tuples are contiguous in attribute memory, and
72 #define CIS_DEVICE_OC 0x1C /* Other conditions info - common memory */
73 #define CIS_DEVICE_OA 0x1D /* Other conditions info - attribute memory */
80 * Data recording format tuples.
98 * 0xF0 - Device type
[all …]
H A Dreadcis.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
14 * 3. The name of the author may not be used to endorse or promote products
31 * Code cleanup, bug-fix and extension
66 {"Link target", CIS_LINKTARGET, 3},
108 * After reading the tuples, decode the relevant ones.
118 * free_cis - delete cis entry.
127 tlist = tl->next; in freecis()
128 while ((tp = tl->tuples) != 0) { in freecis()
129 tl->tuples = tp->next; in freecis()
[all …]
/freebsd/sys/dev/pccard/
H A Dpccard_cis.h2 /*-
3 * SPDX-License-Identifier: BSD-4-Clause
15 * 3. All advertising materials mentioning features or use of this software
34 * CIS Tuples */
36 /* Layer 1 Basic Compatibility Tuples */
59 * the 2.1 docs have 0x02-0x07 as reserved, but the linux drivers list the
60 * follwing tuple code values. I have at least one card (3com 3c562
145 #define PCCARD_TPCE_MS_LENGTH_SIZE_SHIFT 3
159 #define PCCARD_FUNCTION_UNSPEC -1
163 #define PCCARD_FUNCTION_PARALLEL 3
[all …]
/freebsd/sys/contrib/device-tree/Bindings/pinctrl/
H A Dmicrochip,sparx5-sgpio.yaml1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
3 ---
4 $id: http://devicetree.org/schemas/pinctrl/microchip,sparx5-sgpio.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Lars Povlsen <lars.povlsen@microchip.com>
21 pattern: "^gpio@[0-9a-f]+$"
25 - microchip,sparx5-sgpio
26 - mscc,ocelot-sgpio
27 - mscc,luton-sgpio
29 "#address-cells":
[all …]
/freebsd/secure/lib/libcrypto/man/man3/
H A DSSL_CTX_set1_curves.31 .\" -*- mode: troff; coding: utf-8 -*-
57 .IX Title "SSL_CTX_SET1_CURVES 3ossl"
58 .TH SSL_CTX_SET1_CURVES 3ossl 2025-09-30 3.5.4 OpenSSL
69 \&\- EC supported curve functions
109 The supported groups for \fBTLSv1.3\fR include:
142 with, e.g., a post-quantum algorithm, this behavior may allow a network attacker
144 to use \fBSSL_CTX_set1_groups_list()\fR with the ability to specify group tuples.
154 \& $ openssl list \-tls1_2 \-tls\-groups
155 \& $ openssl list \-tls1_3 \-tls\-groups
158 Each group can be either the \fBNIST\fR name (e.g. \fBP\-256\fR), some other commonly
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DSSL_CTX_set1_curves.pod10 - EC supported curve functions
50 The supported groups for B<TLSv1.3> include:
83 with, e.g., a post-quantum algorithm, this behavior may allow a network attacker
85 to use SSL_CTX_set1_groups_list() with the ability to specify group tuples.
94 $ openssl list -tls1_2 -tls-groups
95 $ openssl list -tls1_3 -tls-groups
97 Each group can be either the B<NIST> name (e.g. B<P-256>), some other commonly
100 Group names are case-insensitive in OpenSSL 3.5 and later.
102 L<IANA|https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-8>.
104 The I<list> can be used to define several group tuples of comparable security
[all …]
/freebsd/sys/contrib/device-tree/Bindings/c6x/
H A Ddscr.txt2 ------------------------------------
24 - compatible: must be "ti,c64x+dscr"
25 - reg: register area base and size
34 - ti,dscr-devstat
37 - ti,dscr-silicon-rev
40 - ti,dscr-rmii-resets
41 offset and bitmask of RMII reset field. May have multiple tuples if more
44 - ti,dscr-locked-regs
45 possibly multiple tuples describing registers which are write protected by
49 - ti,dscr-kick-regs
[all …]
/freebsd/sys/powerpc/mpc85xx/
H A Dlbc.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
4 * Copyright (c) 2006-2008, Juniper Networks, Inc.
20 * 3. The name of the author may not be used to endorse or promote products
133 * of 32KB - 4GB. Otherwise error code is returned. Value representing
153 return (0xffff8000 << (n - 15)); in lbc_address_mask()
163 if (sc->sc_range[r].size == 0) in lbc_banks_unmap()
166 pmap_unmapdev((void *)sc->sc_range[r].kva, in lbc_banks_unmap()
167 sc->sc_range[r].size); in lbc_banks_unmap()
168 law_disable(OCP85XX_TGTIF_LBC, sc->sc_range[r].addr, in lbc_banks_unmap()
[all …]
/freebsd/sys/dev/fdt/
H A Dfdt_common.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (c) 2009-2014 The FreeBSD Foundation
72 int err, i, len, tuple_size, tuples; in fdt_get_range_by_busaddr() local
92 return (-1); in fdt_get_range_by_busaddr()
104 tuples = len / (tuple_size * sizeof(cell_t)); in fdt_get_range_by_busaddr()
112 for (i = 0; i < tuples; i++) { in fdt_get_range_by_busaddr()
239 * Depth-search all descendants of 'start' node, and find first with in fdt_depth_search_compatible()
259 /* Find out #address-cells of the superior bus. */ in fdt_parent_addr_cells()
260 if (OF_searchprop(OF_parent(node), "#address-cells", &addr_cells, in fdt_parent_addr_cells()
[all …]
/freebsd/usr.sbin/moused/moused/
H A Dquirks.c24 /* This has the hallmarks of a library to make it re-usable from the tests
25 * and from the list-quirks tool. It doesn't have all of the features from a
48 #include "util-list.h"
96 struct quirk_tuples tuples; member
105 M_PID = bit(3),
128 UDEV_TOUCHPAD = bit(3),
148 uint32_t product[64]; /* zero-terminated */
208 MOUSED_ATTRIBUTE_PRINTF(3, 0)
220 if (ctx->log_type == QLOG_MOUSED_LOGGING) in quirk_log_msg_va()
229 ctx->log_handler(priority, in quirk_log_msg_va()
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Ddif2 #------------------------------------------------------------------------------
6 #------------------------------------------------------------------------------
11 # by DROID x-fmt/368 "VisiCalc Database"
15 # skip DROID x-fmt-41-signature-id-380.dif by looking for key word TUPLES at the beginning
16 >>27 search/128 TUPLES Data Interchange Format
18 #!:mime application/x-dif-spreadsheet Gnumeric
20 #!:mime application/x-dif-document LibreOffice
22 !:mime application/x-dif
24 #!:mime application/vnd.ms-excel
27 # look for double quote 0x22 on 3rd line
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugArangeSet.cpp1 //===- DWARFDebugArangeSet.cpp --------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
33 Offset = -1ULL; in clear()
49 // A 4-byte (32-bit DWARF) or 12-byte (64-bit DWARF) length containing in extract()
54 // 3. debug_info_offset (section offset) in extract()
55 // A 4-byte (32-bit DWARF) or 8-byte (64-bit DWARF) offset into the in extract()
59 // This header is followed by a series of tuples. Each tuple consists of in extract()
63 // tuples is terminated by a 0 for the segment, a 0 for the address and 0 in extract()
65 // the segment selectors are omitted from all tuples, including in extract()
[all …]
/freebsd/usr.sbin/mountd/
H A Dnetgroup.512 .\" 3. Neither the name of the University nor the names of its contributors
42 tuples that are to be given similar network access.
49 .Bd -literal -offset indent
60 or may consist of the string ``-'' to specify ``no valid value''.
66 .Xr getnetgrent 3
90 .Fn innetgr 3
99 .Fn innetgr 3
108 .Bl -bullet -offset indent
122 .Fn innetgr 3
157 .Fn innetgr 3
[all …]
/freebsd/contrib/libxo/doc/
H A Dconf.py2 # -*- coding: utf-8 -*-
5 # sphinx-quickstart on Tue Oct 10 10:18:55 2017.
30 vers_cmd = "grep AC_INIT ../configure.ac | awk '{ print substr($2, 2, length($2) - 3);}'"
31 version = subprocess.check_output(vers_cmd, shell=True).decode("utf-8")
33 # -- General configuration ------------------------------------------------
58 copyright = '2017-2019, Juniper Networks Inc'
92 # -- Options for HTML output ----------------------------------------------
99 # Theme options are theme-specific and customize the look and feel of a theme
129 # -- Options for HTMLHelp output ------------------------------------------
132 htmlhelp_basename = 'libxo-manual'
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugArangeSet.cpp1 //===-- DWARFDebugArangeSet.cpp --------
[all...]
/freebsd/sys/contrib/device-tree/Bindings/misc/
H A Dfsl,qoriq-mc.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/misc/fsl,qoriq-mc.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Frank Li <Frank.Li@nxp.com>
13 The Freescale Management Complex (fsl-mc) is a hardware resource
15 network-oriented packet processing applications. After the fsl-mc
22 For an overview of the DPAA2 architecture and fsl-mc bus see:
26 same hardware "isolation context" and a 10-bit value called an ICID
31 between ICIDs and IOMMUs, so an iommu-map property is used to define
[all …]
H A Dfsl,qoriq-mc.txt3 The Freescale Management Complex (fsl-mc) is a hardware resource
5 network-oriented packet processing applications. After the fsl-mc
12 For an overview of the DPAA2 architecture and fsl-mc bus see:
16 same hardware "isolation context" and a 10-bit value called an ICID
21 between ICIDs and IOMMUs, so an iommu-map property is used to define
28 For arm-smmu binding, see:
32 The msi-map property is used to associate the devices with both the ITS
36 Documentation/devicetree/bindings/interrupt-controller/msi.txt.
39 Documentation/devicetree/bindings/interrupt-controller/arm,gic-v3.yaml.
43 - compatible
[all …]
/freebsd/sys/contrib/openzfs/contrib/pyzfs/docs/source/
H A Dconf.py1 # -*- coding: utf-8 -*-
5 # sphinx-quickstart on Mon Apr 6 23:48:40 2015.
24 # -- General configuration ------------------------------------------------
45 #source_encoding = 'utf-8-sig'
60 version = '0.2.3'
62 release = '0.2.3'
72 # non-false value, then it is used:
85 # If true, '()' will be appended to :func: etc. cross-reference text.
109 # -- Options for HTML output ----------------------------------------------
115 # Theme options are theme-specific and customize the look and feel of a theme
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestBean.java153 (byte)3}, 3); in getAggregation()
176 (byte)3}, 3); in getTuple()
185 Object v = new byte[] {(byte)1, (byte)2, (byte)3}; in getScalarRecord()
186 ScalarRecord r = new ScalarRecord(v, 3); in getScalarRecord()
196 new StackFrame("Frame 3") in getKernelStackRecord()
218 for (i = -62; i <= 62; ++i) { in getLogDistribution()
220 bucket = new Distribution.Bucket(-1, -1, n++); in getLogDistribution()
228 sign = ((i < 0) ? -1L : 1L); in getLogDistribution()
230 nextSign = (((i + 1) < 0) ? -1L : 1L); in getLogDistribution()
233 upperBound = (nextPower == 0 ? -2L : in getLogDistribution()
[all …]
/freebsd/contrib/libcbor/doc/source/
H A Dconf.py1 # -*- coding: utf-8 -*-
4 # sphinx-quickstart on Sun Jun 8 13:27:19 2014.
24 # -- General configuration --
[all...]
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Dmarvell,gicp.txt2 -----------------------
11 - compatible: Must be "marvell,ap806-gicp"
13 - reg: Must be the address and size of the GICP SPI registers
15 - marvell,spi-ranges: tuples of GIC SPI interrupts ranges available
18 - msi-controller: indicates that this is an MSI controller
22 gicp_spi: gicp-spi@3f0040 {
23 compatible = "marvell,ap806-gicp";
25 marvell,spi-ranges = <64 64>, <288 64>;
26 msi-controller;
/freebsd/crypto/openssl/test/
H A Dtls13groupselection_test.c81 { "secp521r1:secp384r1:X25519:prime256v1:X448", /* test 3 */
89 * Test key share selection as function of client-/server-preference
91 * Test (implicitly) that multiple tuples don't influence the client
122 * (E) Multiple tuples tests, client without tuple delimiters
175 "secp521r1:X25519:prime256v1:-X25519:secp384r1/X448",
180 "secp521r1:X25519:prime256v1:-X25519:secp384r1/X448",
185 "X25519:prime256v1/X448:-X25519",
190 "X25519:prime256v1/X448:-X25519",
197 { "*X25519:DEFAULT:-prime256v1:-X448", /* test 18 */
198 "DEFAULT:-X25519:-?X25519MLKEM768",
[all …]
/freebsd/sys/contrib/device-tree/Bindings/leds/
H A Dleds-trigger-pattern.txt3 The pattern is given by a series of tuples, of brightness and duration (ms).
19 It will make the LED go gradually from zero-intensity to max (255) intensity in
24 255-| / \ / \ /
28 0-| / \/ \/
29 +---0----1----2----3----4----5----6------------> time (s)
32 use zero-time lengths (the brightness must be same as the previous tuple's). So
44 255-| +---------+ +---------+
48 0-| -----+ +----+ +----
49 +---0----1----2----3----4----5----6------------> time (s)
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesFormat.h1 //===-- APINotesWriter.h - API Notes Writer ---------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
52 /// The Objective-C context data block, which contains information about
53 /// Objective-C classes and protocols.
56 /// The Objective-C property data block, which maps Objective-C
61 /// The Objective-C property data block, which maps Objective-C
62 /// (class name, selector, is_instance_method) tuples to information
70 /// The Objective-C selector data block, which maps Objective-C
102 MODULE_OPTIONS = 3,
[all …]
/freebsd/sys/contrib/device-tree/Bindings/pci/
H A D83xx-512x-pci.txt6 - reg: should contain two address length tuples
12 interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
13 interrupt-map = <
14 /* IDSEL 0x0E -mini PCI */
20 /* IDSEL 0x0F - PCI slot */
25 interrupt-parent = <&ipic>;
27 bus-range = <0x0 0x0>;
31 clock-frequency = <66666666>;
32 #interrupt-cells = <1>;
33 #size-cells = <2>;
[all …]

123456