| /openbmc/qemu/tests/unit/ |
| H A D | test-mul64.c | 15 uint64_t rh, rl; member 43 uint64_t rl, rh; in test_u() local 44 mulu64(&rl, &rh, test_u_data[i].a, test_u_data[i].b); in test_u() 45 g_assert_cmpuint(rl, ==, test_u_data[i].rl); in test_u() 55 uint64_t rl, rh; in test_s() local 56 muls64(&rl, &rh, test_s_data[i].a, test_s_data[i].b); in test_s() 57 g_assert_cmpuint(rl, ==, test_s_data[i].rl); in test_s()
|
| /openbmc/u-boot/drivers/bios_emulator/x86emu/ |
| H A D | ops2.c | 169 int mod, rl, rh; in x86emuOp2_set_byte() local 245 FETCH_DECODE_MODRM(mod, rh, rl); in x86emuOp2_set_byte() 247 destoffset = decode_rmXX_address(mod, rl); in x86emuOp2_set_byte() 251 destreg = DECODE_RM_BYTE_REGISTER(rl); in x86emuOp2_set_byte() 293 int mod, rl, rh; in x86emuOp2_bt_R() local 299 FETCH_DECODE_MODRM(mod, rh, rl); in x86emuOp2_bt_R() 301 srcoffset = decode_rmXX_address(mod, rl); in x86emuOp2_bt_R() 329 srcreg = DECODE_RM_LONG_REGISTER(rl); in x86emuOp2_bt_R() 338 srcreg = DECODE_RM_WORD_REGISTER(rl); in x86emuOp2_bt_R() 356 int mod, rl, rh; in x86emuOp2_shld_IMM() local [all …]
|
| H A D | ops.c | 206 int mod, rl, rh; in x86emuOp_genop_byte_RM_R() local 216 FETCH_DECODE_MODRM(mod, rh, rl); in x86emuOp_genop_byte_RM_R() 218 { destoffset = decode_rmXX_address(mod,rl); in x86emuOp_genop_byte_RM_R() 229 destreg = DECODE_RM_BYTE_REGISTER(rl); in x86emuOp_genop_byte_RM_R() 246 int mod, rl, rh; in x86emuOp_genop_word_RM_R() local 254 FETCH_DECODE_MODRM(mod, rh, rl); in x86emuOp_genop_word_RM_R() 257 destoffset = decode_rmXX_address(mod,rl); in x86emuOp_genop_word_RM_R() 285 destreg = DECODE_RM_LONG_REGISTER(rl); in x86emuOp_genop_word_RM_R() 294 destreg = DECODE_RM_WORD_REGISTER(rl); in x86emuOp_genop_word_RM_R() 312 int mod, rl, rh; in x86emuOp_genop_byte_R_RM() local [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/sdbus-c++/sdbus-c++-libsystemd/ |
| H A D | 0006-Use-uintmax_t-for-handling-rlim_t.patch | 61 @@ -307,13 +307,13 @@ int rlimit_format(const struct rlimit *rl, char **ret) { 62 if (rl->rlim_cur >= RLIM_INFINITY && rl->rlim_max >= RLIM_INFINITY) 64 else if (rl->rlim_cur >= RLIM_INFINITY) 65 - r = asprintf(&s, "infinity:" RLIM_FMT, rl->rlim_max); 66 + r = asprintf(&s, "infinity:" RLIM_FMT, (uintmax_t)rl->rlim_max); 67 else if (rl->rlim_max >= RLIM_INFINITY) 68 - r = asprintf(&s, RLIM_FMT ":infinity", rl->rlim_cur); 69 + r = asprintf(&s, RLIM_FMT ":infinity", (uintmax_t)rl->rlim_cur); 70 else if (rl->rlim_cur == rl->rlim_max) 71 - r = asprintf(&s, RLIM_FMT, rl->rlim_cur); [all …]
|
| /openbmc/openbmc/poky/meta/recipes-core/systemd/systemd/ |
| H A D | 0007-Use-uintmax_t-for-handling-rlim_t.patch | 61 @@ -310,13 +310,13 @@ int rlimit_format(const struct rlimit *rl, char **ret) { 62 if (rl->rlim_cur >= RLIM_INFINITY && rl->rlim_max >= RLIM_INFINITY) 64 else if (rl->rlim_cur >= RLIM_INFINITY) 65 - r = asprintf(&s, "infinity:" RLIM_FMT, rl->rlim_max); 66 + r = asprintf(&s, "infinity:" RLIM_FMT, (uintmax_t)rl->rlim_max); 67 else if (rl->rlim_max >= RLIM_INFINITY) 68 - r = asprintf(&s, RLIM_FMT ":infinity", rl->rlim_cur); 69 + r = asprintf(&s, RLIM_FMT ":infinity", (uintmax_t)rl->rlim_cur); 70 else if (rl->rlim_cur == rl->rlim_max) 71 - r = asprintf(&s, RLIM_FMT, rl->rlim_cur); [all …]
|
| /openbmc/qemu/target/riscv/ |
| H A D | m128_helper.c | 48 target_ulong rl, rh; in HELPER() local 52 rl = ul; in HELPER() 56 rl = int128_getlo(r); in HELPER() 61 return rl; in HELPER() 93 target_ulong rh, rl; in HELPER() local 97 rl = ul; in HELPER() 101 rl = int128_getlo(r); in HELPER() 106 return rl; in HELPER()
|
| /openbmc/u-boot/include/linux/ |
| H A D | math64.h | 194 } rl, rm, rn, rh, a0, b0; in mul_u64_u64_shr() local 200 rl.ll = mul_u32_u32(a0.l.low, b0.l.low); in mul_u64_u64_shr() 210 rl.l.high = c = (u64)rl.l.high + rm.l.low + rn.l.low; in mul_u64_u64_shr() 219 return rl.ll; in mul_u64_u64_shr() 221 return (rl.ll >> shift) | (rh.ll << (64 - shift)); in mul_u64_u64_shr() 240 } u, rl, rh; in mul_u64_u32_div() local 243 rl.ll = mul_u32_u32(u.l.low, mul); in mul_u64_u32_div() 244 rh.ll = mul_u32_u32(u.l.high, mul) + rl.l.high; in mul_u64_u32_div() 247 rl.l.high = do_div(rh.ll, divisor); in mul_u64_u32_div() 250 do_div(rl.ll, divisor); in mul_u64_u32_div() [all …]
|
| /openbmc/qemu/crypto/ |
| H A D | clmul.c | 98 uint64_t rl = 0, rh = 0; in clmul_64_gen() local 102 rl = m; in clmul_64_gen() 107 rl ^= (m << i) & mask; in clmul_64_gen() 110 return int128_make128(rl, rh); in clmul_64_gen()
|
| /openbmc/qemu/target/riscv/insn_trans/ |
| H A D | trans_rvm.c.inc | 50 static void gen_mul_i128(TCGv rl, TCGv rh, 58 tcg_gen_mulu2_tl(rl, rh, rs1l, rs2l); 71 static void gen_mulh_i128(TCGv rl, TCGv rh, 79 gen_mulhu_i128(rl, rh, rs1l, rs1h, rs2l, rs2h); 86 tcg_gen_sub2_tl(t0l, t0h, rl, rh, t0l, t0h); 87 tcg_gen_sub2_tl(rl, rh, t0l, t0h, t1l, t1h); 110 static void gen_mulhsu_i128(TCGv rl, TCGv rh, 117 gen_mulhu_i128(rl, rh, rs1l, rs1h, rs2l, rs2h); 121 tcg_gen_sub2_tl(rl, rh, rl, rh, t0l, t0h); 126 TCGv rl = tcg_temp_new(); [all …]
|
| /openbmc/u-boot/drivers/bios_emulator/include/x86emu/ |
| H A D | decode.h | 46 #define FETCH_DECODE_MODRM(mod,rh,rl) fetch_decode_modrm(&mod,&rh,&rl) argument
|
| /openbmc/openbmc/poky/meta/recipes-bsp/v86d/v86d/ |
| H A D | Update-x86emu-from-X.org.patch | 2182 int mod, rl, rh; 2187 DECODE_PRINTINSTR32(x86emu_fpu_op_d9_tab, mod, rh, rl); 2191 DECODE_PRINTF(x86emu_fpu_op_d9_tab1[(rh << 3) + rl]); 2197 destoffset = decode_rm00_address(rl); 2202 destoffset = decode_rm01_address(rl); 2207 destoffset = decode_rm10_address(rl); 2211 - stkelem = (u8)rl; 2218 + stkelem = (u8) rl; 2243 switch (rl) { 2259 switch (rl) { [all …]
|
| /openbmc/qemu/util/ |
| H A D | host-utils.c | 44 LL rl, rm, rn, rh, a0, b0; in mul64() local 50 rl.ll = (uint64_t)a0.l.low * b0.l.low; in mul64() 55 c = (uint64_t)rl.l.high + rm.l.low + rn.l.low; in mul64() 56 rl.l.high = c; in mul64() 62 *plow = rl.ll; in mul64()
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb/ |
| H A D | sblim-sfcb-1.3.15-fix-provider-debugging.patch | 8 (void **) &parms->req, &rl, &mqg);
|
| /openbmc/openbmc/poky/meta/recipes-core/readline/ |
| H A D | readline.inc | 56 SRC_URI:append:class-native = " file://rl-native.map" 57 LDFLAGS:append:class-native = " -Wl,--version-script=${UNPACKDIR}/rl-native.map"
|
| /openbmc/qemu/include/qemu/ |
| H A D | host-utils.h | 104 uint64_t rl, rh; in muldiv64_rounding() local 107 rl = (uint64_t)u.l.low * (uint64_t)b; in muldiv64_rounding() 109 rl += c - 1; in muldiv64_rounding() 112 rh += (rl >> 32); in muldiv64_rounding() 114 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c; in muldiv64_rounding()
|
| /openbmc/openbmc/meta-security/meta-tpm/recipes-core/systemd/ |
| H A D | systemd_%.bbappend | 15 $( grep -rl ^ConditionSecurity=measured-uki ${D} )
|
| /openbmc/qemu/linux-user/ |
| H A D | flatload.c | 150 static void old_reloc(struct lib_info *libinfo, uint32_t rl) in old_reloc() argument 159 offset = rl & 0x3fffffff; in old_reloc() 160 reloc_type = rl >> 30; in old_reloc()
|
| /openbmc/u-boot/drivers/video/ |
| H A D | ipu_regs.h | 259 u32 rl[5]; member 384 #define DC_RL_CH(ch, evt) (&dc_ch_offset(ch)->rl[evt / 2])
|
| /openbmc/u-boot/doc/ |
| H A D | README.rockusb | 50 - rl : Read blocks using LBA
|
| /openbmc/openbmc-tools/dbus-vis/ |
| H A D | ipmi_timeline_vis.js | 497 function MapXCoord(x, left_margin, right_margin, rl, rr) { argument 498 let ret = left_margin + (x - rl) / (rr - rl) * (right_margin - left_margin);
|
| /openbmc/openbmc/poky/meta/recipes-extended/sed/ |
| H A D | sed_4.9.bb | 51 for i in `grep -rl "sed/sed" ${D}${PTEST_PATH}`; do sed -e 's/..\/sed\/sed/sed/' -i $i; done
|
| /openbmc/qemu/disas/ |
| H A D | riscv.h | 208 uint8_t rl; member
|
| /openbmc/qemu/fpu/ |
| H A D | softfloat-parts.c.inc | 862 uint64_t dh, dl, rh, rl, sh, sl, uh, ul; /* 128-bit computation */ 1008 mul64To128(u64, r64, &rh, &rl); 1009 add128(rh, rl, rh, rl, &rh, &rl); 1012 mul128To256(a->frac_hi, a->frac_lo, rh, rl, &sh, &sl, &discard, &discard); 1013 mul128To256(sh, sl, rh, rl, &dh, &dl, &discard, &discard);
|
| /openbmc/qemu/target/loongarch/tcg/insn_trans/ |
| H A D | trans_vec.c.inc | 357 TCGv_i64 rh, rl, ah, al, bh, bl; 364 rl = tcg_temp_new_i64(); 376 func(rl, rh, al, ah, bl, bh); 379 set_vreg64(rl, a->vd, i * 2); 2127 static void tcg_gen_mulus2_i64(TCGv_i64 rl, TCGv_i64 rh, 2130 tcg_gen_mulsu2_i64(rl, rh, arg2, arg1); 2138 TCGv_i64 rh, rl, arg1, arg2; 2146 rl = tcg_temp_new_i64(); 2154 func(rl, rh, arg1, arg2); 2157 set_vreg64(rl, a->vd, 2 * i); [all …]
|
| /openbmc/u-boot/scripts/ |
| H A D | checkpatch.pl | 4584 my $rl = raw_line($linenr, $n); 4585 $herectx .= $rl . "\n"; 4586 last if $rl =~ /^[ \+].*\{/; 6062 my $rl = raw_line($linenr, $n); 6063 $herectx .= $rl . "\n"; 6064 $ok = 1 if ($rl =~ /^[ \+]\{/); 6065 $ok = 1 if ($rl =~ /\{/ && $n == 0); 6066 last if $rl =~ /^[ \+].*\{/;
|