Home
last modified time | relevance | path

Searched full:bias (Results 1 – 22 of 22) sorted by relevance

/qemu/hw/misc/
H A Dallwinner-h3-ccu.c46 REG_PLL_CPUX_BIAS = 0x0220, /* PLL CPUX Bias */
47 REG_PLL_AUDIO_BIAS = 0x0224, /* PLL Audio Bias */
48 REG_PLL_VIDEO_BIAS = 0x0228, /* PLL Video Bias */
49 REG_PLL_VE_BIAS = 0x022C, /* PLL VE Bias */
50 REG_PLL_DDR_BIAS = 0x0230, /* PLL DDR Bias */
51 REG_PLL_PERIPH0_BIAS = 0x0234, /* PLL Peripherals 0 Bias */
52 REG_PLL_GPU_BIAS = 0x023C, /* PLL GPU Bias */
53 REG_PLL_PERIPH1_BIAS = 0x0244, /* PLL Peripherals 1 Bias */
54 REG_PLL_DE_BIAS = 0x0248, /* PLL Display Engine Bias */
/qemu/tcg/
H A Ddebuginfo.c28 void debuginfo_report_elf(const char *name, int fd, uint64_t bias) in debuginfo_report_elf() argument
39 dwfl_report_elf(dwfl, name, name, fd, bias, true); in debuginfo_report_elf()
/qemu/include/tcg/
H A Ddebuginfo.h35 void debuginfo_report_elf(const char *name, int fd, uint64_t bias);
/qemu/libdecnumber/dpd/
H A Ddecimal32.c131 exp=dn->exponent+DECIMAL32_Bias; /* bias exponent */ in decimal32FromNumber()
144 exp=(uInt)(dn->exponent+DECIMAL32_Bias); /* bias exponent */ in decimal32FromNumber()
448 /* Get exponent continuation [does not remove bias] */
456 /* Set exponent continuation [does not apply bias] */
H A Ddecimal128.c135 exp=dn->exponent+DECIMAL128_Bias; /* bias exponent */ in decimal128FromNumber()
148 exp=(uInt)(dn->exponent+DECIMAL128_Bias); /* bias exponent */ in decimal128FromNumber()
519 /* Get exponent continuation [does not remove bias] */
528 /* Set exponent continuation [does not apply bias] */
H A Ddecimal64.c139 exp=dn->exponent+DECIMAL64_Bias; /* bias exponent */ in decimal64FromNumber()
152 exp=(uInt)(dn->exponent+DECIMAL64_Bias); /* bias exponent */ in decimal64FromNumber()
508 /* Get exponent continuation [does not remove bias] */
516 /* Set exponent continuation [does not apply bias] */
/qemu/include/libdecnumber/dpd/
H A Ddecimal128.h47 #define DECIMAL128_Bias 6176 /* bias for the exponent */
H A Ddecimal64.h48 #define DECIMAL64_Bias 398 /* bias for the exponent */
H A Ddecimal32.h47 #define DECIMAL32_Bias 101 /* bias for the exponent */
/qemu/hw/net/
H A De1000_regs.h202 #define PHY_BIAS_1 0x1d /* Bias Setting Register */
203 #define PHY_BIAS_2 0x1e /* Bias Setting Register */
/qemu/linux-headers/asm-mips/
H A Dkvm.h139 * Set 1: Master re-enable CP0_Count with unchanged bias, handling timer
/qemu/tests/image-fuzzer/qcow2/
H A Dlayout.py113 self.bias = random.uniform(0.2, 0.5)
484 return random.random() < self.bias
/qemu/target/ppc/
H A Ddfp_helper.c1283 int bias; \
1295 bias = 398; \
1301 bias = 6176; \
1321 dfp.t.exponent = exp - bias; \
H A Dfpu_helper.c91 * The first 3 terms compute the float64 exponent. We then bias in helper_todouble()
/qemu/target/mips/tcg/
H A Dmxu_translate.c1053 TCGv bias = tcg_temp_new(); in gen_mxu_d16mul() local
1059 tcg_gen_andi_tl(bias, mxu_CR, 0x4); in gen_mxu_d16mul()
1060 tcg_gen_brcondi_tl(TCG_COND_NE, bias, 0, l_apply_bias_l); in gen_mxu_d16mul()
1066 tcg_gen_brcondi_tl(TCG_COND_NE, bias, 0, l_apply_bias_r); in gen_mxu_d16mul()
1178 TCGv bias = tcg_temp_new(); in gen_mxu_d16mac() local
1184 tcg_gen_andi_tl(bias, mxu_CR, 0x4); in gen_mxu_d16mac()
1185 tcg_gen_brcondi_tl(TCG_COND_NE, bias, 0, l_apply_bias_l); in gen_mxu_d16mac()
1191 tcg_gen_brcondi_tl(TCG_COND_NE, bias, 0, l_apply_bias_r); in gen_mxu_d16mac()
/qemu/hw/audio/
H A Des1370.c86 #define CTRL_XCTL1 0x40000000 /* electret mic bias */
/qemu/tcg/sparc64/
H A Dtcg-target.c.inc976 * the stack bias is applied in temp_allocate_frame().
982 * TCG_TARGET_CALL_STACK_OFFSET includes the stack bias, but is
/qemu/target/arm/tcg/
H A Dsve_helper.c4738 /* denormal: bias - fractional_zeros */ in DO_ZPZ_FP()
4749 /* normal: exp - bias */ in DO_ZPZ_FP()
4766 /* denormal: bias - fractional_zeros */ in do_float32_logb_as_int()
4777 /* normal: exp - bias */ in do_float32_logb_as_int()
4794 /* denormal: bias - fractional_zeros */ in do_float64_logb_as_int()
4805 /* normal: exp - bias */ in do_float64_logb_as_int()
H A Dvec_helper.c2102 /* Normal number; adjust the bias. */
/qemu/target/i386/tcg/
H A Dfpu_helper.c1849 /* DP exponent bias */ in helper_fxtract()
/qemu/tcg/i386/
H A Dtcg-target.c.inc4554 * We must bias the inputs so that they become signed.
/qemu/disas/
H A Dm68k.c72 /* Bias added to a "true" exponent to form the biased exponent. It
4788 /* Don't bias zero's, denorms or NaNs. */ in floatformat_to_double()