Lines Matching refs:Remainder
110 INT64 Remainder; in __modsi3() local
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()
115 return (int) Remainder; in __modsi3()
120 INT64 Remainder; in __moddi3() local
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()
125 return Remainder; in __moddi3()
130 INT64 Remainder; in __modti3() local
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()
135 return (long long) Remainder; in __modti3()
169 UINT64 Remainder; in __umodsi3() local
172 (void) DivU64x64Remainder ((UINT64) Dividend, (UINT64) Divisor, &Remainder); in __umodsi3()
174 return (unsigned int) Remainder; in __umodsi3()
179 UINT64 Remainder; in __umoddi3() local
182 (void) DivU64x64Remainder ((UINT64) Dividend, (UINT64) Divisor, &Remainder); in __umoddi3()
184 return (unsigned long) Remainder; in __umoddi3()
189 UINT64 Remainder; in __umodti3() local
192 (void) DivU64x64Remainder ((UINT64) Dividend, (UINT64) Divisor, &Remainder); in __umodti3()
194 return (unsigned long long) Remainder; in __umodti3()