HomeSort by: relevance | last modified time | path
    Searched defs:S64 (Results 1 - 22 of 22) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/
MipsABIFlagsSection.h 23 enum class FpABIKind { ANY, XX, S32, S64, SOFT };
181 FpABI = FpABIKind::S64;
186 FpABI = FpABIKind::S64;
  /src/external/bsd/libarchive/dist/libarchive/test/
test_archive_string.c 306 #define S64 S32 S32
307 #define S128 S64 S64
310 const char *s64 = S64; local
311 const char *s65 = S64 "0";
316 #undef S64
334 archive_string_sprintf(&s, "%s", s64);
335 assertExactString(64, 4 * EXTENT, s64, s);
  /src/common/lib/libc/hash/sha2/
sha2.c 105 #define S64(b,x) (((x) >> (b)) | ((x) << (64 - (b))))
118 #define Sigma0_512(x) (S64(28, (x)) ^ S64(34, (x)) ^ S64(39, (x)))
119 #define Sigma1_512(x) (S64(14, (x)) ^ S64(18, (x)) ^ S64(41, (x)))
120 #define sigma0_512(x) (S64( 1, (x)) ^ S64( 8, (x)) ^ R( 7, (x)))
121 #define sigma1_512(x) (S64(19, (x)) ^ S64(61, (x)) ^ R( 6, (x))
    [all...]
  /src/external/bsd/unbound/dist/compat/
sha512.c 187 #define S64(b,x) (((x) >> (b)) | ((x) << (64 - (b))))
194 #define Sigma0_512(x) (S64(28, (x)) ^ S64(34, (x)) ^ S64(39, (x)))
195 #define Sigma1_512(x) (S64(14, (x)) ^ S64(18, (x)) ^ S64(41, (x)))
196 #define sigma0_512(x) (S64( 1, (x)) ^ S64( 8, (x)) ^ R( 7, (x)))
197 #define sigma1_512(x) (S64(19, (x)) ^ S64(61, (x)) ^ R( 6, (x))
    [all...]
  /src/external/bsd/zstd/dist/contrib/linux-kernel/
mem.h 41 typedef int64_t S64;
  /src/external/bsd/zstd/dist/lib/common/
mem.h 50 typedef int64_t S64;
72 typedef signed long long S64;
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
sha2.c 141 #define S64(b,x) (((x) >> (b)) | ((x) << (64 - (b))))
154 #define Sigma0_512(x) (S64(28, (x)) ^ S64(34, (x)) ^ S64(39, (x)))
155 #define Sigma1_512(x) (S64(14, (x)) ^ S64(18, (x)) ^ S64(41, (x)))
156 #define sigma0_512(x) (S64( 1, (x)) ^ S64( 8, (x)) ^ R( 7, (x)))
157 #define sigma1_512(x) (S64(19, (x)) ^ S64(61, (x)) ^ R( 6, (x))
    [all...]
  /src/external/bsd/openldap/dist/contrib/slapd-modules/passwd/sha2/
sha2.c 202 #define S64(b,x) (((x) >> (b)) | ((x) << (64 - (b))))
215 #define Sigma0_512(x) (S64(28, (x)) ^ S64(34, (x)) ^ S64(39, (x)))
216 #define Sigma1_512(x) (S64(14, (x)) ^ S64(18, (x)) ^ S64(41, (x)))
217 #define sigma0_512(x) (S64( 1, (x)) ^ S64( 8, (x)) ^ R( 7, (x)))
218 #define sigma1_512(x) (S64(19, (x)) ^ S64(61, (x)) ^ R( 6, (x))
    [all...]
  /src/crypto/dist/ipsec-tools/src/racoon/missing/crypto/sha2/
sha2.c 195 #define S64(b,x) (((x) >> (b)) | ((x) << (64 - (b))))
208 #define Sigma0_512(x) (S64(28, (x)) ^ S64(34, (x)) ^ S64(39, (x)))
209 #define Sigma1_512(x) (S64(14, (x)) ^ S64(18, (x)) ^ S64(41, (x)))
210 #define sigma0_512(x) (S64( 1, (x)) ^ S64( 8, (x)) ^ R( 7, (x)))
211 #define sigma1_512(x) (S64(19, (x)) ^ S64(61, (x)) ^ R( 6, (x))
    [all...]
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c 178 typedef int64_t S64;
186 typedef signed long long S64;
zstd_v03.c 91 typedef int64_t S64;
99 typedef signed long long S64;
zstd_v04.c 58 typedef int64_t S64;
66 typedef signed long long S64;
zstd_v02.c 90 typedef int64_t S64;
98 typedef signed long long S64;
zstd_v05.c 94 typedef int64_t S64;
102 typedef signed long long S64;
zstd_v06.c 88 typedef int64_t S64;
96 typedef signed long long S64;
zstd_v07.c 248 typedef int64_t S64;
256 typedef signed long long S64;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
LegalizerHelper.cpp 1564 // e.g. widen s48 to s64:
1569 // %5:_(s64), %6, %7 = G_UNMERGE_VALUES %4 ; Requested unmerge
1571 // %8:_(s16), %9, %10, %11 = G_UNMERGE_VALUES %5:_(s64)
1572 // %12:_(s16), %13, dead %14, dead %15 = G_UNMERGE_VALUES %6:_(s64)
1573 // dead %16:_(s16), dead %17, dead %18, dead %18 = G_UNMERGE_VALUES %7:_(s64)
3305 // e.g. <4 x s64> = G_SHL <4 x s64>, <4 x s32> ->
3306 // <2 x s64> = G_SHL <2 x s64>, <2 x s32>
3307 // <2 x s64> = G_SHL <2 x s64>, <2 x s32
    [all...]
  /src/external/gpl3/binutils/dist/include/opcode/
kvx.h 119 S64,
  /src/external/gpl3/binutils.old/dist/include/opcode/
kvx.h 119 S64,
  /src/external/gpl3/gdb.old/dist/include/opcode/
kvx.h 119 S64,
  /src/external/gpl3/gdb/dist/include/opcode/
kvx.h 119 S64,
  /src/sys/dev/ic/
mpt_mpilib.h 98 } S64;
117 typedef S64 *PS64;

Completed in 78 milliseconds