Searched refs:borrow (Results 1 – 7 of 7) sorted by relevance
| /openbmc/qemu/target/hexagon/ |
| H A D | fma_emu.c | 93 static Int128 int128_sub_borrow(Int128 a, Int128 b, int borrow) in int128_sub_borrow() argument 96 if (borrow != 0) { in int128_sub_borrow() 172 int borrow; in accum_sub() local 211 borrow = (b.round << 2) | (b.guard << 1) | b.sticky; in accum_sub() 212 ret.mant = int128_sub_borrow(a.mant, b.mant, (borrow != 0)); in accum_sub() 213 borrow = 0 - borrow; in accum_sub() 214 ret.guard = (borrow >> 2) & 1; in accum_sub() 215 ret.round = (borrow >> 1) & 1; in accum_sub() 216 ret.sticky = (borrow >> 0) & 1; in accum_sub()
|
| H A D | attribs_def.h.inc | 72 DEF_ATTRIB(CVI_VS_3SRC, "This shift needs to borrow a source register", "", "")
|
| /openbmc/qemu/docs/devel/ |
| H A D | tcg-ops.rst | 628 borrow bit provided by the host architecture. 630 identical to the borrow bit. Thus the addc\* and subb\* 636 input borrow bit provided by the host architecture. 637 The output borrow bit need not be computed. 642 input borrow bit provided by the host architecture, 643 and also compute the output borrow bit. 648 borrow bit provided by the host architecture. This is akin to 649 *subbio* with a fixed borrow-in value of 1.
|
| /openbmc/openbmc/poky/meta/recipes-bsp/v86d/v86d/ |
| H A D | Update-x86emu-from-X.org.patch | 15217 - /* calculate the borrow chain. See note at top */ 15223 + /* calculate the borrow chain. See note at top */ 15253 - /* calculate the borrow chain. See note at top */ 15254 + /* calculate the borrow chain. See note at top */ 15288 - /* calculate the borrow chain. See note at top */ 15294 + /* calculate the borrow chain. See note at top */ 15393 - /* calculate the borrow chain. See note at top */ 15400 + /* calculate the borrow chain. See note at top */ 15429 /* calculate the borrow chain. See note at top */ 15462 /* calculate the borrow chain. See note at top */ [all …]
|
| /openbmc/docs/designs/ |
| H A D | virtual-media.md | 94 > diskless - if you use an initrd) to borrow disk space from other computers.
|
| /openbmc/qemu/tcg/sparc64/ |
| H A D | tcg-target.c.inc | 1861 /* Select the correct result based on actual borrow value. */ 1917 tcg_out_set_carry(s); /* borrow == carry */
|
| /openbmc/qemu/tcg/s390x/ |
| H A D | tcg-target.c.inc | 1469 * As above, but we're looking for borrow, or !carry. 1470 * The second insn computes d - d - borrow, or -1 for true
|