Lines Matching refs:DPUNS
148 DPUNS m64Mac(DPUNS u, FICL_UNS mul, FICL_UNS add) in m64Mac()
150 DPUNS resultLo = ficlLongMul(u.lo, mul); in m64Mac()
151 DPUNS resultHi = ficlLongMul(u.hi, mul); in m64Mac()
170 DPUNS prod; in m64MulI()
222 void u64Push(FICL_STACK *pStack, DPUNS u64) in u64Push()
244 DPUNS u64Pop(FICL_STACK *pStack) in u64Pop()
246 DPUNS ret; in u64Pop()
315 UNS16 m64UMod(DPUNS *pUD, UNS16 base) in m64UMod()
317 DPUNS ud; in m64UMod()
319 DPUNS result; in m64UMod()
355 DPUNS m64Add(DPUNS x, DPUNS y) in m64Add()
357 DPUNS result; in m64Add()
380 DPUNS m64Sub(DPUNS x, DPUNS y) in m64Sub()
382 DPUNS result; in m64Sub()
400 DPUNS m64ASL( DPUNS x ) in m64ASL()
402 DPUNS result; in m64ASL()
420 DPUNS m64ASR( DPUNS x ) in m64ASR()
422 DPUNS result; in m64ASR()
439 DPUNS m64Or( DPUNS x, DPUNS y ) in m64Or()
441 DPUNS result; in m64Or()
454 int m64Compare(DPUNS x, DPUNS y) in m64Compare()
493 DPUNS ficlLongMul(FICL_UNS x, FICL_UNS y) in ficlLongMul()
495 DPUNS result = { 0, 0 }; in ficlLongMul()
496 DPUNS addend; in ficlLongMul()
520 UNSQR ficlLongDiv(DPUNS q, FICL_UNS y) in ficlLongDiv()
523 DPUNS quotient; in ficlLongDiv()
524 DPUNS subtrahend; in ficlLongDiv()
525 DPUNS mask; in ficlLongDiv()