Home
last modified time | relevance | path

Searched refs:B (Results 1 – 25 of 709) sorted by relevance

12345678910>>...29

/Linux-v4.19/lib/
Dsha1.c55 #define SHA_ROUND(t, input, fn, constant, A, B, C, D, E) do { \ argument
58 B = ror32(B, 2); } while (0)
60 #define T_0_15(t, A, B, C, D, E) SHA_ROUND(t, SHA_SRC, (((C^D)&B)^D) , 0x5a827999, A, B, C, D, E ) argument
61 #define T_16_19(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (((C^D)&B)^D) , 0x5a827999, A, B, C, D, E ) argument
62 #define T_20_39(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (B^C^D) , 0x6ed9eba1, A, B, C, D, E ) argument
63 #define T_40_59(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, ((B&C)+(D&(B^C))) , 0x8f1bbcdc, A, B, C, D,… argument
64 #define T_60_79(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (B^C^D) , 0xca62c1d6, A, B, C, D, E ) argument
84 __u32 A, B, C, D, E; in sha_transform() local
87 B = digest[1]; in sha_transform()
93 T_0_15( 0, A, B, C, D, E); in sha_transform()
[all …]
/Linux-v4.19/scripts/coccinelle/misc/
Dboolconv.cocci18 expression A, B;
23 A == B
25 A != B
27 A > B
29 A < B
31 A >= B
33 A <= B
35 A && B
37 A || B
46 expression A, B;
[all …]
/Linux-v4.19/Documentation/media/uapi/v4l/
Dpixfmt-srggb10-ipu3.rst33 - B\ :sub:`0000low`
36 B\ :sub:`0000high`\ (bits 1--0)
37 - B\ :sub:`0002low`\ (bits 7--4)
42 B\ :sub:`0002high`\ (bits 5--0)
45 - B\ :sub:`0004low`
48 B\ :sub:`0004high`\ (bits 1--0)
49 - B\ :sub:`0006low`\ (bits 7--4)
55 B\ :sub:`0006high`\ (bits 5--0)
57 - B\ :sub:`0008low`
60 B\ :sub:`0008high`\ (bits 1--0)
[all …]
Dpixfmt-meta-vsp1-hgo.rst31 - In *64 bins maximum mode*, the HGO operates on the maximum of the (R, G, B)
36 - In *256 bins maximum mode*, the HGO operates on the maximum of the (R, G, B)
67 - B/Cb/V max [7:0]
69 - B/Cb/V min [7:0]
75 - :cspan:`4` B/Cb/V sum [31:0]
89 - :cspan:`4` B/Cb/V bin 0 [31:0]
93 - :cspan:`4` B/Cb/V bin 63 [31:0]
108 - max(R,G,B) max [7:0]
110 - max(R,G,B) min [7:0]
112 - :cspan:`4` max(R,G,B) sum [31:0]
[all …]
Dpixfmt-srggb16.rst35 - B\ :sub:`00low`
36 - B\ :sub:`00high`
39 - B\ :sub:`02low`
40 - B\ :sub:`02high`
53 - B\ :sub:`20low`
54 - B\ :sub:`20high`
57 - B\ :sub:`22low`
58 - B\ :sub:`22high`
Dpixfmt-srggb10.rst42 - B\ :sub:`00low`
43 - B\ :sub:`00high`
46 - B\ :sub:`02low`
47 - B\ :sub:`02high`
60 - B\ :sub:`20low`
61 - B\ :sub:`20high`
64 - B\ :sub:`22low`
65 - B\ :sub:`22high`
Dpixfmt-srggb12.rst43 - B\ :sub:`00low`
44 - B\ :sub:`00high`
47 - B\ :sub:`02low`
48 - B\ :sub:`02high`
61 - B\ :sub:`20low`
62 - B\ :sub:`20high`
65 - B\ :sub:`22low`
66 - B\ :sub:`22high`
Dpixfmt-srggb10p.rst44 - B\ :sub:`00high`
46 - B\ :sub:`02high`
48 - G\ :sub:`03low`\ (bits 7--6) B\ :sub:`02low`\ (bits 5--4)
50 G\ :sub:`01low`\ (bits 3--2) B\ :sub:`00low`\ (bits 1--0)
60 - B\ :sub:`20high`
62 - B\ :sub:`22high`
64 - G\ :sub:`23low`\ (bits 7--6) B\ :sub:`22low`\ (bits 5--4)
66 G\ :sub:`21low`\ (bits 3--2) B\ :sub:`20low`\ (bits 1--0)
/Linux-v4.19/drivers/gpu/drm/i915/selftests/
Di915_sw_fence.c98 struct i915_sw_fence *A, *B, *C; in test_dag() local
114 B = alloc_fence(); in test_dag()
115 if (!B) { in test_dag()
120 i915_sw_fence_await_sw_fence_gfp(A, B, GFP_KERNEL); in test_dag()
121 if (i915_sw_fence_await_sw_fence_gfp(B, A, GFP_KERNEL) != -EINVAL) { in test_dag()
132 if (i915_sw_fence_await_sw_fence_gfp(B, C, GFP_KERNEL) == -EINVAL) { in test_dag()
136 if (i915_sw_fence_await_sw_fence_gfp(C, B, GFP_KERNEL) != -EINVAL) { in test_dag()
150 i915_sw_fence_commit(B); in test_dag()
158 if (!i915_sw_fence_done(B)) { in test_dag()
169 free_fence(B); in test_dag()
[all …]
/Linux-v4.19/Documentation/translations/ko_KR/
Dmemory-barriers.txt183 { A == 1; B == 2 }
184 A = 3; x = B;
185 B = 4; y = A;
190 STORE A=3, STORE B=4, y=LOAD A->3, x=LOAD B->4
191 STORE A=3, STORE B=4, x=LOAD B->4, y=LOAD A->3
192 STORE A=3, y=LOAD A->3, STORE B=4, x=LOAD B->4
193 STORE A=3, y=LOAD A->3, x=LOAD B->2, STORE B=4
194 STORE A=3, x=LOAD B->2, STORE B=4, y=LOAD A->3
195 STORE A=3, x=LOAD B->2, y=LOAD A->3, STORE B=4
196 STORE B=4, STORE A=3, y=LOAD A->3, x=LOAD B->4
[all …]
/Linux-v4.19/arch/arm/mach-omap1/
Dmux.c135 MUX_CFG("USB2_SUSP", B, 3, 1, 2, 17, 0, NA, 0, 1)
136 MUX_CFG("USB2_VP", B, 6, 1, 2, 18, 0, NA, 0, 1)
137 MUX_CFG("USB2_TXEN", B, 9, 1, 2, 19, 0, NA, 0, 1)
186 MUX_CFG("BALLOUT_V8_ARMIO3", B, 18, 0, 2, 25, 1, NA, 0, 1)
190 MUX_CFG("W8_1610_MMC2_DAT0", B, 21, 6, 2, 23, 1, 2, 1, 1)
191 MUX_CFG("V8_1610_MMC2_DAT1", B, 27, 6, 2, 25, 1, 2, 1, 1)
193 MUX_CFG("R10_1610_MMC2_DAT3", B, 18, 6, 2, 22, 1, 2, 1, 1)
194 MUX_CFG("Y10_1610_MMC2_CLK", B, 3, 6, 2, 17, 0, 2, 0, 1)
195 MUX_CFG("Y8_1610_MMC2_CMD", B, 24, 6, 2, 24, 1, 2, 1, 1)
196 MUX_CFG("V9_1610_MMC2_CMDDIR", B, 12, 6, 2, 20, 0, 2, 1, 1)
[all …]
/Linux-v4.19/arch/x86/crypto/
Dsha1_ssse3_asm.S118 mov 4(HASH_PTR), B
131 RR F1,A,B,C,D,E,0
132 RR F1,D,E,A,B,C,2
133 RR F1,B,C,D,E,A,4
134 RR F1,E,A,B,C,D,6
135 RR F1,C,D,E,A,B,8
137 RR F1,A,B,C,D,E,10
138 RR F1,D,E,A,B,C,12
139 RR F1,B,C,D,E,A,14
140 RR F1,E,A,B,C,D,16
[all …]
/Linux-v4.19/arch/arm/boot/dts/
Dat91sam9x5_macb1.dtsi20 <AT91_PIOC 16 AT91_PERIPH_B AT91_PINCTRL_NONE /* PC16 periph B */
21 AT91_PIOC 18 AT91_PERIPH_B AT91_PINCTRL_NONE /* PC18 periph B */
22 AT91_PIOC 19 AT91_PERIPH_B AT91_PINCTRL_NONE /* PC19 periph B */
23 AT91_PIOC 20 AT91_PERIPH_B AT91_PINCTRL_NONE /* PC20 periph B */
24 AT91_PIOC 21 AT91_PERIPH_B AT91_PINCTRL_NONE /* PC21 periph B */
25 AT91_PIOC 27 AT91_PERIPH_B AT91_PINCTRL_NONE /* PC27 periph B */
26 AT91_PIOC 28 AT91_PERIPH_B AT91_PINCTRL_NONE /* PC28 periph B */
27 AT91_PIOC 29 AT91_PERIPH_B AT91_PINCTRL_NONE /* PC29 periph B */
28 AT91_PIOC 30 AT91_PERIPH_B AT91_PINCTRL_NONE /* PC30 periph B */
29 AT91_PIOC 31 AT91_PERIPH_B AT91_PINCTRL_NONE>; /* PC31 periph B */
Dstm32f7-pinctrl.dtsi160 pinmux = <STM32_PINMUX('B', 7, AF7)>; /* USART1_RX */
167 pinmux = <STM32_PINMUX('B', 9, AF4)>, /* I2C1 SDA */
168 <STM32_PINMUX('B', 8, AF4)>; /* I2C1 SCL */
182 <STM32_PINMUX('B', 0, AF10)>, /* OTG_HS_ULPI_D1 */
183 <STM32_PINMUX('B', 1, AF10)>, /* OTG_HS_ULPI_D2 */
184 <STM32_PINMUX('B', 10, AF10)>, /* OTG_HS_ULPI_D3 */
185 <STM32_PINMUX('B', 11, AF10)>, /* OTG_HS_ULPI_D4 */
186 <STM32_PINMUX('B', 12, AF10)>, /* OTG_HS_ULPI_D5 */
187 <STM32_PINMUX('B', 13, AF10)>, /* OTG_HS_ULPI_D6 */
188 <STM32_PINMUX('B', 5, AF10)>; /* OTG_HS_ULPI_D7 */
[all …]
/Linux-v4.19/Documentation/mtd/nand/
Dpxa3xx-nand.txt19 | 2048B data | 32B spare | 30B ECC || 2048B data | 32B spare | 30B ECC | ... |
26 | 4096B data | 64B spare |
33 | 4096B data | 32B spare | 30B ECC | 32B spare | 30B ECC |
37 (with some additional controller-specific magic) and read two chunks of 2080B
55 So, repeating the above scheme, a 2048B data chunk will be followed by 32B
56 spare, and then the ECC controller will read/write the ECC code (30B in
60 | 2048B data | 32B spare | 30B ECC |
64 If the ECC mode is 'Hamming' the ECC is 6 bytes long, for each 512B block.
65 So in Hamming mode, a 2048B page will have a 24B ECC.
/Linux-v4.19/Documentation/translations/zh_CN/
Dio_ordering.txt41 CPU B: spin_lock_irqsave(&dev_lock, flags)
42 CPU B: val = readl(my_status);
43 CPU B: ...
44 CPU B: writel(newval2, ring_ptr);
45 CPU B: spin_unlock_irqrestore(&dev_lock, flags)
59 CPU B: spin_lock_irqsave(&dev_lock, flags)
60 CPU B: val = readl(my_status);
61 CPU B: ...
62 CPU B: writel(newval2, ring_ptr);
63 CPU B: (void)readl(safe_register); /* 配置寄存器?*/
[all …]
/Linux-v4.19/drivers/macintosh/
Dvia-cuda.c37 #define B 0 /* B-side data */ macro
108 out_8(&via[B], in_8(&via[B]) | TIP); in assert_TIP()
110 out_8(&via[B], in_8(&via[B]) & ~TIP); in assert_TIP()
117 out_8(&via[B], in_8(&via[B]) | TIP | TACK); in assert_TIP_and_TACK()
119 out_8(&via[B], in_8(&via[B]) & ~(TIP | TACK)); in assert_TIP_and_TACK()
126 out_8(&via[B], in_8(&via[B]) | TACK); in assert_TACK()
128 out_8(&via[B], in_8(&via[B]) & ~TACK); in assert_TACK()
133 out_8(&via[B], in_8(&via[B]) ^ TACK); in toggle_TACK()
140 out_8(&via[B], in_8(&via[B]) & ~TACK); in negate_TACK()
142 out_8(&via[B], in_8(&via[B]) | TACK); in negate_TACK()
[all …]
Dvia-macii.c43 #define B 0 /* B-side data */ macro
181 via[B] |= ST_IDLE; in macii_init_via()
182 last_status = via[B] & (ST_MASK|CTLR_IRQ); in macii_init_via()
365 via[B] = (via[B] & ~ST_MASK) | ST_CMD; in macii_start()
404 status = via[B] & (ST_MASK|CTLR_IRQ); in macii_interrupt()
431 via[B] = (via[B] & ~ST_MASK) | ST_EVEN; in macii_interrupt()
459 via[B] = (via[B] & ~ST_MASK) | ST_IDLE; in macii_interrupt()
464 if ( (via[B] & ST_MASK) == ST_CMD ) { in macii_interrupt()
466 via[B] = (via[B] & ~ST_MASK) | ST_EVEN; in macii_interrupt()
469 via[B] ^= ST_MASK; in macii_interrupt()
[all …]
/Linux-v4.19/Documentation/usb/
Dchipidea.txt24 is micro B plug.
26 The A-device(with micro A plug inserted) should enumerate B-device.
29 On B-device:
32 B-device should take host role and enumerate A-device.
35 On B-device:
38 or, by introducing HNP polling, B-Host can know when A-peripheral wish
40 side by answering the polling from B-Host, this can be done on A-device:
43 A-device should switch back to host and enumerate B-device.
45 5) Remove B-device(unplug micro B plug) and insert again in 10 seconds,
46 A-device should enumerate B-device again.
[all …]
/Linux-v4.19/Documentation/
Dio_ordering.txt24 CPU B: spin_lock_irqsave(&dev_lock, flags)
25 CPU B: val = readl(my_status);
26 CPU B: ...
27 CPU B: writel(newval2, ring_ptr);
28 CPU B: spin_unlock_irqrestore(&dev_lock, flags)
42 CPU B: spin_lock_irqsave(&dev_lock, flags)
43 CPU B: val = readl(my_status);
44 CPU B: ...
45 CPU B: writel(newval2, ring_ptr);
46 CPU B: (void)readl(safe_register); /* maybe a config register? */
[all …]
/Linux-v4.19/drivers/pinctrl/sunxi/
Dpinctrl-sun50i-h6.c38 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 0),
41 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 1),
44 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 2),
47 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 3),
50 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 4),
53 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 5),
56 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 6),
59 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 7),
62 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 8),
65 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 9),
[all …]
Dpinctrl-sun5i.c153 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 0),
157 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 1),
161 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 2),
169 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 3),
174 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 4),
179 SUNXI_PIN_VARIANT(SUNXI_PINCTRL_PIN(B, 5),
185 SUNXI_PIN_VARIANT(SUNXI_PINCTRL_PIN(B, 6),
191 SUNXI_PIN_VARIANT(SUNXI_PINCTRL_PIN(B, 7),
197 SUNXI_PIN_VARIANT(SUNXI_PINCTRL_PIN(B, 8),
203 SUNXI_PIN_VARIANT(SUNXI_PINCTRL_PIN(B, 9),
[all …]
Dpinctrl-sun8i-v3s.c28 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 0),
33 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 1),
38 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 2),
43 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 3),
48 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 4),
53 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 5),
58 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 6),
63 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 7),
68 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 8),
74 SUNXI_PIN(SUNXI_PINCTRL_PIN(B, 9),
/Linux-v4.19/Documentation/devicetree/bindings/arm/bcm/
Dbrcm,bcm2835.txt12 Raspberry Pi Model B
16 Raspberry Pi Model B (no P5)
17 early model B with I2C0 rather than I2C1 routed to the expansion header
21 Raspberry Pi Model B rev2
25 Raspberry Pi Model B+
29 Raspberry Pi 2 Model B
33 Raspberry Pi 3 Model B
37 Raspberry Pi 3 Model B+
/Linux-v4.19/Documentation/filesystems/
Dsharedsubtree.txt169 B) A process wants its mounts invisible to any other process, but
343 mount --bind A/a B/b
345 where 'A' is the source mount, 'a' is the dentry in the mount 'A', 'B'
348 The outcome depends on the type of mount of 'A' and 'B'. The table
354 | dest(B) | | | | |
365 1. 'A' is a shared mount and 'B' is a shared mount. A new mount 'C'
367 mounted on mount 'B' at dentry 'b'. Also new mount 'C1', 'C2', 'C3' ...
368 are created and mounted at the dentry 'b' on all mounts where 'B'
371 'B'. And finally the peer-group of 'C' is merged with the peer group
374 2. 'A' is a private mount and 'B' is a shared mount. A new mount 'C'
[all …]

12345678910>>...29