Searched refs:INT64_C (Results 1 - 18 of 18) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/ppc/
H A Dfixtfdi.c24 int64_t result = hibits.x & INT64_C(0x000fffffffffffff); // mantissa(hi)
25 result |= INT64_C(0x0010000000000000); // matissa(hi) with implicit bit
33 int64_t tailMantissa = lobits.x & INT64_C(0x000fffffffffffff);
34 tailMantissa |= INT64_C(0x0010000000000000);
65 return INT64_C(0);
77 int64_t tailMantissa = lobits.x & INT64_C(0x000fffffffffffff);
78 tailMantissa |= INT64_C(0x0010000000000000);
81 tailMantissa = (tailMantissa ^ INT64_C(-1)) + INT64_C(1);
H A Dfixunstfdi.c28 int64_t tailMantissa = lobits.x & INT64_C(0x000fffffffffffff);
29 tailMantissa |= INT64_C(0x0010000000000000);
/freebsd-12-stable/sys/powerpc/include/
H A D_stdint.h56 #define INT64_C(c) (c ## L) macro
59 #define INT64_C(c) (c ## LL) macro
63 #define INTMAX_C(c) INT64_C(c)
/freebsd-12-stable/sys/mips/include/
H A D_stdint.h57 #define INT64_C(c) (c ## L) macro
60 #define INT64_C(c) (c ## LL) macro
64 #define INTMAX_C(c) INT64_C(c)
/freebsd-12-stable/sys/x86/include/
H A D_stdint.h58 #define INT64_C(c) (c ## L) macro
61 #define INT64_C(c) (c ## LL) macro
65 #define INTMAX_C(c) INT64_C(c)
/freebsd-12-stable/sys/riscv/include/
H A D_stdint.h41 #define INT64_C(c) (c ## L) macro
48 #define INTMAX_C(c) INT64_C(c)
/freebsd-12-stable/sys/sparc64/include/
H A D_stdint.h43 #define INT64_C(c) (c ## L) macro
50 #define INTMAX_C(c) INT64_C(c)
/freebsd-12-stable/sys/arm/include/
H A D_stdint.h43 #define INT64_C(c) (c ## LL) macro
50 #define INTMAX_C(c) INT64_C(c)
/freebsd-12-stable/sys/arm64/include/
H A D_stdint.h41 #define INT64_C(c) (c ## L) macro
48 #define INTMAX_C(c) INT64_C(c)
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfloatdidf.c37 low.x |= a & INT64_C(0x00000000ffffffff);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Headers/
H A Dstdint.h303 # define INT64_C(v) __int_c(v, __int64_c_suffix) macro
306 # define INT64_C(v) v macro
461 # define INT64_MAX INT64_C( 9223372036854775807)
462 # define INT64_MIN (-INT64_C( 9223372036854775807)-1)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyInstPrinter.cpp193 (AI.getBitWidth() == 32 ? INT64_C(0x007fffff)
194 : INT64_C(0x000fffffffffffff)),
/freebsd-12-stable/usr.bin/svn/lib/libapr/
H A Dapr.h176 /* C99 7.18.4 requires that stdint.h only exposes INT64_C
382 #define APR_INT64_C(val) INT64_C(val)
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DMathExtras.h336 return N >= 64 || (-(INT64_C(1)<<(N-1)) <= x && x < (INT64_C(1)<<(N-1)));
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/
H A Ddtrace.c1208 for (; (INT64_C(1) << mul) <= nsize; j++, mul += 10)
1211 if (!(nsize & ((INT64_C(1) << (mul - 10)) - 1))) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp2216 const SDValue Mask = DAG.getConstant(INT64_C(0x000fffffffffffff), SL,
2221 DAG.getConstant(INT64_C(0x0008000000000000), SL,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp512 NewBits[i] = BitInit::get(Value & (INT64_C(1) << Bits[i]));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp5491 bool NonTrivialMask = ((int64_t) Mask) != INT64_C(-1);

Completed in 246 milliseconds