Searched refs:blength (Results 1 – 1 of 1) sorted by relevance
/openbsd-src/gnu/gcc/libdecnumber/ |
H A D | decNumber.c | 4028 decUnitCompare (const Unit * a, Int alength, const Unit * b, Int blength, Int exp) in decUnitCompare() argument 4039 if (alength > blength) in decUnitCompare() 4041 if (alength < blength) in decUnitCompare() 4058 if (alength > blength + (Int) D2U (exp)) in decUnitCompare() 4060 if (alength + 1 < blength + (Int) D2U (exp)) in decUnitCompare() 4066 need = blength + D2U (exp); /* maximum real length of B */ in decUnitCompare() 4082 accunits = decUnitAddSub (a, alength, b, blength, expunits, acc, in decUnitCompare() 4149 const Unit * b, Int blength, Int bshift, Unit * c, Int m) in decUnitAddSub() argument 4162 if (alength < 1 || blength < 1) in decUnitAddSub() 4163 printf ("decUnitAddSub: alen blen m %d %d [%d]\n", alength, blength, m); in decUnitAddSub() [all …]
|