mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
typofixes - v4
Signed-off-by: Veres Lajos <vlajos@gmail.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
33b23b4b5e
commit
67cc32ebfd
35 changed files with 47 additions and 48 deletions
|
@ -186,7 +186,7 @@ uInt decContextGetStatus(decContext *context) {
|
|||
/* newstatus is the source for the bits to be restored */
|
||||
/* mask indicates the bits to be restored (the status bit that */
|
||||
/* corresponds to each 1 bit in the mask is set to the value of */
|
||||
/* the correspnding bit in newstatus) */
|
||||
/* the corresponding bit in newstatus) */
|
||||
/* returns context */
|
||||
/* */
|
||||
/* No error is possible. */
|
||||
|
|
|
@ -2238,7 +2238,7 @@ decNumber * decNumberPower(decNumber *res, const decNumber *lhs,
|
|||
/* if a negative power the constant 1 is needed, and if not subset */
|
||||
/* invert the lhs now rather than inverting the result later */
|
||||
if (decNumberIsNegative(rhs)) { /* was a **-n [hence digits>0] */
|
||||
decNumber *inv=invbuff; /* asssume use fixed buffer */
|
||||
decNumber *inv=invbuff; /* assume use fixed buffer */
|
||||
decNumberCopy(&dnOne, dac); /* dnOne=1; [needed now or later] */
|
||||
#if DECSUBSET
|
||||
if (set->extended) { /* need to calculate 1/lhs */
|
||||
|
@ -3849,7 +3849,7 @@ static void decToString(const decNumber *dn, char *string, Flag eng) {
|
|||
/* */
|
||||
/* Addition, especially x=x+1, is speed-critical. */
|
||||
/* The static buffer is larger than might be expected to allow for */
|
||||
/* calls from higher-level funtions (notable exp). */
|
||||
/* calls from higher-level functions (notably exp). */
|
||||
/* ------------------------------------------------------------------ */
|
||||
static decNumber * decAddOp(decNumber *res, const decNumber *lhs,
|
||||
const decNumber *rhs, decContext *set,
|
||||
|
@ -4263,7 +4263,7 @@ static decNumber * decAddOp(decNumber *res, const decNumber *lhs,
|
|||
/* long subtractions. These are acc and var1 respectively. */
|
||||
/* var1 is a copy of the lhs coefficient, var2 is the rhs coefficient.*/
|
||||
/* The static buffers may be larger than might be expected to allow */
|
||||
/* for calls from higher-level funtions (notable exp). */
|
||||
/* for calls from higher-level functions (notably exp). */
|
||||
/* ------------------------------------------------------------------ */
|
||||
static decNumber * decDivideOp(decNumber *res,
|
||||
const decNumber *lhs, const decNumber *rhs,
|
||||
|
@ -5254,7 +5254,7 @@ static decNumber * decMultiplyOp(decNumber *res, const decNumber *lhs,
|
|||
/* exp(-x) where x can be the tiniest number (Ntiny). */
|
||||
/* */
|
||||
/* 2. Normalizing x to be <=0.1 (instead of <=1) reduces loop */
|
||||
/* iterations by appoximately a third with additional (although */
|
||||
/* iterations by approximately a third with additional (although */
|
||||
/* diminishing) returns as the range is reduced to even smaller */
|
||||
/* fractions. However, h (the power of 10 used to correct the */
|
||||
/* result at the end, see below) must be kept <=8 as otherwise */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue