dvd               943 src/dps8/dps8_math128.c void __udivmodti3(UTItype div, UTItype dvd,UTItype *result,UTItype *remain);
dvd               944 src/dps8/dps8_math128.c UTItype __udivti3(UTItype div, UTItype dvd);
dvd               945 src/dps8/dps8_math128.c UTItype __umodti3(UTItype div, UTItype dvd);
dvd               947 src/dps8/dps8_math128.c UTItype __udivti3(UTItype div, UTItype dvd)
dvd               951 src/dps8/dps8_math128.c         __udivmodti3(div,dvd,&result,&remain);
dvd               956 src/dps8/dps8_math128.c void __udivmodti3(UTItype div, UTItype dvd,UTItype *result,UTItype *remain)
dvd               958 src/dps8/dps8_math128.c         UTItype z1 = dvd;
dvd               989 src/dps8/dps8_math128.c TItype __divti3(TItype div, TItype dvd)
dvd               999 src/dps8/dps8_math128.c         if (dvd < (TItype)0)
dvd              1002 src/dps8/dps8_math128.c             dvd = -dvd;
dvd              1006 src/dps8/dps8_math128.c           return (TItype)__udivti3(div,dvd);
dvd              1008 src/dps8/dps8_math128.c           return -((TItype)__udivti3(div,dvd));
dvd              1011 src/dps8/dps8_math128.c TItype __modti3(TItype div, TItype dvd)
dvd              1021 src/dps8/dps8_math128.c         if (dvd < (TItype)0)
dvd              1024 src/dps8/dps8_math128.c             dvd = -dvd;
dvd              1028 src/dps8/dps8_math128.c           return (TItype)__umodti3(div,dvd);
dvd              1030 src/dps8/dps8_math128.c           return ((TItype)0-(TItype)__umodti3(div,dvd));
dvd              1033 src/dps8/dps8_math128.c UTItype __umodti3(UTItype div, UTItype dvd)
dvd              1037 src/dps8/dps8_math128.c         __udivmodti3(div,dvd,&result,&remain);