Home
last modified time | relevance | path

Searched +full:multi +full:- (Results 1 – 25 of 1064) sorted by relevance

12345678910>>...43

/freebsd-src/contrib/wpa/hostapd/
H A DREADME-MULTI-AP1 hostapd, wpa_supplicant and the Multi-AP Specification
5 support the Multi-AP Specification.
7 Introduction to Multi-AP
8 ------------------------
10 The Wi-Fi Alliance Multi-AP Specification is the technical specification for
11 Wi-Fi CERTIFIED EasyMesh(TM) [1], the Wi-Fi Alliance® certification program for
12 Multi-AP. It defines control protocols between Wi-Fi® access points (APs) to
17 Most of the Multi-AP specification falls outside of the scope of
25 - the WPS onboarding process;
26 - configuring backhaul links.
[all …]
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Host/
H A DEditline.h1 //===-- Editline.h --------
[all...]
/freebsd-src/sys/dev/mlxfw/
H A Dmlxfw_mfa2.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
4 * Copyright (c) 2017-2019 Mellanox Technologies.
37 #include <contrib/xz-embedded/linux/include/linux/xz.h>
46 * +----------------------------------+
48 * +----------------------------------+
50 * | +------------------------------+ | +-----------------+
51 * | | package descriptor tlv +-----> |num_devices=n |
52 * | +------------------------------+ | |num_components=m |
53 * +----------------------------------+ |CB offset |
[all …]
H A Dmlxfw_mfa2_tlv_multi.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
4 * Copyright (c) 2017-2019 Mellanox Technologies.
37 NLA_ALIGN(sizeof(*(tlv)) + be16_to_cpu((tlv)->len))
41 const struct mlxfw_mfa2_tlv_multi *multi) in mlxfw_mfa2_tlv_multi_child() argument
46 return mlxfw_mfa2_tlv_get(mfa2_file, (const u8 *) multi + multi_len); in mlxfw_mfa2_tlv_multi_child()
53 const struct mlxfw_mfa2_tlv_multi *multi; in mlxfw_mfa2_tlv_next() local
59 if (tlv->type == MLXFW_MFA2_TLV_MULTI_PART) { in mlxfw_mfa2_tlv_next()
60 multi = mlxfw_mfa2_tlv_multi_get(mfa2_file, tlv); in mlxfw_mfa2_tlv_next()
61 if (!multi) in mlxfw_mfa2_tlv_next()
[all …]
H A Dmlxfw_mfa2_tlv_multi.h1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
4 * Copyright (c) 2017-2019 Mellanox Technologies.
41 const struct mlxfw_mfa2_tlv_multi *multi);
53 const struct mlxfw_mfa2_tlv_multi *multi,
57 const struct mlxfw_mfa2_tlv_multi *multi,
65 #define mlxfw_mfa2_tlv_multi_foreach(mfa2_file, tlv, idx, multi) \ argument
67 mlxfw_mfa2_tlv_multi_child(mfa2_file, multi), \
68 be16_to_cpu(multi->num_extensions) + 1)
/freebsd-src/contrib/xz/src/liblzma/api/lzma/
H A Dvli.h1 /* SPDX-License-Identifier: 0BSD */
5 * \brief Variable-length integer handling
8 * In the .xz format, most integers are encoded in a variable-length
9 * representation, which is sometimes called little endian base-128 encoding.
14 * non-minimum number of bytes are invalid, thus every integer has exactly
30 * \brief Maximum supported value of a variable-length integer
51 * \brief Variable-length integer type
65 * \brief Validate a variable-length integer
78 * \brief Encode a variable-length integer
80 * This function has two modes: single-call and multi-call. Single-call mode
[all …]
/freebsd-src/sys/contrib/device-tree/Bindings/leds/
H A Dleds-class-multicolor.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/leds/leds-class-multicolor.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Andrew Davis <afd@ti.com>
13 Bindings for multi color LEDs show how to describe current outputs of
14 either integrated multi-color LED elements (like RGB, RGBW, RGBWA-UV
15 etc.) or standalone LEDs, to achieve logically grouped multi-color LED
16 modules. This is achieved by adding multi-led nodes layer to the
24 pattern: "^multi-led(@[0-9a-f])?$"
[all …]
H A Dleds-pwm-multicolor.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/leds/leds-pw
[all...]
/freebsd-src/contrib/netbsd-tests/ipf/
H A Dt_nat_ipf_exec.sh28 # (C)opyright 1993-1996 by Darren Reed.
48 format="-xF $infmt"
50 format="-F $infmt"
56 atf_check -o save:save -x "echo \"$rule\" | \
57 ipftest -R $format -b -r ipf -N - -i in $args"
59 echo "-------------------------------" >>out
62 multi)
63 atf_check -o save:out ipftest -R $args \
64 $format -b -r ipf -N nat -i in
65 echo "-------------------------------" >>out
[all …]
/freebsd-src/sys/contrib/device-tree/Bindings/
H A Dtrivial-devices.yaml1 # SPDX-License-Identifier: GPL-2.0
3 ---
4 $id: http://devicetree.org/schemas/trivial-devices.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Rob Herring <robh@kernel.org>
27 spi-ma
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DMarkup.cpp1 //===- lib/DebugInfo/Symbolize/Markup.cpp ------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
25 // "\033[30m" -- "\033[37m"
26 static const char SGRSyntaxStr[] = "\033\\[([0-1]|3[0-7])m";
32 return Str.take_front(Pos - Str.begin()); in takeTo()
35 Str = Str.drop_front(Pos - Str.begin()); in advanceTo()
42 this->Line = Line; in parseLine()
63 "At most one multi-line element can be finished at a time."); in nextNode()
[all …]
/freebsd-src/sbin/init/
H A Dinit.851 and if this succeeds, begins multi-user operation.
54 commences single-user operation by giving
55 the super-user a shell on the console.
60 prevent the system from going multi-user and to instead execute
61 a single-user shell without starting the normal daemons.
63 later be made to go to multi-user by exiting the
64 single-use
[all...]
/freebsd-src/sys/contrib/xz-embedded/linux/include/linux/
H A Dxz.h5 * Igor Pavlov <https://7-zip.org/>
37 * enum xz_mode - Operation mode
39 * @XZ_SINGLE: Single-call mode. This uses less RAM than
40 * multi-call modes, because the LZMA2
45 * @XZ_PREALLOC: Multi-call mode with preallocated LZMA2
49 * @XZ_DYNALLOC: Multi-call mode. The LZMA2 dictionary is
68 * enum xz_ret - Return codes
71 * return code is possible only in multi-call mode
75 * is still possible in multi-call mode by simply
90 * only in multi-call mode (XZ_PREALLOC or
[all …]
/freebsd-src/share/man/man4/
H A Dsmp.429 .Nd description of the FreeBSD Symmetric Multi-Processor kernel
35 kernel implements symmetric multi-processor support.
43 the read-only sysctl variable
46 The number of online threads per CPU core is available in the read-only sysctl
50 read-only sysctl variable
54 allows specific CPUs on a multi-processor system to be disabled.
70 algorithms to make better use of modern multi-core CPUs.
77 by being cores in a single multi-core processor.
79 nesting level of the CPU group and "cache-level", corresponding to the
86 The contents (CDATA) of the <cpu> tag is the comma-delimited list
[all …]
H A Dng_ppp.41 .\" Copyright (c) 1996-1999 Whistle Communications, Inc.
19 .\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
51 user-land daemon).
54 user-land implementations.
56 multi-link PPP, Van Jacobson compression, PPP compression, PPP
58 A single PPP node corresponds to one PPP multi-link bundle.
71 Typically this node is connected to a user-land daemon via a
94 These device-independent hooks transmit and receive full PPP
96 information fields, but no checksum or other link-specific fields.
187 Only bundle-level compression and encryption is directly supported;
[all …]
H A Dhmt.41 .\" Copyright (c) 2014-2020 Vladimir Kondratyev <wulf@FreeBSD.org>
30 .Nd MS Windows 7/8/10 - compatible HID multi-touch device driver
34 .Bd -ragged -offset indent
45 .Bd -literal -offset indent
51 driver provides support for the MS Windows 7/8/10 - compatible HID
52 multi-touch devices found in many laptops.
54 To get multi-touch device working in
55 .Xr X 7 Pq Pa ports/x11/xorg-docs ,
57 .Pa ports/x11-drivers/xf86-input-evdev .
60 creates a pseudo-device file,
[all …]
H A Dwmt.41 .\" Copyright (c) 2014-2017 Vladimir Kondratyev <wulf@FreeBSD.org>
30 .Nd MS Windows 7/8/10 - compatible USB HID multi-touch device driver
34 .Bd -ragged -offset indent
44 .Bd -literal -offset indent
50 driver provides support for the MS Windows 7/8/10 - compatible USB HID
51 multi-touch devices found in many laptops.
53 To get multi-touch device working in
54 .Xr X 7 Pq Pa ports/x11/xorg-docs ,
56 .Pa ports/x11-drivers/xf86-input-evdev .
59 creates a pseudo-device file,
[all …]
/freebsd-src/share/man/man9/
H A Dbuf_ring.940 .Nd multi-producer, {single, multi}-consumer lock-less ring buffer
65 functions provide a lock-less multi-producer and lock-less multi-consumer as
66 well as single-consumer ring buffer.
90 function is a multi-consumer safe way of dequeueing elements from a buf_ring.
94 function is a single-consumer interface to dequeue elements - requiring
/freebsd-src/sys/dev/sound/pci/
H A Denvy24ht.h1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
30 /* -------------------------------------------------------------------- */
37 #define ENVY24HT_PCIR_MT 0x14 /* Multi-Track I/O Base Address */
45 #define ENVY24HT_CCS_IMASK_PMT 0x10 /* Professional Multi-track */
65 #define ENVY24HT_CCSM_SCFG_MPU 0x20 /* 0(not implemented)/1(1) MPU-401 UART */
66 #define ENVY24HT_CCSM_SCFG_ADC 0x0c /* 1-2 stereo ADC connected, S/PDIF receiver connected */
67 #define ENVY24HT_CCSM_SCFG_DAC 0x03 /* 1-4 stereo DAC connected */
69 #define ENVY24HT_CCS_ACL 0x05 /* AC-Link Configuration Register */
70 #define ENVY24HT_CCSM_ACL_MTC 0x80 /* Multi-track converter type: 0:AC'97 1:I2S */
[all …]
/freebsd-src/crypto/openssl/util/
H A Dcheck-format.pl3 # Copyright 2020-2024 The OpenSSL Project Authors. All Rights Reserved.
4 # Copyright Siemens AG 2019-2022
11 # check-format.pl
12 # - check formatting of C source according to OpenSSL coding style
15 # check-format.pl [-l|--sloppy-len] [-
[all...]
/freebsd-src/sys/contrib/device-tree/src/arm/marvell/
H A Darmada-385-turris-omnia.dts1 // SPDX-License-Identifier: (GPL-2.0 OR MIT)
5 * Copyright (C) 2016 Uwe Kleine-König <uwe@kleine-koenig.org>
8 * Schematic available at https://www.turris.cz/doc/_media/rtrom01-schema.pdf
11 /dts-v1/;
13 #include <dt-bindings/gpio/gpio.h>
14 #include <dt-bindings/input/input.h>
15 #include <dt-binding
[all...]
/freebsd-src/sys/contrib/device-tree/src/arm/aspeed/
H A Daspeed-bmc-facebook-yosemite4.dts1 // SPDX-License-Identifier: GPL-2.0-or-later
4 /dts-v1/;
5 #include "aspeed-g6.dtsi"
6 #include <dt-bindings/gpio/aspeed-gpio.h>
7 #include <dt-binding
[all...]
H A Daspeed-bmc-facebook-yosemitev2.dts1 // SPDX-License-Identifier: GPL-2.0-or-later
3 /dts-v1/;
4 #include "aspeed-g5.dtsi"
5 #include <dt-bindings/i2c/i2c.h>
9 compatible = "facebook,yosemitev2-bmc", "aspeed,ast2500";
14 stdout-pat
[all...]
/freebsd-src/sys/dev/qlnx/qlnxe/
H A Dreg_addr.h2 * Copyright (c) 2017-2018 Cavium, Inc.
32 … 0x001d00UL //Access:R DataWidth:0x2 // Multi Field Register.
37 … 0x001d04UL //Access:RW DataWidth:0x2 // Multi Field Register.
42 … 0x001d08UL //Access:WR DataWidth:0x2 // Multi Field Register.
47 … 0x001d0cUL //Access:RC DataWidth:0x2 // Multi Field Register.
78- For ending "endless completion". 0 - When receiving a completion timeout while receiving a compl…
79 … DataWidth:0x4 // 0 - TXCPL sync fifo pop underflow 1 - TXR sync fifo pop underflow 2 - TXW hea…
80 …s:R DataWidth:0x6 // 0 - RX target read and config sync fifo push overflow 1 - RX header syn…
81 …ataWidth:0x14 // 4:0 - TXCPL sync fifo pop status 9:5 - TXR sync fifo pop status 14:10 - TXW hea…
88 …ffff<<0) // Vendor ID. PCI-SIG assigned Manufacturer Identifier. Note: The access attributes of …
[all …]
/freebsd-src/crypto/openssl/doc/man5/
H A Dx509v3_config.pod5 x509v3_config - X509 V3 certificate extension configuration format
11 and CLI options such as B<-addext>.
30 type-value pairing where the type and value are separated by a colon.
34 multi-valued
43 Multi-valued extensions have a short form and a long form. The short form
44 is a comma-separated list of names and values:
59 If an extension is multi-value and a field value must contain a comma the long
109 This is a multi-valued extension which indicates whether a certificate is
123 parameter set to B<TRUE>. An end-user certificate must either have B<CA:FALSE>
127 any sub-CA's, and can only sign end-entity certificates.
[all …]

12345678910>>...43