Home
last modified time | relevance | path

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

12345678910>>...83

/openbmc/linux/drivers/comedi/drivers/ni_routing/ni_route_values/
H A Dni_mseries.c56 [B(NI_PFI(0))] = {
88 [B(NI_PFI(1))] = {
120 [B(NI_PFI(2))] = {
152 [B(NI_PFI(3))] = {
184 [B(NI_PFI(4))] = {
216 [B(NI_PFI(5))] = {
248 [B(NI_PFI(6))] = {
280 [B(NI_PFI(7))] = {
312 [B(NI_PFI(8))] = {
344 [B(NI_PFI(9))] = {
[all …]
H A Dni_eseries.c53 [B(NI_PFI(0))] = {
56 [B(NI_PFI(1))] = {
59 [B(NI_PFI(2))] = {
62 [B(NI_PFI(3))] = {
65 [B(NI_PFI(4))] = {
68 [B(NI_PFI(5))] = {
71 [B(NI_PFI(6))] = {
74 [B(NI_PFI(7))] = {
77 [B(NI_PFI(8))] = {
80 [B(NI_PFI(9))] = {
[all …]
H A Dni_660x.c48 [B(NI_PFI(8))] = {
51 [B(NI_PFI(10))] = {
54 [B(NI_PFI(11))] = {
57 [B(NI_PFI(12))] = {
60 [B(NI_PFI(14))] = {
63 [B(NI_PFI(15))] = {
66 [B(NI_PFI(16))] = {
69 [B(NI_PFI(18))] = {
72 [B(NI_PFI(19))] = {
75 [B(NI_PFI(20))] = {
[all …]
/openbmc/linux/rust/kernel/sync/
H A Dlock.rs94 unsafe impl<T: ?Sized + Send, B: Backend> Send for Lock<T, B> {}
98 unsafe impl<T: ?Sized + Send, B: Backend> Sync for Lock<T, B> {}
100 impl<T, B: Backend> Lock<T, B> {
116 impl<T: ?Sized, B: Backend> Lock<T, B> {
140 unsafe impl<T: Sync + ?Sized, B: Backend> Sync for Guard<'_, T, B> {}
142 impl<T: ?Sized, B: Backend> Guard<'_, T, B> {
155 impl<T: ?Sized, B: Backend> core::ops::Deref for Guard<'_, T, B> {
164 impl<T: ?Sized, B: Backend> core::ops::DerefMut for Guard<'_, T, B> {
171 impl<T: ?Sized, B: Backend> Drop for Guard<'_, T, B> {
178 impl<'a, T: ?Sized, B: Backend> Guard<'a, T, B> {
[all …]
/openbmc/u-boot/lib/
H A Dsha1.c102 B = ctx->state[1]; in sha1_process()
110 P (A, B, C, D, E, W[0]); in sha1_process()
111 P (E, A, B, C, D, W[1]); in sha1_process()
112 P (D, E, A, B, C, W[2]); in sha1_process()
113 P (C, D, E, A, B, W[3]); in sha1_process()
114 P (B, C, D, E, A, W[4]); in sha1_process()
115 P (A, B, C, D, E, W[5]); in sha1_process()
116 P (E, A, B, C, D, W[6]); in sha1_process()
117 P (D, E, A, B, C, W[7]); in sha1_process()
118 P (C, D, E, A, B, W[8]); in sha1_process()
[all …]
H A Dsha256.c62 uint32_t A, B, C, D, E, F, G, H; in sha256_process() local
106 B = ctx->state[1]; in sha256_process()
114 P(A, B, C, D, E, F, G, H, W[0], 0x428A2F98); in sha256_process()
115 P(H, A, B, C, D, E, F, G, W[1], 0x71374491); in sha256_process()
116 P(G, H, A, B, C, D, E, F, W[2], 0xB5C0FBCF); in sha256_process()
117 P(F, G, H, A, B, C, D, E, W[3], 0xE9B5DBA5); in sha256_process()
118 P(E, F, G, H, A, B, C, D, W[4], 0x3956C25B); in sha256_process()
119 P(D, E, F, G, H, A, B, C, W[5], 0x59F111F1); in sha256_process()
120 P(C, D, E, F, G, H, A, B, W[6], 0x923F82A4); in sha256_process()
121 P(B, C, D, E, F, G, H, A, W[7], 0xAB1C5ED5); in sha256_process()
[all …]
/openbmc/linux/lib/crypto/
H A Dsha1.c60 B = ror32(B, 2); \
61 TEMP = E; E = D; D = C; C = B; B = A; A = TEMP; } while (0)
63 #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
64 #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
65 #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
66 #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
67 #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
89 __u32 A, B, C, D, E; in sha1_transform() local
93 B = digest[1]; in sha1_transform()
100 T_0_15(i, A, B, C, D, E); in sha1_transform()
[all …]
/openbmc/linux/lib/zstd/common/
H A Dcpu.h162 B(bmi1, 3)
163 B(hle, 4)
164 B(avx2, 5)
165 B(smep, 7)
166 B(bmi2, 8)
167 B(erms, 9)
169 B(rtm, 11)
170 B(mpx, 14)
174 B(adx, 19)
183 B(sha, 29)
[all …]
/openbmc/linux/drivers/comedi/drivers/
H A Dni_routes.c163 if (RVi(rv, B(src), B(dest))) in ni_count_valid_routes()
167 (RVi(rv, B(src), B(NI_RGOUT0)) || in ni_count_valid_routes()
168 RVi(rv, B(src), B(NI_RTSI_BRD(0))) || in ni_count_valid_routes()
169 RVi(rv, B(src), B(NI_RTSI_BRD(1))) || in ni_count_valid_routes()
170 RVi(rv, B(src), B(NI_RTSI_BRD(2))) || in ni_count_valid_routes()
218 if (RVi(rv, B(src), B(dest))) in ni_get_valid_routes()
222 (RVi(rv, B(src), B(NI_RGOUT0)) || in ni_get_valid_routes()
223 RVi(rv, B(src), B(NI_RTSI_BRD(0))) || in ni_get_valid_routes()
224 RVi(rv, B(src), B(NI_RTSI_BRD(1))) || in ni_get_valid_routes()
484 regval = RVi(rv, B(src), B(dest)); in ni_route_to_register()
[all …]
/openbmc/linux/scripts/coccinelle/misc/
H A Dboolconv.cocci24 A == B
26 A != B
28 A > B
30 A < B
32 A >= B
34 A <= B
36 A && B
38 A || B
53 A == B
57 A > B
[all …]
H A Dexcluded_middle.cocci3 /// Condition !A || A && B is equivalent to !A || B.
15 expression A, B;
19 * !A || (A &&@p B)
22 expression A, B;
26 - (A && B)
27 + B
33 coccilib.report.print_report(p[0], "WARNING !A || A && B is equivalent to !A || B")
39 coccilib.org.print_todo(p[0], "WARNING !A || A && B is equivalent to !A || B")
/openbmc/linux/Documentation/userspace-api/media/v4l/
H A Dpixfmt-srggb10-ipu3.rst39 - B\ :sub:`0000low`
51 - B\ :sub:`0004low`
63 - B\ :sub:`0008low`
75 - B\ :sub:`0012low`
88 - B\ :sub:`0016low`
100 - B\ :sub:`0020low`
112 - B\ :sub:`0024low`
191 - B\ :sub:`0200low`
203 - B\ :sub:`0204low`
215 - B\ :sub:`0208low`
[all …]
/openbmc/qemu/tests/tcg/cris/libc/
H A Dcheck_swap.c9 #define B 2 macro
18 case B: asm ("swapb\t%0\n" : "+r" (x) : "0" (x)); break; in cris_swap()
20 case B|R: asm ("swapbr\t%0\n" : "+r" (x) : "0" (x)); break; in cris_swap()
22 case W|B: asm ("swapwb\t%0\n" : "+r" (x) : "0" (x)); break; in cris_swap()
54 if (cris_swap(B, 0x12345678) != 0x34127856) in check_swap()
58 verify_swap(B, 0x78134452, 0x13785244, 0, 0); in check_swap()
59 verify_swap(B|R, 0x78134452, 0xc81e4a22, 1, 0); in check_swap()
62 verify_swap(W|B|R, 0x78134452, 0x4a22c81e, 0, 0); in check_swap()
65 verify_swap(N|B, 0x78134452, 0xec87adbb, 1, 0); in check_swap()
66 verify_swap(N|B|R, 0x78134452, 0x37e1b5dd, 0, 0); in check_swap()
[all …]
/openbmc/qemu/tests/qemu-iotests/
H A D172.out26 min_io_size = 0 (0 B)
27 opt_io_size = 0 (0 B)
55 min_io_size = 0 (0 B)
56 opt_io_size = 0 (0 B)
94 min_io_size = 0 (0 B)
95 opt_io_size = 0 (0 B)
108 min_io_size = 0 (0 B)
109 opt_io_size = 0 (0 B)
151 min_io_size = 0 (0 B)
152 opt_io_size = 0 (0 B)
[all …]
H A D07798 break pwritev_rmw_after_head B
100 wait_break B
104 resume B
114 wait_break B
116 resume B
129 wait_break B
132 resume B
143 wait_break B
144 resume B
172 wait_break B
[all …]
/openbmc/openbmc/meta-security/recipes-scanners/rootkits/
H A Dchkrootkit_0.57.bb31 install -m 644 ${B}/chkdirs ${D}/${libdir}/${PN}
32 install -m 644 ${B}/chklastlog ${D}/${libdir}/${PN}
33 install -m 644 ${B}/chkproc ${D}/${libdir}/${PN}
34 install -m 644 ${B}/chkutmp ${D}/${libdir}/${PN}
35 install -m 644 ${B}/chkwtmp ${D}/${libdir}/${PN}
36 install -m 644 ${B}/ifpromisc ${D}/${libdir}/${PN}
39 install -m 755 ${B}/chklastlog ${D}/${sbindir}
40 install -m 755 ${B}/chkrootkit ${D}/${sbindir}
41 install -m 755 ${B}/chkwtmp ${D}/${sbindir}
46 install -m 644 ${B}/README.gz ${D}/${docdir}/${PN}
[all …]
/openbmc/linux/drivers/gpu/drm/i915/selftests/
H A Di915_sw_fence.c114 B = alloc_fence(); in test_dag()
115 if (!B) { in test_dag()
169 free_fence(B); in test_dag()
185 if (!B) { in test_AB()
217 free_fence(B); in test_AB()
234 if (!B) { in test_ABC()
297 free_fence(B); in test_ABC()
314 if (!B) { in test_AB_C()
374 free_fence(B); in test_AB_C()
391 if (!B) { in test_C_AB()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/cjson/
H A Dcjson_1.7.17.bb24 sed s#${B}#${PTEST_PATH}# ${B}/CTestTestfile.cmake > ${D}${PTEST_PATH}/CTestTestfile.cmake
25 …sed s#${B}#${PTEST_PATH}# ${B}/tests/CTestTestfile.cmake > ${D}${PTEST_PATH}/tests/CTestTestfile.c…
26 …sed s#${B}#${PTEST_PATH}# ${B}/fuzzing/CTestTestfile.cmake > ${D}${PTEST_PATH}/fuzzing/CTestTestfi…
28 install ${B}/cJSON_test ${D}${PTEST_PATH}
29 …install ${B}/tests/cjson_add ${B}/tests/*_tests ${B}/tests/parse_* ${B}/tests/print_* ${B}/tests…
30 install ${B}/tests/inputs/* ${D}${PTEST_PATH}/tests/inputs
31 install ${B}/fuzzing/fuzz_main ${D}${PTEST_PATH}/fuzzing
/openbmc/linux/Documentation/translations/ko_KR/
H A Dmemory-barriers.txt188 STORE A=3, STORE B=4, y=LOAD A->3, x=LOAD B->4
189 STORE A=3, STORE B=4, x=LOAD B->4, y=LOAD A->3
190 STORE A=3, y=LOAD A->3, STORE B=4, x=LOAD B->4
191 STORE A=3, y=LOAD A->3, x=LOAD B->2, STORE B=4
192 STORE A=3, x=LOAD B->2, STORE B=4, y=LOAD A->3
193 STORE A=3, x=LOAD B->2, y=LOAD A->3, STORE B=4
194 STORE B=4, STORE A=3, y=LOAD A->3, x=LOAD B->4
598 B = 4;
628 B = 4;
658 B = 4;
[all …]
/openbmc/linux/arch/arm/mach-omap1/
H A Dmux.c75 MUX_CFG("USB2_SUSP", B, 3, 1, 2, 17, 0, NA, 0, 1)
76 MUX_CFG("USB2_VP", B, 6, 1, 2, 18, 0, NA, 0, 1)
77 MUX_CFG("USB2_TXEN", B, 9, 1, 2, 19, 0, NA, 0, 1)
151 MUX_CFG("V9_1610_GPIO7", B, 12, 1, 2, 20, 0, 2, 1, 1)
152 MUX_CFG("W8_1610_GPIO9", B, 21, 0, 2, 23, 0, 2, 1, 1)
191 MUX_CFG("MMC_DAT0", B, 0, 0, 2, 16, 1, 2, 1, 1)
199 MUX_CFG("W9_USB0_TXEN", B, 9, 5, 2, 19, 0, 2, 0, 1)
200 MUX_CFG("AA9_USB0_VP", B, 6, 5, 2, 18, 0, 2, 0, 1)
205 MUX_CFG("V9_USB0_SPEED", B, 12, 5, 2, 20, 0, 2, 0, 1)
206 MUX_CFG("Y10_USB0_SUSP", B, 3, 5, 2, 17, 0, 2, 0, 1)
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/protobuf/
H A Dprotobuf_4.25.3.bb44 mkdir -p "${B}/${TEST_SRC_DIR}"
48 cp "${B}/protobuf.pc" "${B}/${TEST_SRC_DIR}/protobuf.pc"
49 cp ${S}/${TEST_SRC_DIR}/*.cc "${B}/${TEST_SRC_DIR}/"
50 cp ${S}/${TEST_SRC_DIR}/*.proto "${B}/${TEST_SRC_DIR}/"
51 cp ${S}/${TEST_SRC_DIR}/*.py "${B}/${TEST_SRC_DIR}/"
52 cp ${S}/${TEST_SRC_DIR}/Makefile "${B}/${TEST_SRC_DIR}/"
57 sed -e 's|Libs:|Libs: -L${B}|' -i "${B}/${TEST_SRC_DIR}/protobuf.pc"
62 cp "${B}/third_party/utf8_range/utf8_range.pc" "${B}/${TEST_SRC_DIR}/utf8_range.pc"
64 sed -e 's|Libs:|Libs= -L${B}/third_party/utf8_range |' -i "${B}/${TEST_SRC_DIR}/utf8_range.pc"
67 export PKG_CONFIG_PATH="${B}/${TEST_SRC_DIR}"
[all …]
/openbmc/linux/Documentation/translations/zh_CN/driver-api/
H A Dio_ordering.rst34 CPU B: spin_lock_irqsave(&dev_lock, flags)
35 CPU B: val = readl(my_status);
36 CPU B: ...
37 CPU B: writel(newval2, ring_ptr);
38 CPU B: spin_unlock_irqrestore(&dev_lock, flags)
52 CPU B: spin_lock_irqsave(&dev_lock, flags)
53 CPU B: val = readl(my_status);
54 CPU B: ...
55 CPU B: writel(newval2, ring_ptr);
56 CPU B: (void)readl(safe_register); /* 配置寄存器?*/
[all …]
/openbmc/linux/arch/x86/crypto/
H A Dsha1_ssse3_asm.S128 RR F1,A,B,C,D,E,0
129 RR F1,D,E,A,B,C,2
130 RR F1,B,C,D,E,A,4
131 RR F1,E,A,B,C,D,6
132 RR F1,C,D,E,A,B,8
134 RR F1,A,B,C,D,E,10
135 RR F1,D,E,A,B,C,12
136 RR F1,B,C,D,E,A,14
137 RR F1,E,A,B,C,D,16
193 .set B, REG_B define
[all …]
/openbmc/openbmc/poky/meta/recipes-core/meta/
H A Dsigning-keys.bb29 signer.export_pubkey(os.path.join(d.expand('${B}'), 'rpm-key'),
35 signer.export_pubkey(os.path.join(d.expand('${B}'), 'ipk-key'),
41 signer.export_pubkey(os.path.join(d.expand('${B}'), 'pf-key'),
44 do_get_public_keys[cleandirs] = "${B}"
49 if [ -f "${B}/rpm-key" ]; then
52 if [ -f "${B}/ipk-key" ]; then
55 if [ -f "${B}/pf-key" ]; then
61 if [ -f "${B}/rpm-key" ]; then
64 if [ -f "${B}/ipk-key" ]; then
67 if [ -f "${B}/pf-key" ]; then
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/colord/
H A Dcolord-native.bb30 proj_name=`grep 'Project name:' ${B}/meson-logs/meson-log.txt | sed 's|Project name: ||'`
33 mkdir -p ${B}/colord
38 > ${B}/colord/cd-version.h
42 echo "#define LOCALEDIR \"$localedir\"" >> ${B}/config.h
43 echo "#define GETTEXT_PACKAGE \"colord\"" >> ${B}/config.h
44 echo "#define PACKAGE_NAME \"$proj_name\"" >> ${B}/config.h
45 echo "#define PACKAGE_VERSION \"$version\"" >> ${B}/config.h
49 oe_runmake -C${S} DESTDIR=${B}
57 install -m 755 ${B}/libcolord.so ${D}${libdir}/libcolord.so.$version
62 install -m 755 ${B}/cd_create_profile ${D}${bindir}/
[all …]

12345678910>>...83