Home
last modified time | relevance | path

Searched refs:u64 (Results 1 - 25 of 878) sorted by relevance

12345678910>>...36

/third_party/node/deps/openssl/openssl/crypto/poly1305/
H A Dpoly1305_base2_44.c20 typedef unsigned long u64; typedef
24 u64 h[3];
25 u64 s[2];
26 u64 r[3];
32 static u64 U8TOU64(const unsigned char *p) in U8TOU64()
34 return (((u64)(p[0] & 0xff)) | in U8TOU64()
35 ((u64)(p[1] & 0xff) << 8) | in U8TOU64()
36 ((u64)(p[2] & 0xff) << 16) | in U8TOU64()
37 ((u64)(p[3] & 0xff) << 24) | in U8TOU64()
38 ((u64)( in U8TOU64()
[all...]
H A Dpoly1305.c99 typedef unsigned long u64; typedef
103 u64 h[3];
104 u64 r[2];
108 static u64 U8TOU64(const unsigned char *p) in U8TOU64()
110 return (((u64)(p[0] & 0xff)) | in U8TOU64()
111 ((u64)(p[1] & 0xff) << 8) | in U8TOU64()
112 ((u64)(p[2] & 0xff) << 16) | in U8TOU64()
113 ((u64)(p[3] & 0xff) << 24) | in U8TOU64()
114 ((u64)(p[4] & 0xff) << 32) | in U8TOU64()
115 ((u64)( in U8TOU64()
250 typedef unsigned __int64 u64; global() typedef
252 typedef unsigned long u64; global() typedef
254 typedef unsigned long long u64; global() typedef
[all...]
/third_party/openssl/crypto/poly1305/
H A Dpoly1305_base2_44.c20 typedef unsigned long u64; typedef
24 u64 h[3];
25 u64 s[2];
26 u64 r[3];
32 static u64 U8TOU64(const unsigned char *p) in U8TOU64()
34 return (((u64)(p[0] & 0xff)) | in U8TOU64()
35 ((u64)(p[1] & 0xff) << 8) | in U8TOU64()
36 ((u64)(p[2] & 0xff) << 16) | in U8TOU64()
37 ((u64)(p[3] & 0xff) << 24) | in U8TOU64()
38 ((u64)( in U8TOU64()
[all...]
H A Dpoly1305.c99 typedef unsigned long u64; typedef
103 u64 h[3];
104 u64 r[2];
108 static u64 U8TOU64(const unsigned char *p) in U8TOU64()
110 return (((u64)(p[0] & 0xff)) | in U8TOU64()
111 ((u64)(p[1] & 0xff) << 8) | in U8TOU64()
112 ((u64)(p[2] & 0xff) << 16) | in U8TOU64()
113 ((u64)(p[3] & 0xff) << 24) | in U8TOU64()
114 ((u64)(p[4] & 0xff) << 32) | in U8TOU64()
115 ((u64)( in U8TOU64()
250 typedef unsigned __int64 u64; global() typedef
252 typedef unsigned long u64; global() typedef
254 typedef unsigned long long u64; global() typedef
[all...]
/third_party/eudev/src/shared/
H A Dsiphash24.c23 typedef uint64_t u64; typedef
27 #define ROTL(x,b) (u64)( ((x) << (b)) | ( (x) >> (64 - (b))) )
38 (((u64)((p)[0]) ) | \
39 ((u64)((p)[1]) << 8) | \
40 ((u64)((p)[2]) << 16) | \
41 ((u64)((p)[3]) << 24) | \
42 ((u64)((p)[4]) << 32) | \
43 ((u64)((p)[5]) << 40) | \
44 ((u64)((p)[6]) << 48) | \
45 ((u64)((
[all...]
/third_party/rust/crates/libc/src/unix/nto/
H A Dx86_64.rs4 pub type c_ulong = u64;
10 pub rdi: u64,
11 pub rsi: u64,
12 pub rdx: u64,
13 pub r10: u64,
14 pub r8: u64,
15 pub r9: u64,
16 pub rax: u64,
17 pub rbx: u64,
18 pub rbp: u64,
[all...]
/third_party/rust/crates/minimal-lexical/src/
H A Dnum.rs66 const SIGN_MASK: u64;
68 const EXPONENT_MASK: u64;
70 const HIDDEN_BIT_MASK: u64;
72 const MANTISSA_MASK: u64;
88 const CARRY_MASK: u64;
95 const MAX_MANTISSA_FAST_PATH: u64 = 2_u64 << Self::MANTISSA_SIZE;
141 fn from_u64(u: u64) -> Self; in from_u64()
144 fn from_bits(u: u64) -> Self; in from_bits()
145 fn to_bits(self) -> u64; in to_bits()
160 unsafe fn int_pow_fast_path(exponent: usize, radix: u32) -> u64 { in int_pow_fast_path()
[all...]
/third_party/vk-gl-cts/external/vulkancts/vkscserver/
H A DvksEndian.hpp36 constexpr u64 ReverseBytes64(u64 n) in ReverseBytes64()
39 ((n & u64{0xFF00000000000000}) >> 56) | in ReverseBytes64()
40 ((n & u64{0x00FF000000000000}) >> 40) | in ReverseBytes64()
41 ((n & u64{0x0000FF0000000000}) >> 24) | in ReverseBytes64()
42 ((n & u64{0x000000FF00000000}) >> 8) | in ReverseBytes64()
43 ((n & u64{0x00000000FF000000}) << 8) | in ReverseBytes64()
44 ((n & u64{0x0000000000FF0000}) << 24) | in ReverseBytes64()
45 ((n & u64{0x000000000000FF00}) << 40) | in ReverseBytes64()
46 ((n & u64{ in ReverseBytes64()
[all...]
/third_party/rust/crates/rustix/tests/fs/
H A Dinvalid_offset.rs1 //! Tests for extreme `u64` file offsets.
4 //! Rust APIs tend to use `u64`. Test that extreme `u64` values in APIs that
27 seek(&file, SeekFrom::Start(u64::MAX)).unwrap_err(); in invalid_offset_seek()
28 seek(&file, SeekFrom::Start(i64::MAX as u64 + 1)).unwrap_err(); in invalid_offset_seek()
56 fallocate(&file, FallocateFlags::empty(), u64::MAX, 1).unwrap_err(); in invalid_offset_fallocate()
57 fallocate(&file, FallocateFlags::empty(), i64::MAX as u64 + 1, 1).unwrap_err(); in invalid_offset_fallocate()
58 fallocate(&file, FallocateFlags::empty(), 0, u64::MAX).unwrap_err(); in invalid_offset_fallocate()
59 fallocate(&file, FallocateFlags::empty(), 0, i64::MAX as u64 + 1).unwrap_err(); in invalid_offset_fallocate()
87 fadvise(&file, i64::MAX as u64, i6 in invalid_offset_fadvise()
[all...]
H A Dy2038.rs50 TryInto::<u64>::try_into(stat.st_mtime).unwrap() as u64, in test_y2038_with_utimensat()
59 assert!(TryInto::<u64>::try_into(stat.st_atime).unwrap() as u64 >= a_sec); in test_y2038_with_utimensat()
63 TryInto::<u64>::try_into(stat.st_atime).unwrap() as u64 > a_sec in test_y2038_with_utimensat()
68 TryInto::<u64>::try_into(stat.st_atime).unwrap() as u64 > a_sec in test_y2038_with_utimensat()
77 TryInto::<u64>::try_into(stat.st_mtime).unwrap() as u64, in test_y2038_with_utimensat()
[all...]
H A Dutimensat.rs37 assert_eq!(times.last_modification.tv_sec as u64, after.st_mtime as u64); in test_utimensat()
40 times.last_modification.tv_nsec as u64, in test_utimensat()
41 after.st_mtime_nsec as u64 in test_utimensat()
45 times.last_modification.tv_nsec as u64, in test_utimensat()
46 after.st_mtimensec as u64 in test_utimensat()
48 assert!(times.last_access.tv_sec as u64 >= after.st_atime as u64); in test_utimensat()
51 times.last_access.tv_sec as u64 > after.st_atime as u64 in test_utimensat()
[all...]
/third_party/rust/crates/libc/src/unix/linux_like/linux/gnu/b64/
H A Dmod.rs3 pub type ino_t = u64;
6 pub type shmatt_t = u64;
7 pub type msgqnum_t = u64;
8 pub type msglen_t = u64;
9 pub type fsblkcnt_t = u64;
10 pub type fsfilcnt_t = u64;
11 pub type rlim_t = u64;
34 __val: [u64; 16],
39 pub loads: [u64; 3],
40 pub totalram: u64,
[all...]
/third_party/rust/crates/libc/src/unix/bsd/apple/b64/x86_64/
H A Dmod.rs24 pub __faultvaddr: u64,
28 pub __rax: u64,
29 pub __rbx: u64,
30 pub __rcx: u64,
31 pub __rdx: u64,
32 pub __rdi: u64,
33 pub __rsi: u64,
34 pub __rbp: u64,
35 pub __rsp: u64,
36 pub __r8: u64,
[all...]
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Dbitfield-linux-32.rs54 pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 { in get()
75 pub fn set(&mut self, bit_offset: usize, bit_width: u8, val: u64) { in set()
97 pub foo: u64,
98 pub _bitfield_align_1: [u64; 0],
124 pub fn x(&self) -> u64 { in x()
126 ::std::mem::transmute(self._bitfield_1.get(0usize, 56u8) as u64) in x()
130 pub fn set_x(&mut self, val: u64) { in set_x()
132 let val: u64 = ::std::mem::transmute(val); in set_x()
133 self._bitfield_1.set(0usize, 56u8, val as u64) in set_x()
137 pub fn y(&self) -> u64 { in y()
[all...]
H A Dissue-739-pointer-wide-bitfield.rs55 pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 { in get()
76 pub fn set(&mut self, bit_offset: usize, bit_width: u8, val: u64) { in set()
99 pub _bitfield_align_1: [u64; 0],
119 ::std::mem::transmute(self._bitfield_1.get(0usize, 64u8) as u64) in m_bitfield()
125 let val: u64 = ::std::mem::transmute(val); in set_m_bitfield()
126 self._bitfield_1.set(0usize, 64u8, val as u64) in set_m_bitfield()
132 ::std::mem::transmute(self._bitfield_1.get(64usize, 64u8) as u64) in m_bar()
138 let val: u64 = ::std::mem::transmute(val); in set_m_bar()
139 self._bitfield_1.set(64usize, 64u8, val as u64) in set_m_bar()
145 ::std::mem::transmute(self._bitfield_1.get(128usize, 1u8) as u64) in foo()
[all...]
H A Dissue-816.rs54 pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 { in get()
75 pub fn set(&mut self, bit_offset: usize, bit_width: u8, val: u64) { in set()
125 self._bitfield_1.set(0usize, 1u8, val as u64) in set_bit_1()
138 self._bitfield_1.set(1usize, 1u8, val as u64) in set_bit_2()
151 self._bitfield_1.set(2usize, 1u8, val as u64) in set_bit_3()
164 self._bitfield_1.set(3usize, 1u8, val as u64) in set_bit_4()
177 self._bitfield_1.set(4usize, 1u8, val as u64) in set_bit_5()
190 self._bitfield_1.set(5usize, 1u8, val as u64) in set_bit_6()
203 self._bitfield_1.set(6usize, 1u8, val as u64) in set_bit_7()
216 self._bitfield_1.set(7usize, 1u8, val as u64) in set_bit_8()
[all...]
H A Dlayout_mbuf.rs54 pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 { in get()
75 pub fn set(&mut self, bit_offset: usize, bit_width: u8, val: u64) { in set()
96 pub type phys_addr_t = u64;
99 pub type MARKER64 = [u64; 0usize];
152 pub ol_flags: u64,
285 self._bitfield_1.set(0usize, 4u8, val as u64) in set_l2_type()
298 self._bitfield_1.set(4usize, 4u8, val as u64) in set_l3_type()
311 self._bitfield_1.set(8usize, 4u8, val as u64) in set_l4_type()
324 self._bitfield_1.set(12usize, 4u8, val as u64) in set_tun_type()
337 self._bitfield_1.set(16usize, 4u8, val as u64) in set_inner_l2_type()
[all...]
H A Dbitfield-32bit-overflow.rs54 pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 { in get()
75 pub fn set(&mut self, bit_offset: usize, bit_width: u8, val: u64) { in set()
124 self._bitfield_1.set(0usize, 1u8, val as u64) in set_m0()
137 self._bitfield_1.set(1usize, 1u8, val as u64) in set_m1()
150 self._bitfield_1.set(2usize, 1u8, val as u64) in set_m2()
163 self._bitfield_1.set(3usize, 1u8, val as u64) in set_m3()
176 self._bitfield_1.set(4usize, 1u8, val as u64) in set_m4()
189 self._bitfield_1.set(5usize, 1u8, val as u64) in set_m5()
202 self._bitfield_1.set(6usize, 1u8, val as u64) in set_m6()
215 self._bitfield_1.set(7usize, 1u8, val as u64) in set_m7()
[all...]
/third_party/rust/crates/libc/src/unix/linux_like/android/b64/
H A Dmod.rs5 pub type c_ulong = u64;
48 pub f_type: u64,
49 pub f_bsize: u64,
50 pub f_blocks: u64,
51 pub f_bfree: u64,
52 pub f_bavail: u64,
53 pub f_files: u64,
54 pub f_ffree: u64,
56 pub f_namelen: u64,
57 pub f_frsize: u64,
[all...]
/third_party/ltp/tools/sparse/sparse-src/validation/linear/
H A Dshift-assign1.c6 typedef __UINT64_TYPE__ u64; typedef
13 s16 s16u64(s16 a, u64 b) { a >>= b; return a; } in s16u64()
19 s32 s32u64(s32 a, u64 b) { a >>= b; return a; } in s32u64()
25 s64 s64u64(s64 a, u64 b) { a >>= b; return a; } in s64u64()
31 u16 u16u64(u16 a, u64 b) { a >>= b; return a; } in u16u64()
37 u32 u32u64(u32 a, u64 b) { a >>= b; return a; } in u32u64()
38 u64 u64s16(u64 a, s16 b);
39 u64 u64s32(u64
[all...]
/third_party/rust/crates/rustix/src/backend/linux_raw/fs/
H A Dtypes.rs212 pub struct ResolveFlags: u64 {
214 const NO_XDEV = linux_raw_sys::general::RESOLVE_NO_XDEV as u64;
217 const NO_MAGICLINKS = linux_raw_sys::general::RESOLVE_NO_MAGICLINKS as u64;
220 const NO_SYMLINKS = linux_raw_sys::general::RESOLVE_NO_SYMLINKS as u64;
223 const BENEATH = linux_raw_sys::general::RESOLVE_BENEATH as u64;
226 const IN_ROOT = linux_raw_sys::general::RESOLVE_IN_ROOT as u64;
229 const CACHED = linux_raw_sys::general::RESOLVE_CACHED as u64;
491 pub struct StatVfsMountFlags: u64 {
493 const MANDLOCK = linux_raw_sys::general::MS_MANDLOCK as u64;
496 const NOATIME = linux_raw_sys::general::MS_NOATIME as u64;
[all...]
/third_party/node/deps/openssl/openssl/include/crypto/
H A Dmodes.h15 typedef unsigned __int64 u64; typedef
19 typedef unsigned long u64; typedef
23 typedef unsigned long long u64; typedef
44 # define BSWAP8(x) ({ u64 ret_=(x); \
51 # define BSWAP8(x) ({ u32 lo_=(u64)(x)>>32,hi_=(x); \
54 (u64)hi_<<32|lo_; })
61 # define BSWAP8(x) ({ u64 ret_; \
69 # define BSWAP8(x) ({ u32 lo_=(u64)(x)>>32,hi_=(x); \
72 (u64)hi_<<32|lo_; })
82 # define BSWAP8(x) _byteswap_uint64((u64)(
[all...]
/third_party/openssl/include/crypto/
H A Dmodes.h15 typedef unsigned __int64 u64; typedef
19 typedef unsigned long u64; typedef
23 typedef unsigned long long u64; typedef
44 # define BSWAP8(x) ({ u64 ret_=(x); \
51 # define BSWAP8(x) ({ u32 lo_=(u64)(x)>>32,hi_=(x); \
54 (u64)hi_<<32|lo_; })
61 # define BSWAP8(x) ({ u64 ret_; \
69 # define BSWAP8(x) ({ u32 lo_=(u64)(x)>>32,hi_=(x); \
72 (u64)hi_<<32|lo_; })
82 # define BSWAP8(x) _byteswap_uint64((u64)(
[all...]
/third_party/ntfs-3g/include/ntfs-3g/
H A Dendians.h100 (u64)((((u64)(x) & 0xff00000000000000ull) >> 56) | \
101 (((u64)(x) & 0x00ff000000000000ull) >> 40) | \
102 (((u64)(x) & 0x0000ff0000000000ull) >> 24) | \
103 (((u64)(x) & 0x000000ff00000000ull) >> 8) | \
104 (((u64)(x) & 0x00000000ff000000ull) << 8) | \
105 (((u64)(x) & 0x0000000000ff0000ull) << 24) | \
106 (((u64)(x) & 0x000000000000ff00ull) << 40) | \
107 (((u64)(x) & 0x00000000000000ffull) << 56))
145 #define __constant_be64_to_cpu(x) __ntfs_bswap_constant_64((u64)(
[all...]
/third_party/rust/crates/aho-corasick/src/packed/
H A Dvector.rs75 pub unsafe fn unpack64x128(a: __m128i) -> [u64; 2] { in unpack64x128()
77 _mm_cvtsi128_si64(a) as u64,
78 _mm_cvtsi128_si64(_mm_srli_si128(a, 8)) as u64,
86 pub unsafe fn unpack64x256(a: __m256i) -> [u64; 4] { in unpack64x256()
92 _mm_cvtsi128_si64(lo) as u64,
93 _mm_cvtsi128_si64(_mm_srli_si128(lo, 8)) as u64,
94 _mm_cvtsi128_si64(hi) as u64,
95 _mm_cvtsi128_si64(_mm_srli_si128(hi, 8)) as u64,
106 pub unsafe fn unpacklo64x256(a: __m256i, b: __m256i) -> [u64; 4] { in unpacklo64x256()
110 _mm_cvtsi128_si64(lo) as u64,
[all...]

Completed in 10 milliseconds

12345678910>>...36