Home
last modified time | relevance | path

Searched refs:field (Results 1 – 25 of 183) sorted by relevance

12345678

/Zephyr-latest/soc/nuvoton/npcx/common/reg/
Dreg_access.h17 #define FIELD_POS(field) GET_POS_##field argument
18 #define FIELD_SIZE(field) GET_SIZE_##field argument
20 #define GET_FIELD(reg, field) \ argument
21 _GET_FIELD_(reg, FIELD_POS(field), FIELD_SIZE(field))
24 #define SET_FIELD(reg, field, value) \ argument
25 _SET_FIELD_(reg, FIELD_POS(field), FIELD_SIZE(field), value)
30 #define GET_FIELD_POS(field) \ argument
31 _GET_FIELD_POS_(FIELD_POS(field))
34 #define GET_FIELD_SZ(field) \ argument
35 _GET_FIELD_SZ_(FIELD_SIZE(field))
/Zephyr-latest/include/zephyr/drivers/ethernet/
Deth_nxp_enet_qos.h24 #define _ENET_QOS_REG_FIELD(reg, field) MACRO_MAP_CAT(_PREFIX_UNDERLINE, reg, field, MASK) argument
25 #define _ENET_QOS_REG_MASK(reg, field) CONCAT(ENET_QOS_NAME, _ENET_QOS_REG_FIELD(reg, field)) argument
33 #define ENET_QOS_REG_GET(reg, field, val) FIELD_GET(_ENET_QOS_REG_MASK(reg, field), val) argument
41 #define ENET_QOS_REG_PREP(reg, field, val) FIELD_PREP(_ENET_QOS_REG_MASK(reg, field), val) argument
/Zephyr-latest/drivers/sensor/bosch/bmi323/
Dbmi323.h166 #define IMU_BOSCH_BMI323_REG_MASK(reg, field) \ argument
167 (BIT_MASK(IMU_BOSCH_BMI323_REG_##reg##_##field##_SIZE) \
168 << IMU_BOSCH_BMI323_REG_##reg##_##field##_OFFSET)
170 #define IMU_BOSCH_BMI323_REG_VALUE(reg, field, val) \ argument
171 (IMU_BOSCH_BMI323_REG_##reg##_##field##_VAL_##val \
172 << IMU_BOSCH_BMI323_REG_##reg##_##field##_OFFSET)
174 #define IMU_BOSCH_BMI323_REG_VALUE_GET_FIELD(reg_value, reg, field) \ argument
175 ((reg_value >> IMU_BOSCH_BMI323_REG_##reg##_##field##_OFFSET) & \
176 BIT_MASK(IMU_BOSCH_BMI323_REG_##reg##_##field##_SIZE))
/Zephyr-latest/drivers/sensor/st/vl53l1x/
Dvl53l1_platform_user_data.h50 #define VL53L1DevDataGet(Dev, field) (Dev->Data.field) argument
60 #define VL53L1DevDataSet(Dev, field, data) ((Dev->Data.field) = (data)) argument
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dquarantine.py10 from dataclasses import dataclass, field
48 scenarios: list[str] = field(default_factory=list)
49 platforms: list[str] = field(default_factory=list)
50 architectures: list[str] = field(default_factory=list)
51 simulations: list[str] = field(default_factory=list)
53 re_scenarios: list = field(default_factory=list)
54 re_platforms: list = field(default_factory=list)
55 re_architectures: list = field(default_factory=list)
56 re_simulations: list = field(default_factory=list)
85 qlist: list[QuarantineElement] = field(default_factory=list)
Dconfig_parser.py26 for field in args:
28 name, val = field.split("=", 1)
31 other_fields.append(field)
38 other_fields.append(field)
/Zephyr-latest/samples/modules/nanopb/
DKconfig12 Configure the simple message buffer field's size.
15 bool "Unlucky number field"
17 Enable the unlucky number field.
DREADME.rst29 * :kconfig:option:`CONFIG_SAMPLE_BUFFER_SIZE` sets the ``buffer`` field's size
31 field.
/Zephyr-latest/drivers/sensor/st/vl53l0x/
Dvl53l0x_platform.h52 #define PALDevDataGet(Dev, field) (Dev->Data.field) argument
60 #define PALDevDataSet(Dev, field, data) ((Dev->Data.field) = (data)) argument
/Zephyr-latest/scripts/utils/
Dtwister_to_list.py34 for field in FIELDS:
35 val = conf.get(field)
41 conf[field] = s
/Zephyr-latest/subsys/bluetooth/services/
DKconfig.dis51 The Vendor ID Source field designates which organization assigned the
52 value used in the Vendor ID field value.
62 The Vendor ID field is intended to uniquely identify the vendor of the
63 device. This field is used in conjunction with Vendor ID Source field,
64 which determines which organization assigned the Vendor ID field value.
67 either of which can be used for the Vendor ID field value.
76 The Product ID field is intended to distinguish between different products
77 made by the vendor identified with the Vendor ID field. The vendors
78 themselves manage Product ID field values.
85 The Product Version field is a numeric expression identifying the device
[all …]
/Zephyr-latest/lib/utils/
Djson.c531 size_t max_elements, void *field, void *val);
537 struct json_token *value, void *field, void *val) in decode_value() argument
548 field); in decode_value()
551 descr->array.n_elements, field, val); in decode_value()
553 struct json_obj_token *obj_token = field; in decode_value()
561 bool *v = field; in decode_value()
568 int32_t *num = field; in decode_value()
573 int64_t *num = field; in decode_value()
578 uint64_t *num = field; in decode_value()
584 struct json_obj_token *obj_token = field; in decode_value()
[all …]
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/
Dtwister_harness_config.py8 from dataclasses import dataclass, field
27 runner_params: list[str] = field(default_factory=list, repr=False)
32 west_flash_extra_args: list[str] = field(default_factory=list, repr=False)
52 devices: list[DeviceConfig] = field(default_factory=list, repr=False)
/Zephyr-latest/subsys/logging/backends/
DKconfig.net25 bool "RFC 5424 chapter 7.1.1 tzKnown field"
32 bool "RFC 5424 chapter 7.1.2 isSynced field"
40 bool "RFC 5424 chapter 7.2.3 software description field"
48 string "RFC 5424 chapter 7.2.3 software field value"
52 User defined value for the software field.
56 bool "RFC 5424 chapter 7.2.4 software version field"
64 bool "RFC 5424 chapter 7.3.1 sequence id field"
72 bool "RFC 5424 chapter 7.3.2 system uptime field"
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/helpers/
Dshell.py11 from dataclasses import dataclass, field
122 cls_fields = {field for field in signature(cls).parameters}
136 areas: list[ShellMCUbootArea] = field(default_factory=list)
/Zephyr-latest/soc/nxp/mcx/mcxc/
DKconfig25 bool "MCXC flash configuration field"
28 Include the 16-byte flash configuration field that stores default
36 default $(dt_node_int_prop_hex,/soc/flash-controller@40020000,config-field-offset)
/Zephyr-latest/soc/nordic/nrf54h/bicr/
Dbicrgen.py67 field = self._reg.find(f".//fields/field[name='{name}']")
68 field_lsb = int(field.find("lsb").text, 0)
69 field_msb = int(field.find("msb").text, 0)
75 def _enums(self, field: str) -> list[ET.Element]:
80 def __getitem__(self, field: str) -> int:
84 msk, pos = self._msk_pos(field)
88 def __setitem__(self, field: str, value: int) -> None:
92 msk, pos = self._msk_pos(field)
98 def enum_get(self, field: str) -> str:
99 value = self[field]
[all …]
/Zephyr-latest/doc/_static/css/
Dcustom.css123 html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glo…
124 …-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) d…
129 html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glo…
134 html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glo…
135 html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glo…
136 html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glo…
137 html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glo…
143 html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glo…
144 html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glo…
145 html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glo…
[all …]
/Zephyr-latest/include/zephyr/sys/
Dutil.h255 #define CONTAINER_OF_VALIDATE(ptr, type, field) \ argument
256 BUILD_ASSERT(SAME_TYPE(*(ptr), ((type *)0)->field) || \
260 #define CONTAINER_OF_VALIDATE(ptr, type, field)
284 #define CONTAINER_OF(ptr, type, field) \ argument
286 CONTAINER_OF_VALIDATE(ptr, type, field) \
287 ((type *)(((char *)(ptr)) - offsetof(type, field))); \
Drb.h231 #define RB_FOR_EACH_CONTAINER(tree, node, field) \ argument
235 field) : NULL; (node); }) != NULL; \
/Zephyr-latest/subsys/zbus/
DKconfig17 bool "Channel name field"
20 bool "Channel identifier field"
23 bool "Observer name field"
/Zephyr-latest/scripts/
Dlist_boards.py8 from dataclasses import dataclass, field
42 variants: List[str] = field(default_factory=list)
55 variants: List[str] = field(default_factory=list)
68 variants: List[str] = field(default_factory=list)
74 cpuclusters: List[str] = field(default_factory=list)
75 variants: List[str] = field(default_factory=list)
103 revisions: List[str] = field(default_factory=list, compare=False)
104 socs: List[Soc] = field(default_factory=list, compare=False)
105 variants: List[str] = field(default_factory=list, compare=False)
/Zephyr-latest/tests/subsys/zbus/unittests/src/
Dmessages.h35 } field; member
/Zephyr-latest/subsys/mgmt/mcumgr/grp/shell_mgmt/
DKconfig44 bool "Legacy behaviour: Use rc field for shell function return code"
47 return code is returned, incorrectly, in the rc field that was
49 disabled, there will be an additional ret field which contains the
/Zephyr-latest/soc/nxp/s32/s32k1/
DKconfig74 bool "NXP S32 flash configuration field"
77 Include the 16-byte flash configuration field that stores default
84 hex "NXP S32 flash configuration field offset"

12345678