/external/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_syscall_linux_x86_64.inc | 16 static uptr internal_syscall(u64 nr) { 17 u64 retval; 24 static uptr internal_syscall(u64 nr, T1 arg1) { 25 u64 retval; 26 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1) : 32 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2) { 33 u64 retval; 34 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1), 35 "S"((u64)arg2) : "rcx", "r11", "memory", "cc"); 40 static uptr internal_syscall(u64 n [all...] |
H A D | sanitizer_syscall_linux_aarch64.inc | 16 static uptr __internal_syscall(u64 nr) { 17 register u64 x8 asm("x8") = nr; 18 register u64 x0 asm("x0"); 28 static uptr __internal_syscall(u64 nr, u64 arg1) { 29 register u64 x8 asm("x8") = nr; 30 register u64 x0 asm("x0") = arg1; 38 (__internal_syscall)(n, (u64)(a1)) 40 static uptr __internal_syscall(u64 nr, u64 arg [all...] |
H A D | sanitizer_lfstack.h | 37 u64 cmp = atomic_load(&head_, memory_order_relaxed); 39 u64 cnt = (cmp & kCounterMask) + kCounterInc; 40 u64 xch = (u64)(uptr)p | cnt; 49 u64 cmp = atomic_load(&head_, memory_order_acquire); 55 u64 cnt = (cmp & kCounterMask); 56 u64 xch = (u64)(uptr)nxt | cnt; 65 static const u64 kPtrMask = ((u64) [all...] |
H A D | sanitizer_deadlock_detector_interface.h | 46 u64 ctx; 57 u64 thr_ctx; // user thread context 58 u64 mtx_ctx0; // user mutex context, start of the edge 59 u64 mtx_ctx1; // user mutex context, end of the edge 78 virtual DDLogicalThread* CreateLogicalThread(u64 ctx) { return nullptr; }
|
H A D | sanitizer_allocator.cc | 90 const u64 kBlockMagic = 0x6A6CB03ABCEBC041ull; 93 if (size + sizeof(u64) < size) 95 void *p = RawInternalAlloc(size + sizeof(u64), cache); 98 ((u64*)p)[0] = kBlockMagic; 99 return (char*)p + sizeof(u64); 105 addr = (char*)addr - sizeof(u64); 106 CHECK_EQ(kBlockMagic, ((u64*)addr)[0]); 107 ((u64*)addr)[0] = 0;
|
/external/squashfs-tools/kernel/fs/squashfs/ |
H A D | squashfs_fs_i.h | 27 u64 start; 31 u64 fragment_block; 34 u64 block_list_start; 37 u64 dir_idx_start;
|
H A D | squashfs.h | 36 extern int squashfs_read_data(struct super_block *, void **, u64, int, u64 *, 43 struct squashfs_cache *, u64, int); 46 extern int squashfs_read_metadata(struct super_block *, void *, u64 *, 49 u64, int); 51 u64, int); 52 extern int squashfs_read_table(struct super_block *, void *, u64, int); 55 extern __le64 *squashfs_read_inode_lookup_table(struct super_block *, u64, 59 extern int squashfs_frag_lookup(struct super_block *, unsigned int, u64 *); 61 u64, unsigne [all...] |
H A D | squashfs_fs_sb.h | 42 u64 block; 45 u64 next_index; 69 u64 inode_table; 70 u64 directory_table;
|
/external/fio/os/ |
H A D | kcompat.h | 6 #define u64 uint64_t macro
|
/external/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_mutexset.h | 27 u64 id; 28 u64 epoch; 35 void Add(u64 id, bool write, u64 epoch); 36 void Del(u64 id, bool write); 37 void Remove(u64 id); // Removes the mutex completely (if it's destroyed). 60 void MutexSet::Add(u64 id, bool write, u64 epoch) {} 61 void MutexSet::Del(u64 id, bool write) {} 62 void MutexSet::Remove(u64 i [all...] |
H A D | tsan_mutexset.cc | 25 void MutexSet::Add(u64 id, bool write, u64 epoch) { 36 u64 minepoch = (u64)-1; 37 u64 mini = (u64)-1; 55 void MutexSet::Del(u64 id, bool write) { 65 void MutexSet::Remove(u64 id) {
|
H A D | tsan_clock.h | 22 u64 epoch : kClkBits; 23 u64 reused : 64 - kClkBits; 53 u64 get(unsigned tid) const { 87 u64 get(unsigned tid) const { 92 void set(unsigned tid, u64 v); 94 void set(u64 v) { 119 u64 last_acquire_;
|
H A D | tsan_defs.h | 64 // Size of a single shadow value (u64). 124 T RoundUp(T p, u64 align) { 126 return (T)(((u64)p + align - 1) & ~(align - 1)); 130 T RoundDown(T p, u64 align) { 132 return (T)((u64)p & ~(align - 1)); 138 return (T)((u64)v & ((1ull << bits) - 1)); 142 u64 hash[2]; 157 u64 siz;
|
H A D | tsan_sync.h | 33 u64 uid; // Globally unique id. 36 u64 last_lock; 49 void Init(ThreadState *thr, uptr pc, uptr addr, u64 uid); 52 u64 GetId() const { 54 return GetLsb((u64)addr | (uid << 47), 61); 56 bool CheckId(u64 uid) const { 60 static uptr SplitId(u64 id, u64 *uid) {
|
H A D | tsan_trace.h | 40 // u64 typ : 3; // EventType. 41 // u64 addr : 61; // Associated pc. 42 typedef u64 Event; 50 u64 epoch0; // Start epoch for the trace.
|
/external/compiler-rt/test/tsan/ |
H A D | cond_version.c | 16 typedef unsigned long long u64; typedef 22 u64 sleep; 40 sleep = (u64)ts2.tv_sec * 1000000000 + ts2.tv_nsec - 41 ((u64)ts0.tv_sec * 1000000000 + ts0.tv_nsec);
|
/external/compiler-rt/lib/asan/ |
H A D | asan_mapping.h | 113 static const u64 kDefaultShadowScale = 3; 114 static const u64 kDefaultShadowOffset32 = 1ULL << 29; // 0x20000000 115 static const u64 kDefaultShadowOffset64 = 1ULL << 44; 116 static const u64 kDefaultShort64bitShadowOffset = 0x7FFF8000; // < 2G. 117 static const u64 kIosShadowOffset32 = 1ULL << 30; // 0x40000000 118 static const u64 kIosShadowOffset64 = 0x130000000; 119 static const u64 kIosSimShadowOffset32 = 1ULL << 30; 120 static const u64 kIosSimShadowOffset64 = kDefaultShadowOffset64; 121 static const u64 kAArch64_ShadowOffset64 = 1ULL << 36; 122 static const u64 kMIPS32_ShadowOffset3 [all...] |
/external/compiler-rt/lib/tsan/tests/unit/ |
H A D | tsan_sync_test.cc | 22 u64 block[1] = {}; // fake malloc block 23 m->AllocBlock(thr, 0, (uptr)&block[0], 1 * sizeof(u64)); 26 EXPECT_EQ(mb->siz, 1 * sizeof(u64)); 29 EXPECT_EQ(sz, 1 * sizeof(u64)); 37 u64 block[4] = {}; // fake malloc block 38 m->AllocBlock(thr, 0, (uptr)&block[0], 1 * sizeof(u64)); 39 m->AllocBlock(thr, 0, (uptr)&block[1], 3 * sizeof(u64)); 41 EXPECT_EQ(mb1->siz, 1 * sizeof(u64)); 43 EXPECT_EQ(mb2->siz, 3 * sizeof(u64)); 44 m->FreeRange(thr, 0, (uptr)&block[0], 4 * sizeof(u64)); [all...] |
H A D | tsan_shadow_test.cc | 21 EXPECT_EQ(s.tid(), (u64)11); 22 EXPECT_EQ(s.epoch(), (u64)22); 26 EXPECT_EQ(s.addr0(), (u64)0); 27 EXPECT_EQ(s.size(), (u64)1); 31 EXPECT_EQ(s.epoch(), (u64)23); 33 EXPECT_EQ(s.epoch(), (u64)24); 65 u64 aligned_data[4];
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
H A D | number_precision.hpp | 63 typedef u64 u64vec1; //!< \brief 64bit unsigned integer scalar. (from GLM_GTX_number_precision extension)
|
/external/wpa_supplicant_8/hostapd/src/crypto/ |
H A D | sha256_i.h | 15 u64 length;
|
H A D | sha512_i.h | 15 u64 length, state[8];
|
/external/wpa_supplicant_8/src/crypto/ |
H A D | sha256_i.h | 15 u64 length;
|
H A D | sha512_i.h | 15 u64 length, state[8];
|
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/ |
H A D | sha256_i.h | 15 u64 length;
|