Home
last modified time | relevance | path

Searched +full:0 +full:x12340000 (Results 1 – 5 of 5) sorted by relevance

/kernel/linux/linux-5.10/Documentation/devicetree/bindings/power/
Dpower-domain.yaml54 Number of cells in a PM domain specifier. Typically 0 for nodes
78 reg = <0x12340000 0x1000>;
88 reg = <0x12340000 0x1000>;
94 reg = <0x12341000 0x1000>;
95 power-domains = <&parent2 0>;
100 // Domains created by the 'child' power controller are subdomains of '0' power
106 reg = <0x12340000 0x1000>;
107 #power-domain-cells = <0>;
113 reg = <0x12341000 0x1000>;
115 #power-domain-cells = <0>;
Dpower_domain.txt34 reg = <0x12350000 0x1000>;
35 power-domains = <&power 0>;
41 reg = <0x12351000 0x1000>;
42 power-domains = <&power 0>, <&power 1> ;
47 located inside a PM domain with index 0 of a power controller represented by a
50 the first with index 0 and the second with index 1, of a power controller that
93 reg = <0x12340000 0x1000>;
100 reg = <0x12350000 0x1000>;
101 power-domains = <&power 0>;
107 reg = <0x12350000 0x1000>;
/kernel/linux/linux-5.10/include/uapi/linux/
Dswab.h15 (((__u16)(x) & (__u16)0x00ffU) << 8) | \
16 (((__u16)(x) & (__u16)0xff00U) >> 8)))
19 (((__u32)(x) & (__u32)0x000000ffUL) << 24) | \
20 (((__u32)(x) & (__u32)0x0000ff00UL) << 8) | \
21 (((__u32)(x) & (__u32)0x00ff0000UL) >> 8) | \
22 (((__u32)(x) & (__u32)0xff000000UL) >> 24)))
25 (((__u64)(x) & (__u64)0x00000000000000ffULL) << 56) | \
26 (((__u64)(x) & (__u64)0x000000000000ff00ULL) << 40) | \
27 (((__u64)(x) & (__u64)0x0000000000ff0000ULL) << 24) | \
28 (((__u64)(x) & (__u64)0x00000000ff000000ULL) << 8) | \
[all …]
/kernel/linux/linux-5.10/drivers/staging/rtl8188eu/core/
Drtw_security.c17 #define CRC32_POLY 0x04c11db7
34 parc4ctx->x = 0; in arcfour_init()
35 parc4ctx->y = 0; in arcfour_init()
36 for (counter = 0; counter < 256; counter++) in arcfour_init()
38 keyindex = 0; in arcfour_init()
39 stateindex = 0; in arcfour_init()
40 for (counter = 0; counter < 256; counter++) { in arcfour_init()
42 stateindex = (stateindex + key[keyindex] + t) & 0xff; in arcfour_init()
47 keyindex = 0; in arcfour_init()
59 x = (parc4ctx->x + 1) & 0xff; in arcfour_byte()
[all …]
/kernel/linux/linux-5.10/drivers/staging/rtl8723bs/core/
Drtw_security.c107 parc4ctx->x = 0; in arcfour_init()
108 parc4ctx->y = 0; in arcfour_init()
109 for (counter = 0; counter < 256; counter++) in arcfour_init()
111 keyindex = 0; in arcfour_init()
112 stateindex = 0; in arcfour_init()
113 for (counter = 0; counter < 256; counter++) { in arcfour_init()
115 stateindex = (stateindex + key[keyindex] + t) & 0xff; in arcfour_init()
120 keyindex = 0; in arcfour_init()
132 x = (parc4ctx->x + 1) & 0xff; in arcfour_byte()
134 y = (sx + parc4ctx->y) & 0xff; in arcfour_byte()
[all …]