Home
last modified time | relevance | path

Searched full:array (Results 1 – 25 of 907) sorted by relevance

12345678910>>...37

/Zephyr-Core-3.4.0/dts/bindings/sound/
Dcirrus,cs47l63.yaml15 type: phandle-array
20 type: phandle-array
25 type: phandle-array
30 type: phandle-array
35 type: phandle-array
40 type: phandle-array
45 type: phandle-array
50 type: phandle-array
55 type: phandle-array
60 type: phandle-array
[all …]
/Zephyr-Core-3.4.0/scripts/dts/python-devicetree/tests/test-bindings/
Dprops.yaml18 array:
19 type: array
21 uint8-array:
22 type: uint8-array
28 string-array:
29 type: string-array
38 phandle-array-foos:
39 type: phandle-array
41 phandle-array-foo-names:
42 type: string-array
[all …]
Ddefaults.yaml13 array:
14 type: array
18 uint8-array:
19 type: uint8-array
28 string-array:
29 type: string-array
/Zephyr-Core-3.4.0/dts/bindings/base/
Dbase.yaml18 type: string-array
23 type: array
27 type: string-array
31 type: array
34 # Does not follow the 'type: phandle-array' scheme, but gets type-checked
42 type: string-array
56 type: phandle-array
60 type: string-array
72 type: phandle-array
76 type: string-array
[all …]
/Zephyr-Core-3.4.0/dts/bindings/display/
Dilitek,ili9341.yaml15 type: uint8-array
21 type: uint8-array
27 type: uint8-array
33 type: uint8-array
39 type: uint8-array
45 type: uint8-array
51 type: uint8-array
57 type: uint8-array
63 type: uint8-array
69 type: uint8-array
[all …]
Dilitek,ili9342c.yaml15 type: uint8-array
22 type: uint8-array
28 type: uint8-array
34 type: uint8-array
40 type: uint8-array
47 type: uint8-array
53 type: uint8-array
59 type: uint8-array
65 type: uint8-array
71 type: uint8-array
[all …]
Dsitronix,st7735r.yaml12 type: phandle-array
21 type: phandle-array
50 type: uint8-array
55 type: uint8-array
60 type: uint8-array
65 type: uint8-array
70 type: uint8-array
75 type: uint8-array
80 type: uint8-array
85 type: uint8-array
[all …]
Dultrachip,uc81xx-common.yaml11 type: phandle-array
20 type: phandle-array
29 type: phandle-array
38 type: uint8-array
64 type: uint8-array
86 type: uint8-array
90 type: uint8-array
94 type: uint8-array
98 type: uint8-array
102 type: uint8-array
[all …]
Dilitek,ili9340.yaml13 type: uint8-array
19 type: uint8-array
25 type: uint8-array
32 type: uint8-array
38 type: uint8-array
44 type: uint8-array
50 type: uint8-array
56 type: uint8-array
78 type: uint8-array
Dsitronix,st7789v.yaml13 type: phandle-array
22 type: phandle-array
81 type: uint8-array
86 type: uint8-array
91 type: uint8-array
96 type: uint8-array
101 type: uint8-array
106 type: uint8-array
111 type: uint8-array
Dilitek,ili9488.yaml12 type: uint8-array
18 type: uint8-array
25 type: uint8-array
31 type: uint8-array
37 type: uint8-array
43 type: uint8-array
65 type: uint8-array
/Zephyr-Core-3.4.0/dts/bindings/modem/
Dswir,hl7800.yaml15 type: phandle-array
19 type: phandle-array
23 type: phandle-array
27 type: phandle-array
31 type: phandle-array
35 type: phandle-array
39 type: phandle-array
43 type: phandle-array
46 type: phandle-array
Dwnc,m14a2a.yaml12 type: phandle-array
16 type: phandle-array
20 type: phandle-array
24 type: phandle-array
28 type: phandle-array
32 type: phandle-array
/Zephyr-Core-3.4.0/dts/bindings/test/
Dvnd,phandle-holder.yaml14 pha-gpios: {type: "phandle-array"}
15 gpios: {type: "phandle-array"}
16 foos: {type: "phandle-array"}
17 foo-names: {type: "string-array"}
18 pwms: {type: "phandle-array"}
19 pwm-names: {type: "string-array"}
21 type: "phandle-array"
23 baz-names: {type: "string-array"}
Dvnd,array-holder.yaml4 description: Test array container
6 compatible: "vnd,array-holder"
11 a: {type: "array"}
12 b: {type: "uint8-array"}
13 c: {type: "string-array"}
/Zephyr-Core-3.4.0/dts/bindings/ethernet/
Dsilabs,gecko-ethernet.yaml40 type: array
45 type: array
51 type: array
56 type: array
61 type: array
66 type: array
71 type: array
76 type: array
81 type: array
86 type: array
[all …]
/Zephyr-Core-3.4.0/include/zephyr/sys/
Dutil.h99 #define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0])) argument
104 * @brief Zero if @p array has an array type, a compile error otherwise
108 #define IS_ARRAY(array) \
110 !__builtin_types_compatible_p(__typeof__(array), \
111 __typeof__(&(array)[0])))
114 * @brief Number of elements in the given @p array
116 * In C++, due to language limitations, this will accept as @p array
120 * In C, passing a pointer as @p array causes a compile error.
122 #define ARRAY_SIZE(array) \
123 ((size_t) (IS_ARRAY(array) + (sizeof(array) / sizeof((array)[0]))))
[all …]
/Zephyr-Core-3.4.0/tests/unit/util/
Dtest.inc260 uint8_t array[3] = {0};
261 uint8_t *buf = array;
265 zassert_equal(array[0], 1, "Unexpected value %d", array[0]);
266 zassert_equal(array[1], 2, "Unexpected value %d", array[1]);
267 zassert_equal(array[2], 3, "Unexpected value %d", array[2]);
277 uint8_t array[] = {
291 size_t size = ARRAY_SIZE(array);
294 zassert_equal(array[0], 1, "Unexpected value %d", array[0]);
295 zassert_equal(array[1], 4, "Unexpected value %d", array[1]);
296 zassert_equal(array[2], 9, "Unexpected value %d", array[2]);
[all …]
/Zephyr-Core-3.4.0/dts/bindings/ieee802154/
Dti,cc2520.yaml12 type: phandle-array
16 type: phandle-array
20 type: phandle-array
24 type: phandle-array
28 type: phandle-array
32 type: phandle-array
/Zephyr-Core-3.4.0/include/zephyr/data/
Djson.h111 } array; member
168 * @param sub_descr_ Array of json_obj_descr describing the subobject
207 * in the array
209 * @param union_ Optional macro argument containing array or object descriptor
223 * @internal @brief Helper macro to declare an array descriptor
225 * @param elem_descr_ Element descriptor, pointer to a descriptor array
230 .array = { \
239 * @param elem_descr_ Element descriptor, pointer to a descriptor array
251 * @brief Helper macro to declare a descriptor for an array of primitives
255 * @param max_len_ Maximum number of elements in array
[all …]
/Zephyr-Core-3.4.0/tests/lib/cpp/libcxx/src/
Dmain.cpp7 #include <array>
15 std::array<int, 4> array = {1, 2, 3, 4}; variable
20 zassert_equal(array.size(), 4, "unexpected size"); in ZTEST()
21 zassert_equal(array[0], 1, "array[0] wrong"); in ZTEST()
22 zassert_equal(array[3], 4, "array[3] wrong"); in ZTEST()
24 std::array<uint8_t, 2> local = {1, 2}; in ZTEST()
33 for (auto v : array) { in ZTEST()
36 zassert_equal(vector.size(), array.size(), "vector store failed"); in ZTEST()
/Zephyr-Core-3.4.0/dts/bindings/clock/
Dintel,adsp-shim-clkctl.yaml12 Index of WOVCRO clock encoding in the encoding array (if wovcro-supported is true).
16 description: Index of LPRO clock encoding in the encoding array.
20 description: Index of HPRO clock encoding in the encoding array.
23 type: array
25 description: Array that encodes what is needed to enable each clock.
28 type: array
29 description: Array that encodes needed masks to enable each clock.
/Zephyr-Core-3.4.0/dts/bindings/auxdisplay/
Dhit,hd44780.yaml23 type: phandle-array
28 type: phandle-array
32 type: phandle-array
37 type: phandle-array
40 Array of GPIOs connected to the DB lines of the display, this must
45 type: phandle-array
49 type: phandle-array
53 type: uint8-array
56 Array of addresses for each row, will use defaults if not provided.
/Zephyr-Core-3.4.0/dts/bindings/dac/
Dmicrochip,mcp4728.yaml12 type: array
18 Note: array entries correspond to the successive channels
21 type: array
30 Note: array entries correspond to the successive channels
33 type: array
40 Note: array entries correspond to the successive channels
/Zephyr-Core-3.4.0/dts/bindings/lora/
Dsemtech,sx127x-base.yaml9 type: phandle-array
18 type: phandle-array
36 type: phandle-array
41 type: phandle-array
46 type: phandle-array
51 type: phandle-array
56 type: phandle-array

12345678910>>...37