Home | History | Annotate | Download | only in switchback

Lines Matching full:u16

455 #define u16 unsigned short
514 u16 mantissa[INTERNAL_FPF_PRECISION];
530 static int IsMantissaZero(u16 *mant);
531 static void Add16Bits(u16 *carry,u16 *a,u16 b,u16 c);
532 static void Sub16Bits(u16 *borrow,u16 *a,u16 b,u16 c);
533 static void ShiftMantLeft1(u16 *carry,u16 *mantissa);
534 static void ShiftMantRight1(u16 *carry,u16 *mantissa);
753 static int IsMantissaZero(u16 *mant)
770 static void Add16Bits(u16 *carry,
771 u16 *a,
772 u16 b,
773 u16 c)
784 *carry=(u16)((accum & 0x00010000) ? 1 : 0); /* New carry */
785 *a=(u16)(accum & 0xFFFF); /* Result is lo 16 bits */
794 static void Sub16Bits(u16 *borrow,
795 u16 *a,
796 u16 b,
797 u16 c)
805 *a=(u16)(accum & 0xFFFF);
816 static void ShiftMantLeft1(u16 *carry,
817 u16 *mantissa)
821 u16 accum; /* Temporary holding placed */
841 static void ShiftMantRight1(u16 *carry,
842 u16 *mantissa)
846 u16 accum;
872 u16 carry; /* Self-explanatory */
873 u16 *mantissa;
916 u16 carry;
1074 u16 borrow;
1075 u16 carry;
1283 u16 carry;
1284 u16 extra_bits[INTERNAL_FPF_PRECISION];
1445 u16 carry;
1446 u16 extra_bits[INTERNAL_FPF_PRECISION];
1602 u16 myword; /* Used to hold converted stuff */
1640 myword=(u16)((mylong >> 16) & 0xFFFFL);
1642 myword=(u16)(mylong & 0xFFFFL);
1675 u16 carryaccum; /* Carry accumulator */
1676 u16 mycarry; /* Local for carry */