Searched refs:u64 (Results 26 - 50 of 380) sorted by relevance

1234567891011>>

/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_mutexset.cc25 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 Dtsan_sync.h33 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 Dtsan_trace.h40 // u64 typ : 3; // EventType.
41 // u64 addr : 61; // Associated pc.
42 typedef u64 Event;
46 u64 epoch0; // Start epoch for the trace.
H A Dtsan_defs.h64 // Size of a single shadow value (u64).
147 T RoundUp(T p, u64 align) {
149 return (T)(((u64)p + align - 1) & ~(align - 1));
153 T RoundDown(T p, u64 align) {
155 return (T)((u64)p & ~(align - 1));
161 return (T)((u64)v & ((1ull << bits) - 1));
165 u64 hash[2];
181 u64 siz;
/external/oprofile/libop/
H A Dop_sample_file.h36 u64 anon_start;
37 u64 cg_to_anon_start;
/external/linux-tools-perf/perf-3.12.0/tools/perf/arch/x86/util/
H A Dtsc.c11 u64 perf_time_to_tsc(u64 ns, struct perf_tsc_conversion *tc)
13 u64 t, quot, rem;
22 u64 tsc_to_perf_time(u64 cyc, struct perf_tsc_conversion *tc)
24 u64 quot, rem;
/external/openssl/crypto/modes/
H A Dmodes_lcl.h13 typedef unsigned __int64 u64; typedef
17 typedef unsigned long u64; typedef
21 typedef unsigned long long u64; typedef
39 # define BSWAP8(x) ({ u64 ret=(x); \
46 # define BSWAP8(x) ({ u32 lo=(u64)(x)>>32,hi=(x); \
49 (u64)hi<<32|lo; })
54 # define BSWAP8(x) ({ u32 lo=(u64)(x)>>32,hi=(x); \
57 (u64)hi<<32|lo; })
66 # define BSWAP8(x) _byteswap_uint64((u64)(x))
88 typedef struct { u64 h
[all...]
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_sync_test.cc22 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 Dtsan_shadow_test.cc21 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/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector_interface.h46 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 0; }
H A Dsanitizer_allocator.cc90 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/linux-tools-perf/perf-3.12.0/arch/x86/include/asm/
H A Dkvm_host.h218 u64 *spt;
259 u64 (*get_pdptr)(struct kvm_vcpu *vcpu, int index);
272 u64 *spte, const void *pte);
286 u64 *pae_root;
287 u64 *lm_root;
288 u64 rsvd_bits_mask[2][4];
289 u64 bad_mt_xwr;
300 u64 pdptrs[4]; /* pae */
311 u64 counter;
312 u64 eventse
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dheader.h43 u64 offset;
44 u64 size;
48 u64 magic;
49 u64 size;
50 u64 attr_size;
59 u64 magic;
60 u64 size;
95 u64 data_offset;
96 u64 data_size;
97 u64 feat_offse
[all...]
H A Dsession.h18 u64 last_flush;
19 u64 next_flush;
20 u64 max_timestamp;
60 u64 data_offset, u64 data_size, u64 size,
66 struct perf_sample *sample, u64 file_offset);
H A Dsort.h49 u64 period;
50 u64 period_sys;
51 u64 period_us;
52 u64 period_guest_sys;
53 u64 period_guest_us;
54 u64 weight;
87 u64 ip;
/external/linux-tools-perf/perf-3.12.0/include/linux/
H A Dperf_event.h92 u64 config; /* register value */
107 u64 config;
108 u64 last_tag;
144 u64 sample_period;
145 u64 last_period;
147 u64 interrupts_seq;
148 u64 interrupts;
150 u64 freq_time_stamp;
151 u64 freq_count_stamp;
342 u64 total_time_enable
[all...]
H A Dhash.h35 static __always_inline u64 hash_64(u64 val, unsigned int bits)
37 u64 hash = val;
40 u64 n = hash;
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/tui/
H A Dprogress.c7 static void tui_progress__update(u64 curr, u64 total, const char *title)
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dcommon.h90 typedef UINT64 u64; typedef
102 typedef unsigned long long u64; typedef
115 typedef unsigned long long u64; typedef
121 typedef unsigned long u64; typedef
135 typedef uint64_t u64; typedef
198 #define le_to_host64(n) ((__force u64) (le64) (n))
199 #define host_to_le64(n) ((__force le64) (u64) (n))
200 #define be_to_host64(n) bswap_64((__force u64) (be64) (n))
288 static inline u64 WPA_GET_BE64(const u8 *a)
290 return (((u64)
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dcommon.h90 typedef UINT64 u64; typedef
102 typedef unsigned long long u64; typedef
115 typedef unsigned long long u64; typedef
121 typedef unsigned long u64; typedef
135 typedef uint64_t u64; typedef
198 #define le_to_host64(n) ((__force u64) (le64) (n))
199 #define host_to_le64(n) ((__force le64) (u64) (n))
200 #define be_to_host64(n) bswap_64((__force u64) (be64) (n))
288 static inline u64 WPA_GET_BE64(const u8 *a)
290 return (((u64)
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dcommon.h90 typedef UINT64 u64; typedef
102 typedef unsigned long long u64; typedef
115 typedef unsigned long long u64; typedef
121 typedef unsigned long u64; typedef
135 typedef uint64_t u64; typedef
198 #define le_to_host64(n) ((__force u64) (le64) (n))
199 #define host_to_le64(n) ((__force le64) (u64) (n))
200 #define be_to_host64(n) bswap_64((__force u64) (be64) (n))
288 static inline u64 WPA_GET_BE64(const u8 *a)
290 return (((u64)
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dsha256_i.h15 u64 length;
/external/wpa_supplicant_8/src/crypto/
H A Dsha256_i.h15 u64 length;
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dsha256_i.h15 u64 length;
/external/compiler-rt/lib/asan/
H A Dasan_mapping.h83 static const u64 kDefaultShadowScale = 3;
84 static const u64 kDefaultShadowOffset32 = 1ULL << 29; // 0x20000000
85 static const u64 kIosShadowOffset32 = 1ULL << 30; // 0x40000000
86 static const u64 kDefaultShadowOffset64 = 1ULL << 44;
87 static const u64 kDefaultShort64bitShadowOffset = 0x7FFF8000; // < 2G.
88 static const u64 kAArch64_ShadowOffset64 = 1ULL << 36;
89 static const u64 kMIPS32_ShadowOffset32 = 0x0aaa8000;
90 static const u64 kPPC64_ShadowOffset64 = 1ULL << 41;
91 static const u64 kFreeBSD_ShadowOffset32 = 1ULL << 30; // 0x40000000
92 static const u64 kFreeBSD_ShadowOffset6
[all...]

Completed in 1178 milliseconds

1234567891011>>