dvd 951 src/dps8/dps8_math128.c void __udivmodti3(UTItype div, UTItype dvd,UTItype *result,UTItype *remain); dvd 952 src/dps8/dps8_math128.c UTItype __udivti3(UTItype div, UTItype dvd); dvd 953 src/dps8/dps8_math128.c UTItype __umodti3(UTItype div, UTItype dvd); dvd 955 src/dps8/dps8_math128.c UTItype __udivti3(UTItype div, UTItype dvd) dvd 959 src/dps8/dps8_math128.c __udivmodti3(div,dvd,&result,&remain); dvd 964 src/dps8/dps8_math128.c void __udivmodti3(UTItype div, UTItype dvd,UTItype *result,UTItype *remain) dvd 966 src/dps8/dps8_math128.c UTItype z1 = dvd; dvd 997 src/dps8/dps8_math128.c TItype __divti3(TItype div, TItype dvd) dvd 1007 src/dps8/dps8_math128.c if (dvd < (TItype)0) dvd 1010 src/dps8/dps8_math128.c dvd = -dvd; dvd 1014 src/dps8/dps8_math128.c return (TItype)__udivti3(div,dvd); dvd 1016 src/dps8/dps8_math128.c return -((TItype)__udivti3(div,dvd)); dvd 1019 src/dps8/dps8_math128.c TItype __modti3(TItype div, TItype dvd) dvd 1029 src/dps8/dps8_math128.c if (dvd < (TItype)0) dvd 1032 src/dps8/dps8_math128.c dvd = -dvd; dvd 1036 src/dps8/dps8_math128.c return (TItype)__umodti3(div,dvd); dvd 1038 src/dps8/dps8_math128.c return ((TItype)0-(TItype)__umodti3(div,dvd)); dvd 1041 src/dps8/dps8_math128.c UTItype __umodti3(UTItype div, UTItype dvd) dvd 1045 src/dps8/dps8_math128.c __udivmodti3(div,dvd,&result,&remain);