Lines Matching refs:uByte

177 const uByte d2utable[DECMAXD2U+1]=D2UTABLE;
225 decContext *, uByte, uInt *);
656 uByte bits=0; /* working flags [assume +ve] */ in decNumberFromString()
913 decAddOp(res, &dzero, rhs, set, (uByte)(rhs->bits & DECNEG), &status); in decNumberAbs()
1919 uByte sub; /* add or subtract */ in decNumberNextToward()
2126 uByte bits=0; /* result sign if errors */ in decNumberPower()
2204 uByte rbits=rhs->bits; /* save */ in decNumberPower()
2230 uByte rbits=rhs->bits; /* save */ in decNumberPower()
3584 uByte sign; /* rhs sign */ in decNumberCopySign()
3605 uByte * decNumberGetBCD(const decNumber *dn, uint8_t *bcd) { in decNumberGetBCD()
3606 uByte *ub=bcd+dn->digits-1; /* -> lsd */ in decNumberGetBCD()
3615 *ub=(uByte)(u%10); /* [*6554 trick inhibits, here] */ in decNumberGetBCD()
3639 decNumber * decNumberSetBCD(decNumber *dn, const uByte *bcd, uInt n) { in decNumberSetBCD()
3641 const uByte *ub=bcd; /* -> source msd */ in decNumberSetBCD()
3952 uByte negate, uInt *status) { in decAddOp()
3961 uByte bits; /* result bits */ in decAddOp()
4140 bits=(uByte)(rhs->bits^negate); /* assumed sign is now that of RHS */ in decAddOp()
4199 res->bits=(uByte)(bits&DECNEG); /* it's now safe to overwrite.. */ in decAddOp()
4399 uByte bits; /* working sign */ in decDivideOp()
4822 res->bits=(uByte)(bits&DECNEG); /* [cleaned] */ in decDivideOp()
4925 res->bits=(uByte)(bits&DECNEG); /* [cleaned] */ in decDivideOp()
4990 uByte bits; /* result sign */ in decMultiplyOp()
5050 bits=(uByte)((lhs->bits^rhs->bits)&DECNEG); in decMultiplyOp()
6160 uByte merged; /* work */
6266 uByte slhs=(lhs->bits & DECNEG);
6267 uByte srhs=(rhs->bits & DECNEG);
7035 static const uByte resmap[10]={0, 3, 3, 3, 3, 5, 7, 7, 7, 7};
7497 uByte sign=dn->bits&DECNEG; /* clean and save sign bit */
8276 uByte *b, *b0; /* .. */
8280 b0=(uByte *)alloc; /* as bytes */
8304 uByte *b, *b0; /* work */
8307 b0=(uByte *)alloc; /* as bytes */