Lines Matching refs:Dividend

64 int __divsi3(int Dividend, int Divisor)  in __divsi3()  argument
67 return (int) DivS64x64Remainder ((INT64) Dividend, (INT64) Divisor, NULL); in __divsi3()
70 INT64 __divdi3(INT64 Dividend, INT64 Divisor) in __divdi3() argument
74 Quotient = DivS64x64Remainder ((INT64) Dividend, (INT64) Divisor, NULL); in __divdi3()
75 DEBUG((DEBUG_INFO, "%a: %Ld / %Ld = %Ld\n", __func__, Dividend, Divisor, Quotient)); in __divdi3()
80 long long __divti3(long long Dividend, long long Divisor) in __divti3() argument
83 return (long long) DivS64x64Remainder ((INT64) Dividend, (INT64) Divisor, NULL); in __divti3()
108 int __modsi3(int Dividend, int Divisor) in __modsi3() argument
112 (void) DivS64x64Remainder ((INT64) Dividend, (INT64) Divisor, &Remainder); in __modsi3()
113 DEBUG((DEBUG_INFO, "modsi3: %d %% %d = %d\n", Dividend, Divisor, (int)Remainder)); in __modsi3()
118 INT64 __moddi3(INT64 Dividend, INT64 Divisor) in __moddi3() argument
122 (void) DivS64x64Remainder ((INT64) Dividend, (INT64) Divisor, &Remainder); in __moddi3()
123 DEBUG((DEBUG_INFO, "moddi3: %Ld %% %Ld = %Ld\n", (INT64)Dividend, (INT64)Divisor, Remainder)); in __moddi3()
128 long long __modti3(long long Dividend, long long Divisor) in __modti3() argument
132 (void) DivS64x64Remainder ((INT64) Dividend, (INT64) Divisor, &Remainder); in __modti3()
133 DEBUG((DEBUG_INFO, "modti3: %Ld %% %Ld = %Ld\n", (INT64)Dividend, (INT64)Divisor, Remainder)); in __modti3()
148 unsigned int __udivsi3(unsigned int Dividend, unsigned int Divisor) in __udivsi3() argument
151 return (int) DivU64x64Remainder ((UINT64) Dividend, (UINT64) Divisor, NULL); in __udivsi3()
154 unsigned long __udivdi3(unsigned long Dividend, unsigned long Divisor) in __udivdi3() argument
157 return (long) DivU64x64Remainder ((UINT64) Dividend, (UINT64) Divisor, NULL); in __udivdi3()
160 unsigned long long __udivti3(unsigned long long Dividend, unsigned long long Divisor) in __udivti3() argument
163 return (long long) DivU64x64Remainder ((UINT64) Dividend, (UINT64) Divisor, NULL); in __udivti3()
167 unsigned int __umodsi3(unsigned int Dividend, unsigned int Divisor) in __umodsi3() argument
172 (void) DivU64x64Remainder ((UINT64) Dividend, (UINT64) Divisor, &Remainder); in __umodsi3()
177 unsigned long __umoddi3(unsigned long Dividend, unsigned long Divisor) in __umoddi3() argument
182 (void) DivU64x64Remainder ((UINT64) Dividend, (UINT64) Divisor, &Remainder); in __umoddi3()
187 unsigned long long __umodti3(unsigned long long Dividend, unsigned long long Divisor) in __umodti3() argument
192 (void) DivU64x64Remainder ((UINT64) Dividend, (UINT64) Divisor, &Remainder); in __umodti3()