/device/linaro/bootloader/edk2/StdLib/LibC/CRT/ |
D | Gcc.c | 67 return (int) DivS64x64Remainder ((INT64) Dividend, (INT64) Divisor, NULL); in __divsi3() 70 INT64 __divdi3(INT64 Dividend, INT64 Divisor) in __divdi3() 72 INT64 Quotient; in __divdi3() 74 Quotient = DivS64x64Remainder ((INT64) Dividend, (INT64) Divisor, NULL); in __divdi3() 83 return (long long) DivS64x64Remainder ((INT64) Dividend, (INT64) Divisor, NULL); in __divti3() 110 INT64 Remainder; in __modsi3() 112 (void) DivS64x64Remainder ((INT64) Dividend, (INT64) Divisor, &Remainder); in __modsi3() 118 INT64 __moddi3(INT64 Dividend, INT64 Divisor) in __moddi3() 120 INT64 Remainder; in __moddi3() 122 (void) DivS64x64Remainder ((INT64) Dividend, (INT64) Divisor, &Remainder); in __moddi3() [all …]
|
/device/linaro/bootloader/edk2/StdLib/LibC/StdLib/ |
D | Xdiv.c | 35 INT64 bigrem; in div() 37 r.quot = (int)DivS64x64Remainder( (INT64)num, (INT64)denom, &bigrem); in div() 51 INT64 bigrem; in ldiv() 53 r.quot = (long)DivS64x64Remainder( (INT64)num, (INT64)denom, &bigrem); in ldiv() 70 INT64 bigrem; in lldiv() 72 r.quot = (long long)DivS64x64Remainder( (INT64)num, (INT64)denom, &bigrem); in lldiv()
|
/device/linaro/bootloader/edk2/ArmPkg/Library/CompilerIntrinsicsLib/Arm/ |
D | divdi3.c | 65 INT64 66 __divdi3(INT64 a, INT64 b) in __divdi3() 68 const int bits_in_dword_m1 = (int)(sizeof(INT64) * CHAR_BIT) - 1; in __divdi3() 69 INT64 s_a = a >> bits_in_dword_m1; // s_a = a < 0 ? -1 : 0 in __divdi3() 70 INT64 s_b = b >> bits_in_dword_m1; // s_b = b < 0 ? -1 : 0 in __divdi3()
|
D | moddi3.c | 65 INT64 66 __moddi3(INT64 a, INT64 b) in __moddi3() 68 const int bits_in_dword_m1 = (int)(sizeof(INT64) * CHAR_BIT) - 1; in __moddi3() 69 INT64 s = b >> bits_in_dword_m1; // s = b < 0 ? -1 : 0 in __moddi3() 73 INT64 r; in __moddi3()
|
D | mullu.asm | 22 ;INT64 25 ; IN INT64 Multiplicand 34 ;INT64 37 ; IN INT64 Multiplicand 38 ; IN INT64 Multiplier
|
D | mullu.S | 19 #INT64 22 # IN INT64 Multiplicand 28 # Make upper part of INT64 Multiplier 0 and use __aeabi_lmul 31 #INT64 34 # IN INT64 Multiplicand 35 # IN INT64 Multiplier
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/ |
D | DivS64x64Remainder.c | 42 INT64 44 IN INT64 Dividend, in InternalMathDivRemS64x64() 45 IN INT64 Divisor, in InternalMathDivRemS64x64() 46 OUT INT64 *Remainder OPTIONAL in InternalMathDivRemS64x64() 49 INT64 Quot; in InternalMathDivRemS64x64()
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/ |
D | DivS64x64Remainder.c | 34 INT64 37 IN INT64 Dividend, in InternalMathDivRemS64x64() 38 IN INT64 Divisor, in InternalMathDivRemS64x64() 39 OUT INT64 *Remainder OPTIONAL in InternalMathDivRemS64x64() 42 INT64 Quot; in InternalMathDivRemS64x64()
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/ |
D | MultS64x64.c | 34 INT64 37 IN INT64 Multiplicand, in MultS64x64() 38 IN INT64 Multiplier in MultS64x64() 41 return (INT64)MultU64x64 ((UINT64) Multiplicand, (UINT64) Multiplier); in MultS64x64()
|
D | DivS64x64Remainder.c | 43 INT64 46 IN INT64 Dividend, in DivS64x64Remainder() 47 IN INT64 Divisor, in DivS64x64Remainder() 48 OUT INT64 *Remainder OPTIONAL in DivS64x64Remainder()
|
D | Math64.c | 89 TestValue = (INTN)((INT64)(1ULL << 63) >> 63); in InternalMathARShiftU64() 94 return (UINT64)((INT64)Operand >> Count); in InternalMathARShiftU64() 356 INT64 359 IN INT64 Dividend, in InternalMathDivRemS64x64() 360 IN INT64 Divisor, in InternalMathDivRemS64x64() 361 OUT INT64 *Remainder OPTIONAL in InternalMathDivRemS64x64()
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/ |
D | MultS64x64.c | 41 INT64 44 IN INT64 Multiplicand, in MultS64x64() 45 IN INT64 Multiplier in MultS64x64() 48 return (INT64)MultU64x64 ((UINT64) Multiplicand, (UINT64) Multiplier); in MultS64x64()
|
D | DivS64x64Remainder.c | 44 INT64 47 IN INT64 Dividend, in DivS64x64Remainder() 48 IN INT64 Divisor, in DivS64x64Remainder() 49 OUT INT64 *Remainder OPTIONAL in DivS64x64Remainder()
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/Include/X64/ |
D | ProcessorBind.h | 77 typedef __int64 INT64; typedef 94 typedef long long INT64; typedef 109 typedef long INT64; typedef 136 typedef int64_t INT64; typedef 144 typedef INT64 INTN;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseTimerLibLocalApic/Ipf/ |
D | IpfTimerLib.c | 42 IN INT64 Delay in InternalIpfDelay() 45 INT64 Ticks; in InternalIpfDelay() 50 Ticks = (INT64)AsmReadItc () + Delay; in InternalIpfDelay() 57 while (Ticks - (INT64)AsmReadItc() >= 0); in InternalIpfDelay()
|
/device/linaro/bootloader/edk2/StdLib/Include/X64/machine/ |
D | int_mwgwtypes.h | 64 typedef INT64 int_least64_t; 74 typedef INT64 int_fast64_t; 79 typedef INT64 intmax_t;
|
D | ansi.h | 65 #define _BSD_CLOCKID_T_ INT64 /* clockid_t */ 66 #define _BSD_TIMER_T_ INT64 /* timer_t */ 67 #define _BSD_SUSECONDS_T_ INT64 /* suseconds_t */
|
/device/linaro/bootloader/edk2/StdLib/Include/Arm/machine/ |
D | int_mwgwtypes.h | 64 typedef INT64 int_least64_t; 74 typedef INT64 int_fast64_t; 79 typedef INT64 intmax_t;
|
D | ansi.h | 65 #define _BSD_CLOCKID_T_ INT64 /* clockid_t */ 66 #define _BSD_TIMER_T_ INT64 /* timer_t */ 67 #define _BSD_SUSECONDS_T_ INT64 /* suseconds_t */
|
/device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/ |
D | int_mwgwtypes.h | 65 typedef INT64 int_least64_t; 75 typedef INT64 int_fast64_t; 80 typedef INT64 intmax_t;
|
D | ansi.h | 67 #define _BSD_CLOCKID_T_ INT64 /* clockid_t */ 68 #define _BSD_TIMER_T_ INT64 /* timer_t */ 69 #define _BSD_SUSECONDS_T_ INT64 /* suseconds_t */
|
/device/linaro/bootloader/edk2/StdLib/Include/Aarch64/machine/ |
D | int_mwgwtypes.h | 64 typedef INT64 int_least64_t; 74 typedef INT64 int_fast64_t; 79 typedef INT64 intmax_t;
|
D | ansi.h | 65 #define _BSD_CLOCKID_T_ INT64 /* clockid_t */ 66 #define _BSD_TIMER_T_ INT64 /* timer_t */ 67 #define _BSD_SUSECONDS_T_ INT64 /* suseconds_t */
|
/device/linaro/bootloader/edk2/StdLib/Include/Ia32/machine/ |
D | int_mwgwtypes.h | 64 typedef INT64 int_least64_t; 74 typedef INT64 int_fast64_t; 79 typedef INT64 intmax_t;
|
D | ansi.h | 65 #define _BSD_CLOCKID_T_ INT64 /* clockid_t */ 66 #define _BSD_TIMER_T_ INT64 /* timer_t */ 67 #define _BSD_SUSECONDS_T_ INT64 /* suseconds_t */
|