Searched refs:s64 (Results 1 - 25 of 51) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64LegalizerInfo.cpp40 const LLT s64 = LLT::scalar(64); local
62 .legalFor({p0, s1, s8, s16, s32, s64, v2s32, v4s32, v2s64})
63 .clampScalar(0, s1, s64)
68 (Query.Types[0].getElementType() != s64 ||
73 if (EltTy == s64)
79 .legalFor({p0, s16, s32, s64, v2s32, v4s32, v2s64})
80 .clampScalar(0, s16, s64)
84 .legalFor({s32, s64, v4s32, v2s32, v2s64})
85 .clampScalar(0, s32, s64)
89 .legalFor({s32, s64, v2s3
[all...]
/freebsd-11-stable/sys/dev/mthca/
H A Dmthca_profile.h54 s64 mthca_make_profile(struct mthca_dev *mdev,
H A Dmthca_profile.c64 s64 mthca_make_profile(struct mthca_dev *dev,
78 s64 total_size = 0;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LegalizerInfo.cpp113 const LLT s64 = LLT::scalar(64); local
189 for (const auto &Ty : {s16, s32, s64}) {
209 const LLT s64 = LLT::scalar(64); local
212 setAction({G_IMPLICIT_DEF, s64}, Legal);
214 // s128 = EXTEND (G_IMPLICIT_DEF s32/s64) -> s128 = G_IMPLICIT_DEF
217 setAction({G_PHI, s64}, Legal);
220 setAction({BinOp, s64}, Legal);
223 setAction({MemOp, s64}, Legal);
226 setAction({G_PTR_ADD, 1, s64}, Legal);
228 .legalForCartesianProduct({s1, s8, s16, s32, s64}, {p
289 const LLT s64 = LLT::scalar(64); local
318 const LLT s64 = LLT::scalar(64); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsLegalizerInfo.cpp58 const LLT s64 = LLT::scalar(64); local
88 {s64, p0, 64, ST.hasMips32r6()}}))
101 .legalFor({s32, s64});
104 .legalFor({{s32, s64}});
107 .legalFor({{s64, s32}});
123 .legalForCartesianProduct({p0, s32, s64}, {s32})
138 .legalFor({p0, s32, s64})
154 .libcallFor({s64});
207 .legalFor({s32, s64});
211 if (CheckTyN(0, Query, {s32, s64}))
270 const LLT s64 = LLT::scalar(64); local
[all...]
/freebsd-11-stable/sys/compat/linuxkpi/common/include/asm/
H A Dtypes.h53 typedef int64_t s64; typedef
/freebsd-11-stable/contrib/ofed/include/
H A Dtypes.h49 typedef int64_t s64; typedef
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMLegalizerInfo.cpp75 const LLT s64 = LLT::scalar(64); local
95 .legalFor({s32, s64})
174 .legalFor({s32, s64});
177 .legalForTypesWithMemDesc({{s64, p0, 64, 32}})
179 PhiBuilder.legalFor({s64});
182 {s32, s64});
184 getActionDefinitionsBuilder(G_MERGE_VALUES).legalFor({{s64, s32}});
185 getActionDefinitionsBuilder(G_UNMERGE_VALUES).legalFor({{s32, s64}});
187 getActionDefinitionsBuilder(G_FPEXT).legalFor({{s64, s32}});
188 getActionDefinitionsBuilder(G_FPTRUNC).legalFor({{s32, s64}});
[all...]
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dhrtimer.h52 s64 expires; /* relative time in nanoseconds */
53 s64 precision; /* in nanoseconds */
H A Dktime.h41 typedef s64 ktime_t;
43 #define KTIME_MAX ((s64)~((u64)1 << 63))
104 ktime_t retval = {(s64) secs * NSEC_PER_SEC + (s64) nsecs};
/freebsd-11-stable/contrib/elftoolchain/libdwarf/
H A Ddwarf_attrval.c121 *valp = (int8_t) at->u[0].s64;
124 *valp = (int16_t) at->u[0].s64;
127 *valp = (int32_t) at->u[0].s64;
131 *valp = at->u[0].s64;
H A Ddwarf_form.c268 *return_svalue = (int8_t) at->u[0].s64;
272 *return_svalue = (int16_t) at->u[0].s64;
276 *return_svalue = (int32_t) at->u[0].s64;
281 *return_svalue = at->u[0].s64;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_dispatch_defs.h62 typedef __sanitizer::s64 off_t;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_libc.h28 s64 internal_atoll(const char *nptr);
51 s64 internal_simple_strtoll(const char *nptr, const char **endptr, int base);
H A Dsanitizer_flag_parser.h146 inline bool FlagHandler<s64>::Parse(const char *value) {
150 if (!ok) Printf("ERROR: Invalid value for s64 option: '%s'\n", value);
155 inline bool FlagHandler<s64>::Format(char *buffer, uptr size) {
H A Dsanitizer_libc.cpp19 s64 internal_atoll(const char *nptr) {
230 s64 internal_simple_strtoll(const char *nptr, const char **endptr, int base) {
255 return (s64)(Min((u64)INT64_MAX, res));
257 return (res > INT64_MAX) ? INT64_MIN : ((s64)res * -1);
H A Dsanitizer_printf.cpp89 static int AppendSignedDecimal(char **buff, const char *buff_end, s64 num,
165 s64 dval;
173 dval = have_ll ? va_arg(args, s64)
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_value.cpp32 return *reinterpret_cast<s64*>(Val);
H A Dubsan_value.h35 typedef s64 SIntMax;
/freebsd-11-stable/secure/lib/libcrypto/arm/
H A Dbsaes-armv7.S1614 vshr.s64 q6, q8, #63
1620 vshr.s64 q7, q9, #63
1626 vshr.s64 q6, q10, #63
1633 vshr.s64 q7, q11, #63
1641 vshr.s64 q6, q12, #63
1649 vshr.s64 q7, q13, #63
1657 vshr.s64 q6, q14, #63
1665 vshr.s64 q7, q15, #63
1717 vshr.s64 q7, q8, #63
1723 vshr.s64 q
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dstring_utils.cpp78 static int appendSignedDecimal(char **Buffer, const char *BufferEnd, s64 Num,
153 s64 DVal;
161 DVal = HaveLL ? va_arg(Args, s64)
H A Dinternal_defs.h65 typedef signed long long s64; typedef in namespace:scudo
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_irq.c101 s64 diff_ns;
462 s64 linedur_ns = 0, pixeldur_ns = 0, framedur_ns = 0;
480 pixeldur_ns = (s64) div64_u64(1000000000, dotclock);
481 linedur_ns = (s64) div64_u64(((u64) crtc->hwmode.crtc_htotal *
483 framedur_ns = (s64) crtc->hwmode.crtc_vtotal * linedur_ns;
555 s64 framedur_ns, linedur_ns, pixeldur_ns, delta_ns, duration_ns;
624 if (duration_ns <= (s64) *max_error)
648 delta_ns = (s64) vpos * linedur_ns + (s64) hpos * pixeldur_ns;
1344 s64 diff_n
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/test/
H A Dtest_archive_string.c311 const char *s64 = S64; local
335 archive_string_sprintf(&s, "%s", s64);
336 assertExactString(64, 4 * EXTENT, s64, s);
/freebsd-11-stable/sys/dev/cxgbe/
H A Dosdep.h56 typedef int64_t s64; typedef

Completed in 174 milliseconds

123