Lines Matching refs:comb
83 uInt comb, exp; /* work */ in decimal32FromNumber() local
143 comb = (exp >> 3) & 0x18; /* combination field */ in decimal32FromNumber()
144 d32->bytes[0] = (uByte) (comb << 2); in decimal32FromNumber()
169 comb = 0x18 | (msd & 0x01) | ((exp >> 5) & 0x06); in decimal32FromNumber()
171 comb = (msd & 0x07) | ((exp >> 3) & 0x18); in decimal32FromNumber()
172 d32->bytes[0] = (uByte) (comb << 2); in decimal32FromNumber()
215 uInt comb = top >> 2; /* combination field */ in decimal32ToNumber() local
218 if (comb >= 0x18) in decimal32ToNumber()
220 msd = 8 + (comb & 0x01); in decimal32ToNumber()
221 exp = (comb & 0x06) << 5; /* MSBs */ in decimal32ToNumber()
225 msd = comb & 0x07; in decimal32ToNumber()
226 exp = (comb & 0x18) << 3; in decimal32ToNumber()