/openbmc/linux/drivers/pinctrl/sunplus/ |
H A D | sppctl_sp7021.c | 14 #define D(x, y) ((x) * 8 + (y)) macro 15 #define P(x, y) PINCTRL_PIN(D(x, y), D_PIS(x, y)) 18 D_PIS(0, 0), D_PIS(0, 1), D_PIS(0, 2), D_PIS(0, 3), 20 D_PIS(1, 0), D_PIS(1, 1), D_PIS(1, 2), D_PIS(1, 3), 22 D_PIS(2, 0), D_PIS(2, 1), D_PIS(2, 2), D_PIS(2, 3), 24 D_PIS(3, 0), D_PIS(3, 1), D_PIS(3, 2), D_PIS(3, 3), 25 D_PIS(3, 4), D_PIS(3, 5), D_PIS(3, 6), D_PIS(3, 7), 26 D_PIS(4, 0), D_PIS(4, 1), D_PIS(4, 2), D_PIS(4, 3), 28 D_PIS(5, 0), D_PIS(5, 1), D_PIS(5, 2), D_PIS(5, 3), 30 D_PIS(6, 0), D_PIS(6, 1), D_PIS(6, 2), D_PIS(6, 3), [all …]
|
/openbmc/linux/arch/arm64/crypto/ |
H A D | sha512-ce-core.S | 15 .irp b,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 17 .set .Lv\b\().2d, \b 85 ld1 {v\rc1\().2d}, [x4], #16 87 add v5.2d, v\rc0\().2d, v\in0\().2d 91 add v\i3\().2d, v\i3\().2d, v5.2d 94 sha512su0 v\in0\().2d, v\in1\().2d 96 sha512h q\i3, q6, v7.2d 98 sha512su1 v\in0\().2d, v\in2\().2d, v5.2d 100 add v\i4\().2d, v\i1\().2d, v\i3\().2d 101 sha512h2 q\i3, q\i1, v\i0\().2d [all …]
|
/openbmc/linux/arch/x86/crypto/ |
H A D | sha1_ssse3_asm.S | 117 mov 12(HASH_PTR), D 128 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 [all …]
|
H A D | nh-avx2-x86_64.S | 108 // 2 or 3 strides remain; do 2 more. 132 // PASS0_SUMS is (0A 0B 0C 0D) 133 // PASS1_SUMS is (1A 1B 1C 1D) 134 // PASS2_SUMS is (2A 2B 2C 2D) 135 // PASS3_SUMS is (3A 3B 3C 3D) 137 // (0A + 0B + 0C + 0D, 138 // 1A + 1B + 1C + 1D, 139 // 2A + 2B + 2C + 2D, 140 // 3A + 3B + 3C + 3D) 144 vpunpckhqdq PASS1_SUMS, PASS0_SUMS, T1 // T1 = (0B 1B 0D 1D) [all …]
|
/openbmc/linux/arch/loongarch/mm/ |
H A D | tlbex.S | 14 #define PTRS_PER_PGD_BITS (PAGE_SHIFT - 3) 15 #define PTRS_PER_PUD_BITS (PAGE_SHIFT - 3) 16 #define PTRS_PER_PMD_BITS (PAGE_SHIFT - 3) 17 #define PTRS_PER_PTE_BITS (PAGE_SHIFT - 3) 60 bstrpick.d ra, t0, PTRS_PER_PGD_BITS + PGDIR_SHIFT - 1, PGDIR_SHIFT 61 alsl.d t1, ra, t1, 3 62 #if CONFIG_PGTABLE_LEVELS > 3 63 ld.d t1, t1, 0 64 bstrpick.d ra, t0, PTRS_PER_PUD_BITS + PUD_SHIFT - 1, PUD_SHIFT 65 alsl.d t1, ra, t1, 3 [all …]
|
/openbmc/qemu/hw/display/ |
H A D | vga-helpers.h | 25 static inline void vga_draw_glyph_line(uint8_t *d, uint32_t font_data, in vga_draw_glyph_line() argument 28 ((uint32_t *)d)[0] = (-((font_data >> 7)) & xorcol) ^ bgcol; in vga_draw_glyph_line() 29 ((uint32_t *)d)[1] = (-((font_data >> 6) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line() 30 ((uint32_t *)d)[2] = (-((font_data >> 5) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line() 31 ((uint32_t *)d)[3] = (-((font_data >> 4) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line() 32 ((uint32_t *)d)[4] = (-((font_data >> 3) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line() 33 ((uint32_t *)d)[5] = (-((font_data >> 2) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line() 34 ((uint32_t *)d)[6] = (-((font_data >> 1) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line() 35 ((uint32_t *)d)[7] = (-((font_data >> 0) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line() 38 static void vga_draw_glyph8(uint8_t *d, int linesize, in vga_draw_glyph8() argument [all …]
|
/openbmc/qemu/disas/ |
H A D | sparc.c | 118 d rd register. 130 D crsd coprocessor register 136 3 SIAM mode (3 bits). (v9b) 191 #define F3I(x) (((x) & 0x1) << 13) /* Immediate field of format 3 insns. */ 357 { opcode, F3(2, op3, 0), F3(~2, ~op3, ~0)|ASI(~0), "1,2,d", 0, arch_mask }, \ 358 { opcode, F3(2, op3, 1), F3(~2, ~op3, ~1), "1,i,d", 0, arch_mask }, \ 359 { opcode, F3(2, op3, 1), F3(~2, ~op3, ~1), "i,1,d", 0, arch_mask } 363 { "ld", F3(3, 0x00, 0), F3(~3, ~0x00, ~0), "[1+2],d", 0, v6 }, 364 { "ld", F3(3, 0x00, 0), F3(~3, ~0x00, ~0)|RS2_G0, "[1],d", 0, v6 }, /* ld [rs1+%g0],d */ 365 { "ld", F3(3, 0x00, 1), F3(~3, ~0x00, ~1), "[1+i],d", 0, v6 }, [all …]
|
/openbmc/qemu/target/arm/tcg/ |
H A D | crypto_helper.c | 29 #define CR_ST_WORD(state, i) ((state).words[(3 - (i)) ^ 2]) 66 t.d[0] = st->d[1] ^ rk->d[1]; in HELPER() 67 t.d[1] = st->d[0] ^ rk->d[0]; in HELPER() 69 ad->d[0] = t.d[1]; in HELPER() 70 ad->d[1] = t.d[0]; in HELPER() 91 t.d[0] = st->d[1] ^ rk->d[1]; in HELPER() 92 t.d[1] = st->d[0] ^ rk->d[0]; in HELPER() 94 ad->d[0] = t.d[1]; in HELPER() 95 ad->d[1] = t.d[0]; in HELPER() 115 t.d[0] = st->d[1]; in HELPER() [all …]
|
/openbmc/linux/fs/smb/common/ |
H A D | cifs_md4.c | 50 #define ROUND1(a,b,c,d,k,s) (a = lshift(a + F(b,c,d) + k, s)) argument 51 #define ROUND2(a,b,c,d,k,s) (a = lshift(a + G(b,c,d) + k + (u32)0x5A827999,s)) argument 52 #define ROUND3(a,b,c,d,k,s) (a = lshift(a + H(b,c,d) + k + (u32)0x6ED9EBA1,s)) argument 56 u32 a, b, c, d; in md4_transform() local 61 d = hash[3]; in md4_transform() 63 ROUND1(a, b, c, d, in[0], 3); in md4_transform() 64 ROUND1(d, a, b, c, in[1], 7); in md4_transform() 65 ROUND1(c, d, a, b, in[2], 11); in md4_transform() 66 ROUND1(b, c, d, a, in[3], 19); in md4_transform() 67 ROUND1(a, b, c, d, in[4], 3); in md4_transform() [all …]
|
/openbmc/u-boot/drivers/ddr/fsl/ |
H A D | interactive.c | 289 DIMM_PARM_HEX(dq_mapping[3]), in fsl_ddr_dimm_parameters_edit() 390 DIMM_PARM_HEX(dq_mapping[3]), in print_dimm_parameters() 523 CTRL_OPTIONS_CS(3, odt_rd_cfg), in fsl_ddr_options_edit() 524 CTRL_OPTIONS_CS(3, odt_wr_cfg), in fsl_ddr_options_edit() 538 CTRL_OPTIONS_CS(3, odt_rtt_norm), in fsl_ddr_options_edit() 539 CTRL_OPTIONS_CS(3, odt_rtt_wr), in fsl_ddr_options_edit() 563 * These can probably be changed to 2T_EN and 3T_EN in fsl_ddr_options_edit() 624 CFG_REGS_CS(3, bnds), in print_fsl_memctl_config_regs() 625 CFG_REGS_CS(3, config), in print_fsl_memctl_config_regs() 626 CFG_REGS_CS(3, config_2), in print_fsl_memctl_config_regs() [all …]
|
/openbmc/linux/Documentation/fb/ |
H A D | viafb.modes | 29 # D: 25.175 MHz, H: 31.469 kHz, V: 59.94 Hz 32 # D: 24.823 MHz, H: 39.780 kHz, V: 60.00 Hz 33 geometry 480 640 480 640 32 timings 39722 72 24 19 1 48 3 endmode 41 # 8 chars 3 lines 53 # D: 31.50 MHz, H: 37.500 kHz, V: 75.00 Hz 54 geometry 640 480 640 480 32 timings 31747 120 16 16 1 64 3 endmode 62 # 7 chars 3 lines 74 # D: 36.000 MHz, H: 43.269 kHz, V: 85.00 Hz 75 geometry 640 480 640 480 32 timings 27777 80 56 25 1 56 3 endmode 83 # 8 chars 3 lines [all …]
|
/openbmc/linux/crypto/ |
H A D | md4.c | 63 #define ROUND1(a,b,c,d,k,s) (a = lshift(a + F(b,c,d) + k, s)) argument 64 #define ROUND2(a,b,c,d,k,s) (a = lshift(a + G(b,c,d) + k + (u32)0x5A827999,s)) argument 65 #define ROUND3(a,b,c,d,k,s) (a = lshift(a + H(b,c,d) + k + (u32)0x6ED9EBA1,s)) argument 69 u32 a, b, c, d; in md4_transform() local 74 d = hash[3]; in md4_transform() 76 ROUND1(a, b, c, d, in[0], 3); in md4_transform() 77 ROUND1(d, a, b, c, in[1], 7); in md4_transform() 78 ROUND1(c, d, a, b, in[2], 11); in md4_transform() 79 ROUND1(b, c, d, a, in[3], 19); in md4_transform() 80 ROUND1(a, b, c, d, in[4], 3); in md4_transform() [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/oelib/ |
H A D | utils.py | 23 d = bb.data_smart.DataSmart() 24 d.setVar("PN", "foo") 26 d.setVar("PACKAGES", "foo foo-doc foo-dev") 27 pkgs = packages_filter_out_system(d) 30 d.setVar("PACKAGES", "foo foo-doc foo-data foo-dev") 31 pkgs = packages_filter_out_system(d) 34 d.setVar("PACKAGES", "foo foo-locale-en-gb") 35 pkgs = packages_filter_out_system(d) 38 d.setVar("PACKAGES", "foo foo-data foo-locale-en-gb") 39 pkgs = packages_filter_out_system(d) [all …]
|
/openbmc/openbmc/poky/meta/recipes-connectivity/openssl/ |
H A D | openssl_3.4.0.bb | 19 file://environment.d-openssl.sh \ 39 EXTRA_OECONF = "${@bb.utils.contains('PTEST_ENABLED', '1', '', 'no-tests', d)}" 141 …# WARNING: do not set compiler/linker flags (-I/-D etc.) in EXTRA_OECONF, as they will fully repla… 144 test -d "$PERLEXTERNAL" || bberror "PERLEXTERNAL '$PERLEXTERNAL' not found!" 146 …S} ${DEPRECATED_CRYPTO_FLAGS} --prefix=${prefix} --openssldir=${libdir}/ssl-3 --libdir=${baselib} … 152 if test -d ${B}/test; then 158 …STDIR="${D}" MANDIR="${mandir}" MANSUFFIX=ssl install_sw install_ssldirs ${@bb.utils.contains('PAC… 165 install -d ${D}${sysconfdir}/ssl 166 mv ${D}${libdir}/ssl-3/certs \ 167 ${D}${libdir}/ssl-3/private \ [all …]
|
/openbmc/linux/drivers/acpi/acpica/ |
H A D | dbstats.c | 1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 47 #define CMD_STAT_MISC 3 399 acpi_os_printf("Common %3d\n", in acpi_db_display_statistics() 401 acpi_os_printf("Number %3d\n", in acpi_db_display_statistics() 403 acpi_os_printf("String %3d\n", in acpi_db_display_statistics() 405 acpi_os_printf("Buffer %3d\n", in acpi_db_display_statistics() 407 acpi_os_printf("Package %3d\n", in acpi_db_display_statistics() 409 acpi_os_printf("BufferField %3d\n", in acpi_db_display_statistics() 411 acpi_os_printf("Device %3d\n", in acpi_db_display_statistics() 413 acpi_os_printf("Event %3d\n", in acpi_db_display_statistics() [all …]
|
/openbmc/linux/Documentation/staging/ |
H A D | lzo.rst | 51 length += constant (generally 2 or 3) 59 After any instruction except the large literal copy, 0, 1, 2 or 3 literals 70 for the distance, thus requiring 3 bytes. 111 18..21 : copy 0..3 literals 112 state = (byte - 17) = 0..3 [ copy <state> literals ] 129 length = 3 + (L ?: 15 + (zero_bytes * 255) + non_zero_byte) 132 If last instruction used to copy between 1 to 3 literals (encoded in 139 0 0 0 0 D D S S (0..15) : copy 2 bytes from <= 1kB distance 143 distance = (H << 2) + D + 1 146 state == 4), the instruction becomes a copy of a 3-byte block from the [all …]
|
/openbmc/openbmc/meta-openembedded/meta-filesystems/recipes-filesystems/ntfs-3g-ntfsprogs/ |
H A D | ntfs-3g-ntfsprogs_2022.10.3.bb | 1 DESCRIPTION = "The NTFS-3G driver is an open source, freely available NTFS driver for Linux with re… 2 HOMEPAGE = "http://www.ntfs-3g.org/" 4 PROVIDES = "ntfsprogs ntfs-3g" 9 SRC_URI = "http://tuxera.com/opensource/ntfs-3g_ntfsprogs-${PV}.tgz \ 10 file://0001-libntfs-3g-Makefile.am-fix-install-failed-while-host.patch \ 13 S = "${WORKDIR}/ntfs-3g_ntfsprogs-${PV}" 16 UPSTREAM_CHECK_URI = "https://www.tuxera.com/community/open-source-ntfs-3g/" 17 UPSTREAM_CHECK_REGEX = "ntfs-3g_ntfsprogs-(?P<pver>\d+(\.\d+)+)\.tgz" 27 PACKAGES =+ "ntfs-3g ntfsprogs libntfs-3g" 29 FILES:ntfs-3g = "${base_sbindir}/*.ntfs-3g ${bindir}/ntfs-3g* ${base_sbindir}/mount.ntfs" [all …]
|
/openbmc/qemu/target/sparc/ |
H A D | vis_helper.c | 31 * past implementations of these instructions have ignored R[rs2]{63:3} in helper_array8() 40 target_ulong lower_x = x_int & 3; in helper_array8() 41 target_ulong lower_y = y_int & 3; in helper_array8() 66 #define VIS_W64(n) w[3 - (n)] 67 #define VIS_SW64(n) sw[3 - (n)] 70 #define VIS_B32(n) b[3 - (n)] 91 float64 d; member 104 VIS64 d; in helper_fpmerge() local 108 d.ll = 0; in helper_fpmerge() 110 d.VIS_B64(7) = s1.VIS_B32(3); in helper_fpmerge() [all …]
|
/openbmc/linux/tools/testing/selftests/hid/tests/ |
H A D | test_tablet.py | 481 assert len(events) >= 3 # X, Y, SYN 601 assert len(events) == 3 # X, Y, SYN 651 assert len(events) == 3 # X, Y, SYN 703 …d 09 04 a1 01 85 04 09 22 a1 00 09 42 15 00 25 01 75 01 95 01 81 02 09 32 15 00 25 01 81 02 09 51 … 711 …d 09 04 a1 01 85 04 09 22 a1 00 09 42 15 00 25 01 75 01 95 01 81 02 09 32 15 00 25 01 81 02 09 51 … 719 …d 09 04 a1 01 85 04 09 22 a1 00 09 42 15 00 25 01 75 01 95 01 81 02 09 32 15 00 25 01 81 02 09 51 … 727 …d 09 04 a1 01 85 04 09 22 a1 00 09 42 15 00 25 01 75 01 95 01 81 02 09 32 15 00 25 01 81 02 09 51 … 735 …d 09 04 a1 01 85 04 09 22 a1 00 09 42 15 00 25 01 75 01 95 01 81 02 09 32 15 00 25 01 81 02 09 51 … 743 …d 09 04 a1 01 85 04 09 22 a1 00 09 42 15 00 25 01 75 01 95 01 81 02 09 32 15 00 25 01 81 02 09 51 … 751 …d 09 04 a1 01 85 30 09 22 a1 02 09 42 15 00 25 01 75 01 95 01 81 02 09 32 81 02 09 47 81 02 95 05 … [all …]
|
H A D | test_multitouch.py | 31 "SLOT_IS_CONTACTNUMBER": BIT(3), 224 elif value == 3: 492 …d 09 06 15 00 26 ff 00 a1 01 85 02 75 08 95 3f 09 00 82 02 01 95 3f 09 00 92 02 01 c0 05 0d 09 04 … 501 return super().create_report(data, global_data=global_data, reportID=3) 509 return absinfo is not None and absinfo.resolution == 3 690 """Send 3 touches in the first 3 slots. 700 t2 = Touch(3, 250, 300) 745 Touch(i, (i + 3) * 20, (i + 3) * 20 + 5) 1111 "uhid test 3m_0596_0500", 1112 …d 09 0e a1 01 85 11 09 23 a1 02 09 52 09 53 15 00 25 0a 75 08 95 02 b1 02 c0 c0 09 04 a1 01 85 10 … [all …]
|
/openbmc/qemu/tests/tcg/xtensa/ |
H A D | test_dfp0_arith.S | 33 test_op2 add.d, f6, f7, f8, F64_MAX, F64_MAX, \ 40 test_op2 add.d, f6, f7, f8, F64_1, F64_PINF, \ 45 test_op2 add.d, f0, f1, f2, F64_PINF, F64_NINF, \ 52 test_op2 add.d, f9, f10, f11, F64_1, F64_QNAN(1), \ 56 test_op2 add.d, f12, f13, f14, F64_1, F64_SNAN(1), \ 61 test_op2 add.d, f15, f0, f1, F64_SNAN(1), F64_SNAN(2), \ 65 test_op2 add.d, f5, f6, f7, F64_QNAN(1), F64_SNAN(2), \ 69 test_op2 add.d, f8, f9, f10, F64_SNAN(1), F64_QNAN(2), \ 76 test_op2 sub.d, f6, f7, f8, F64_MIN_NORM | 1, F64_MIN_NORM, \ 82 test_op2 mul.d, f0, f1, f2, F64_1 | 1, F64_1 | 1, \ [all …]
|
/openbmc/linux/arch/ia64/lib/ |
H A D | copy_page_mck.S | 32 * the prefetches. The four relevant points in the pipelined are called A, B, C, D: 35 * into L1D and p[D] is TRUE if a cacheline needs to be copied. 98 #define D (C + 3) macro 99 #define N (D + 1) 106 .rotr v[2*PREFETCH_DIST], n[D-C+1] 125 add src1 = 3*8, in1 // first t3 src 127 add dst1 = 3*8, in0 // first t3 dst 143 (p[D]) ld8 t2 = [src0], 3*8 // M0 144 (p[D]) ld8 t4 = [src1], 3*8 // M1 146 (p[D]) st8 [dst_pre_l2] = n[D-C], 128 // M3 prefetch dst from L2 [all …]
|
/openbmc/linux/scripts/mod/ |
H A D | sumversion.c | 67 #define ROUND1(a,b,c,d,k,s) (a = lshift(a + F(b,c,d) + k, s)) argument 68 #define ROUND2(a,b,c,d,k,s) (a = lshift(a + G(b,c,d) + k + (uint32_t)0x5A827999,s)) argument 69 #define ROUND3(a,b,c,d,k,s) (a = lshift(a + H(b,c,d) + k + (uint32_t)0x6ED9EBA1,s)) argument 90 uint32_t a, b, c, d; in md4_transform() local 95 d = hash[3]; in md4_transform() 97 ROUND1(a, b, c, d, in[0], 3); in md4_transform() 98 ROUND1(d, a, b, c, in[1], 7); in md4_transform() 99 ROUND1(c, d, a, b, in[2], 11); in md4_transform() 100 ROUND1(b, c, d, a, in[3], 19); in md4_transform() 101 ROUND1(a, b, c, d, in[4], 3); in md4_transform() [all …]
|
/openbmc/linux/arch/powerpc/crypto/ |
H A D | aes-tab-4k.S | 25 #define R(a, b, c, d) \ argument 26 0x##a##b##c##d, 0x##d##a##b##c, 0x##c##d##a##b, 0x##b##c##d##a 34 .long R(ee, 77, 77, 99), R(f6, 7b, 7b, 8d) 35 .long R(ff, f2, f2, 0d), R(d6, 6b, 6b, bd) 38 .long R(ce, 67, 67, a9), R(56, 2b, 2b, 7d) 40 .long R(4d, ab, ab, e6), R(ec, 76, 76, 9a) 41 .long R(8f, ca, ca, 45), R(1f, 82, 82, 9d) 42 .long R(89, c9, c9, 40), R(fa, 7d, 7d, 87) 50 .long R(3d, 93, 93, ae), R(4c, 26, 26, 6a) 51 .long R(6c, 36, 36, 5a), R(7e, 3f, 3f, 41) [all …]
|
/openbmc/linux/tools/perf/arch/x86/tests/ |
H A D | intel-pt-test.c | 42 {8, {0x02, 0xa3, 3}, 0, {INTEL_PT_TNT, 1, 0x1a302ULL << 47}, 0, 0 }, 47 {3, {0x2d, 1, 2}, 0, {INTEL_PT_TIP, 1, 0x201}, 0, 0 }, 48 {5, {0x4d, 1, 2, 3, 4}, 0, {INTEL_PT_TIP, 2, 0x4030201}, 0, 0 }, 49 {7, {0x6d, 1, 2, 3, 4, 5, 6}, 0, {INTEL_PT_TIP, 3, 0x60504030201}, 0, 0 }, 50 {7, {0x8d, 1, 2, 3, 4, 5, 6}, 0, {INTEL_PT_TIP, 4, 0x60504030201}, 0, 0 }, 51 {9, {0xcd, 1, 2, 3, 4, 5, 6, 7, 8}, 0, {INTEL_PT_TIP, 6, 0x807060504030201}, 0, 0 }, 54 {3, {0x31, 1, 2}, 0, {INTEL_PT_TIP_PGE, 1, 0x201}, 0, 0 }, 55 {5, {0x51, 1, 2, 3, 4}, 0, {INTEL_PT_TIP_PGE, 2, 0x4030201}, 0, 0 }, 56 {7, {0x71, 1, 2, 3, 4, 5, 6}, 0, {INTEL_PT_TIP_PGE, 3, 0x60504030201}, 0, 0 }, 57 {7, {0x91, 1, 2, 3, 4, 5, 6}, 0, {INTEL_PT_TIP_PGE, 4, 0x60504030201}, 0, 0 }, [all …]
|