HomeSort by relevance Sort by last modified time
    Searched refs:INT64 (Results 1 - 25 of 284) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
DivS64x64Remainder.c 44 INT64
47 IN INT64 Dividend,
48 IN INT64 Divisor,
49 OUT INT64 *Remainder OPTIONAL
MultS64x64.c 41 INT64
44 IN INT64 Multiplicand,
45 IN INT64 Multiplier
48 return (INT64)MultU64x64 ((UINT64) Multiplicand, (UINT64) Multiplier);
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
DivS64x64Remainder.c 43 INT64
46 IN INT64 Dividend,
47 IN INT64 Divisor,
48 OUT INT64 *Remainder OPTIONAL
MultS64x64.c 34 INT64
37 IN INT64 Multiplicand,
38 IN INT64 Multiplier
41 return (INT64)MultU64x64 ((UINT64) Multiplicand, (UINT64) Multiplier);
  /device/linaro/bootloader/edk2/ArmPkg/Library/CompilerIntrinsicsLib/Arm/
divdi3.c 65 INT64
66 __divdi3(INT64 a, INT64 b)
68 const int bits_in_dword_m1 = (int)(sizeof(INT64) * CHAR_BIT) - 1;
69 INT64 s_a = a >> bits_in_dword_m1; // s_a = a < 0 ? -1 : 0
70 INT64 s_b = b >> bits_in_dword_m1; // s_b = b < 0 ? -1 : 0
moddi3.c 65 INT64
66 __moddi3(INT64 a, INT64 b)
68 const int bits_in_dword_m1 = (int)(sizeof(INT64) * CHAR_BIT) - 1;
69 INT64 s = b >> bits_in_dword_m1; // s = b < 0 ? -1 : 0
73 INT64 r;
Llvm_int_lib.h 63 INT64 all;
85 INT64 Quotent;
86 INT64 Remainder;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
DivS64x64Remainder.c 42 INT64
44 IN INT64 Dividend,
45 IN INT64 Divisor,
46 OUT INT64 *Remainder OPTIONAL
49 INT64 Quot;
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
DivS64x64Remainder.c 34 INT64
37 IN INT64 Dividend,
38 IN INT64 Divisor,
39 OUT INT64 *Remainder OPTIONAL
42 INT64 Quot;
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
Xdiv.c 35 INT64 bigrem;
37 r.quot = (int)DivS64x64Remainder( (INT64)num, (INT64)denom, &bigrem);
51 INT64 bigrem;
53 r.quot = (long)DivS64x64Remainder( (INT64)num, (INT64)denom, &bigrem);
70 INT64 bigrem;
72 r.quot = (long long)DivS64x64Remainder( (INT64)num, (INT64)denom, &bigrem);
  /device/linaro/bootloader/edk2/StdLib/LibC/CRT/
Gcc.c 67 return (int) DivS64x64Remainder ((INT64) Dividend, (INT64) Divisor, NULL);
70 INT64 __divdi3(INT64 Dividend, INT64 Divisor)
72 INT64 Quotient;
74 Quotient = DivS64x64Remainder ((INT64) Dividend, (INT64) Divisor, NULL);
83 return (long long) DivS64x64Remainder ((INT64) Dividend, (INT64) Divisor, NULL);
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/Aarch64/machine/
int_mwgwtypes.h 64 typedef INT64 int_least64_t;
74 typedef INT64 int_fast64_t;
79 typedef INT64 intmax_t;
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/
int_mwgwtypes.h 64 typedef INT64 int_least64_t;
74 typedef INT64 int_fast64_t;
79 typedef INT64 intmax_t;
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/
int_mwgwtypes.h 64 typedef INT64 int_least64_t;
74 typedef INT64 int_fast64_t;
79 typedef INT64 intmax_t;
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/
int_mwgwtypes.h 65 typedef INT64 int_least64_t;
75 typedef INT64 int_fast64_t;
80 typedef INT64 intmax_t;
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/X64/machine/
int_mwgwtypes.h 64 typedef INT64 int_least64_t;
74 typedef INT64 int_fast64_t;
79 typedef INT64 intmax_t;
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 */
  /external/libldac/src/
fixp_ldac.h 58 #define lsftrnd_ldac(x, n) (INT32)((INT64)(x) << (-(n)))
59 #define rsftrnd_ldac(x, n) (INT32)(((INT64)(x) + ((INT64)1 << ((n)-1))) >> (n))
60 #define mul_lsftrnd_ldac(x, y, n) (INT32)(((INT64)(x) * (INT64)(y)) << (-(n)))
61 #define mul_rsftrnd_ldac(x, y, n) (INT32)((((INT64)(x) * (INT64)(y)) + ((INT64)1 << ((n)-1))) >> (n))
func_fixp_ldac.c 24 INT64 val)
37 INT64 out;
40 out = ((INT64)in + ((INT64)1 << (shift-1))) >> shift;
43 out = (INT64)in << (-shift);
  /external/tensorflow/tensorflow/contrib/lite/java/src/main/java/org/tensorflow/lite/
DataType.java 30 INT64(4),
66 case INT64:
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/X64/
ProcessorBind.h 77 typedef __int64 INT64;
94 typedef long long INT64;
109 typedef long INT64;
136 typedef int64_t INT64;
144 typedef INT64 INTN;

Completed in 376 milliseconds

1 2 3 4 5 6 7 8 91011>>