Home
last modified time | relevance | path

Searched +full:string +full:- +full:array +full:- +full:property (Results 1 – 25 of 426) sorted by relevance

12345678910>>...18

/freebsd/sys/contrib/device-tree/Bindings/
H A Dexample-schema.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
4 ---
5 # All the top-level keys are standard json-schema keywords except for
10 $id: http://devicetree.org/schemas/example-schema.yaml#
11 # $schema is the meta-schema this schema should be validated with.
12 $schema: http://devicetree.org/meta-schemas/core.yaml#
17 - Rob Herring <robh@kernel.org>
20 A more detailed multi-line description of the binding.
41 # isn't another way to express a constraint of the last string value.
44 - items:
[all …]
/freebsd/sys/contrib/device-tree/Bindings/powerpc/fsl/
H A Ddcsr.txt21 - compatible
23 Value type: <string>
24 Definition: Must include "fsl,dcsr" and "simple-bus".
25 The DCSR space exists in the memory-mapped bus.
27 - #address-cells
30 Definition: A standard property. Defines the number of cells
33 - #size-cells
36 Definition: A standard property
[all...]
H A Dsrio-rmu.txt5 node is composed of three types of sub-nodes ("fsl-srio-msg-unit",
6 "fsl-srio-dbell-unit" and "fsl-srio-port-write-unit").
10 - compatible
12 Value type: <string>
13 Definition: Must include "fsl,srio-rmu-vX.Y", "fsl,srio-rmu".
18 - reg
20 Value type: <prop-encoded-array>
21 Definition: A standard property. Specifies the physical address and
25 - fsl,liodn
26 Usage: optional-but-recommended (for devices with PAMU)
[all …]
H A Dpamu.txt5 The PAMU is an I/O MMU that provides device-to-memory access control and
10 - compatible : <string>
11 First entry is a version-specific string, such as
12 "fsl,pamu-v1.0". The second is "fsl,pamu".
13 - ranges : <prop-encoded-array>
14 A standard property. Utilized to describe the memory mapped
20 - interrupts : <prop-encoded-array>
25 - #address-cells: <u32>
26 A standard property.
27 - #size-cells : <u32>
[all …]
H A Dsrio.txt5 - compatible
7 Value type: <string>
11 Optionally, a compatible string of "fsl,srio-vX.Y" where X is Major
15 - reg
17 Value type: <prop-encoded-array>
18 Definition: A standard property. Specifies the physical address and
22 - interrupts
24 Value type: <prop_encoded-array>
26 value of the interrupts property consists of one interrupt
31 property. (Typically shared with port-write).
[all …]
/freebsd/sys/contrib/device-tree/Bindings/crypto/
H A Dfsl-sec4.txt3 Copyright (C) 2008-2011 Freescale Semiconductor Inc.
6 -Overview
7 -SEC 4 Node
8 -Job Ring Node
9 -Run Time Integrity Check (RTIC) Node
10 -Run Time Integrity Check (RTIC) Memory Node
11 -Secure Non-Volatile Storage (SNVS) Node
12 -Secure Non-Volatile Storage (SNVS) Low Power (LP) RTC Node
13 -Full Example
29 HW interface between QM & SEC 4 and also BM & SEC 4, on DPAA-enabled parts
[all …]
H A Dfsl-sec6.txt4 -SEC 6 Node
5 -Job Ring Node
6 -Full Example
20 - compatible
22 Value type: <string>
23 Definition: Must include "fsl,sec-v6.0".
25 - fsl,sec-era
28 Definition: A standard property. Define the 'ERA' of the SEC
31 - #address-cells
34 Definition: A standard property. Defines the number of cells
[all …]
/freebsd/share/man/man9/
H A DOF_getprop.986 A name is a human-readable string from 1 to 31 characters long.
87 A value is an array of zero or more bytes that encode certain
90 Properties can encode byte arrays, text strings, unsigned 32-bit
93 Property with a zero-length value usually represents boolean
95 If the property is present, it signifies true, otherwise false.
97 A byte array is encoded as a sequence of bytes and represents
100 A text string is a sequence of n printable characters.
101 It is encoded as a byte array of length n + 1 bytes with
104 Unsigned 32-bit values, also sometimes called cells, are
105 encoded as a sequence of 4 bytes in big-endian order.
[all …]
/freebsd/usr.sbin/ctld/
H A Duclparse.cc1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
39 #include <string.h>
64 if (!user || user->type != UCL_STRING) { in uclparse_chap()
65 log_warnx("chap section in auth-group \"%s\" is missing " in uclparse_chap()
66 "\"user\" string key", ag_name); in uclparse_chap()
71 if (!secret || secret->type != UCL_STRING) { in uclparse_chap()
72 log_warnx("chap section in auth-group \"%s\" is missing " in uclparse_chap()
73 "\"secret\" string key", ag_name); in uclparse_chap()
89 if (!user || user->type != UCL_STRING) { in uclparse_chap_mutual()
[all …]
/freebsd/sys/dev/bhnd/tools/
H A Dnvram_map_gen.awk1 #!/usr/bin/awk -f
3 #-
4 # Copyright (c) 2015-2016 Landon Fuller <landon@landonf.org>
39 print "usage: bhnd_nvram_map.awk <input map> [-hd] [-o output file]"
74 if (ARGV[_i] == "--debug") {
76 } else if (ARGV[_i] == "-d" && OUT_T == null) {
78 } else if (ARGV[_i] == "-h" && OUT_T == null) {
80 } else if (ARGV[_i] == "-v") {
82 } else if (ARGV[_i] == "-o") {
88 } else if (ARGV[_i] == "--") {
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DPropertiesBase.td1 //==--- PropertiesBase.td - Baseline definitions for AST properties -------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 /// The type of the property.
12 class PropertyType<string typeName = ""> {
14 string CXXName = !if(!ne(typeName, ""), typeName, NAME);
24 string PackOptional = "";
28 string UnpackOptional = "";
35 /// Property types that correspond to specific C++ enums.
36 class EnumPropertyType<string typeName = ""> : PropertyType<typeName> {}
[all …]
/freebsd/contrib/googletest/docs/reference/
H A Dmatchers.md7 | :----------------------------------- | :------------------------------------ |
14 results. For example, `EXPECT_THAT(some_bool, "some string")` will compile and
21 Built-in matchers (where `argument` is the function argument, e.g.
30 :-------------------------- | :-----------------------------------------------
37 | :--------------------- | :-------------------------------------------------- |
47 | `NotNull()` | `argument` is a non-null pointer (raw or smart). |
65 ## Floating-Point Matchers {#FpMatchers}
68 | :------------------------------- | :--------------------------------- |
73 | `IsNan()` | `argument` is any floating-point type with a NaN value. |
75 The above matchers use ULP-based comparison (the same as used in googletest).
[all …]
/freebsd/sys/contrib/openzfs/man/man8/
H A Dzfs-program.81 .\" SPDX-License-Identifier: CDDL-1.0
22 .Nm zfs-program
28 .Op Fl t Ar instruction-limit
29 .Op Fl m Ar memory-limit
54 .Bl -tag -width "-t"
55 .It Fl j , -json
57 When this flag is specified and standard output is empty -
61 Executes a read-only channel program, which runs faster.
62 The program cannot change on-disk state by calling functions from the
68 .It Fl t Ar instruction-limit
[all …]
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTargetProperties.td4 def InjectLocalVars : Property<"inject-local-vars", "Boolean">,
10 def DefaultArch: Property<"default-arch", "Arch">,
14 def MoveToNearestCode: Property<"move-to-nearest-code", "Boolean">,
17 def Language: Property<"language", "Language">,
20 def ExprPrefix: Property<"expr-prefix", "FileSpec">,
23 def ExprErrorLimit: Property<"expr-error-limit", "UInt64">,
27 def ExprAllocAddress: Property<"expr-alloc-address", "UInt64">,
30 def ExprAllocSize: Property<"expr-alloc-size", "UInt64">,
33 def ExprAllocAlign: Property<"expr-alloc-align", "UInt64">,
36 def PreferDynamic: Property<"prefer-dynamic-value", "Enum">,
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DTensorSpec.cpp1 //===- TensorSpec.cpp - tensor type abstraction ---------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
24 #include <array>
39 static std::array<std::string, static_cast<size_t>(TensorType::Total)> in SUPPORTED_TENSOR_TYPES()
62 TensorSpec::TensorSpec(const std::string &Name, int Port, TensorType Type, in TensorSpec()
72 [&](const llvm::Twine &Message) -> std::optional<TensorSpec> { in getTensorSpecFromJSON()
73 std::string S; in getTensorSpecFromJSON()
85 std::string TensorName; in getTensorSpecFromJSON()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/connector/
H A Dusb-connector.yaml1 # SPDX-License-Identifier: GPL-2.0-only
3 ---
4 $id: http://devicetree.org/schemas/connector/usb-connector.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Ro
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DJSON.h1 //===--- JSON.h - JSON values, parsing and serialization -------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===---------------------------------------------------------------------===//
14 /// - classes which hold dynamically-typed parsed JSON structures
16 /// See json::Value, and the related types json::Object and json::Array.
18 /// - functions to parse JSON text into Values, and to serialize Values to text.
21 /// - a convention and helpers for mapping between json::Value and user-defined
24 /// - an output API json::OStream which can emit JSON without materializing
33 /// - YAML is also text-based, and more human-readable than JSON. It's a more
40 /// - LLVM bitstream is a space- and CPU- efficient binary format. Typically it
[all …]
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBTargetExtensions.i53 if -num_modules <= key < num_modules:
57 if key.find('/') == -1:
67 # See if the string is a UUID
128 if -count <= key < count:
162 if -count <= key < count:
178 …modules = property(get_modules_array, None, doc='''A read only property that returns a list() of l…
179property(get_modules_access_object, None, doc=r'''A read only property that returns an object that…
180 …process = property(GetProcess, None, doc='''A read only property that returns an lldb object that …
181 …executable = property(GetExecutable, None, doc='''A read only property that returns an lldb object…
182 …debugger = property(GetDebugger, None, doc='''A read only property that returns an lldb object tha…
[all …]
/freebsd/crypto/krb5/doc/html/_static/
H A Dunderscore.js12 …// (c) 2009-2021 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Report…
27 var ArrayProto = Array.prototype, ObjProto = Object.prototype;
42 var nativeIsArray = Array.isArray,
57 var MAX_ARRAY_INDEX = Math.pow(2, 53) - 1;
62 // argument length (or an explicit `startIndex`), into an array that becomes
65 startIndex = startIndex == null ? func.length - 1 : +startIndex;
67 var length = Math.max(arguments.length - startIndex, 0),
68 rest = Array(length),
78 var args = Array(startIndex + 1);
113 // Internal function for creating a `toString`-based type tester.
[all …]
/freebsd/sys/contrib/device-tree/Bindings/leds/backlight/
H A Dqcom-wled.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/leds/backlight/qcom-wled.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Bjorn Andersson <andersson@kernel.org>
11 - Kiran Gunda <quic_kgunda@quicinc.com>
21 - qcom,pm8941-wled
22 - qcom,pmi8950-wled
23 - qcom,pmi8994-wled
24 - qcom,pmi8998-wled
[all …]
/freebsd/sys/contrib/device-tree/Bindings/pinctrl/
H A Dpinmux-node.yaml1 # SPDX-License-Identifier: GPL-2.0-only
3 ---
4 $id: http://devicetree.org/schemas/pinctrl/pinmux-node.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Linus Walleij <linus.walleij@linaro.org>
50 For cases like this, the pin controller driver may use pinctrl-pin-array helper
55 #pinctrl-cells = <2>;
58 pinctrl-pin-array = <
67 Above #pinctrl-cells specifies the number of value cells in addition to the
68 index of the registers. This is similar to the interrupts-extended binding with
[all …]
/freebsd/sys/contrib/device-tree/Bindings/leds/
H A Dcommon.yaml1 # SPDX-License-Identifier: GPL-2.0-only
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Jacek Anaszewski <jacek.anaszewski@gmail.com>
11 - Pavel Machek <pavel@ucw.cz>
25 led-sources:
30 $ref: /schemas/types.yaml#/definitions/uint32-array
35 from the header include/dt-bindings/leds/common.h. If there is no
37 $ref: /schemas/types.yaml#/definitions/string
42 the header include/dt-bindings/leds/common.h. If there is no matching
[all …]
/freebsd/sys/contrib/device-tree/Bindings/remoteproc/
H A Dti,pru-consumer.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/remoteproc/ti,pru-consume
[all...]
/freebsd/sys/dev/ofw/
H A Dofw_bus_subr.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (c) 2001 - 2003 by Thomas Moestl <tmm@FreeBSD.org>.
58 /* The 'name' property is considered mandatory. */ in ofw_bus_gen_setup_devinfo()
59 if ((OF_getprop_alloc(node, "name", (void **)&obd->obd_name)) == -1) in ofw_bus_gen_setup_devinfo()
61 OF_getprop_alloc(node, "compatible", (void **)&obd->obd_compat); in ofw_bus_gen_setup_devinfo()
62 OF_getprop_alloc(node, "device_type", (void **)&obd->obd_type); in ofw_bus_gen_setup_devinfo()
63 OF_getprop_alloc(node, "model", (void **)&obd->obd_model); in ofw_bus_gen_setup_devinfo()
64 OF_getprop_alloc(node, "status", (void **)&obd->obd_status); in ofw_bus_gen_setup_devinfo()
65 obd->obd_node = node; in ofw_bus_gen_setup_devinfo()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/soc/fsl/cpm_qe/
H A Dqe.txt16 - compatible : should be "fsl,qe";
17 - model : precise model of the QE, Can be "QE", "CPM", or "CPM2"
18 - reg : offset and length of the device registers.
19 - bus-frequency : the clock frequency for QUICC Engine.
20 - fsl,qe-num-riscs: define how many RISC engines the QE has.
21 - fsl,qe-snums: This property has to be specified as '/bits/ 8' value,
22 defining the array of serial number (SNUM) values for the virtual
26 - fsl,firmware-phandle:
27 Usage: required only if there is no fsl,qe-firmware child node
31 The compatible property for the firmware node should say,
[all …]

12345678910>>...18