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

1234567891011>>

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_syscall_linux_x86_64.inc16 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 Dsanitizer_lfstack.h37 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...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
H A Dprogress.h7 void (*update)(u64, u64, const char *);
15 void ui_progress__update(u64 curr, u64 total, const char *title);
H A Dprogress.c4 static void nop_progress_update(u64 curr __maybe_unused,
5 u64 total __maybe_unused,
17 void ui_progress__update(u64 curr, u64 total, const char *title)
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dsvghelper.h6 extern void open_svg(const char *filename, int cpus, int rows, u64 start, u64 end);
7 extern void svg_box(int Yslot, u64 start, u64 end, const char *type);
8 extern void svg_sample(int Yslot, int cpu, u64 start, u64 end);
9 extern void svg_waiting(int Yslot, u64 start, u64 end);
10 extern void svg_cpu_box(int cpu, u64 max_frequency, u64 turbo_frequenc
[all...]
H A Dtypes.h7 * We define u64 as uint64_t for every architecture
10 typedef uint64_t u64; typedef
20 u64 val64;
H A Dvalues.h12 u64 *counterrawid;
14 u64 **value;
22 u64 rawid, const char *name, u64 value);
H A Devent.h14 u64 start;
15 u64 len;
16 u64 pgoff;
23 u64 start;
24 u64 len;
25 u64 pgoff;
28 u64 ino;
29 u64 ino_generation;
43 u64 time;
48 u64 i
[all...]
H A Dstat.h9 u64 max, min;
12 void update_stats(struct stats *stats, u64 val);
22 stats->min = (u64) -1;
H A Dmap.h32 u64 start;
33 u64 end;
38 u64 pgoff;
40 u64 ino; /* only valid for MMAP2 record */
41 u64 ino_generation;/* only valid for MMAP2 record */
44 u64 (*map_ip)(struct map *, u64);
46 u64 (*unmap_ip)(struct map *, u64);
68 static inline u64 map__map_i
[all...]
H A Dunwind.h11 u64 ip;
20 u64 sample_uregs,
29 u64 sample_uregs __maybe_unused,
H A Dtop.h22 u64 samples;
23 u64 kernel_samples, us_samples;
24 u64 exact_samples;
25 u64 guest_us_samples, guest_kernel_samples;
H A Dcallchain.h30 u64 hit;
31 u64 children_hit;
35 u64 max_depth;
42 u64, struct callchain_param *);
59 u64 ip;
71 u64 ip;
78 u64 nr;
81 u64 pos;
103 static inline u64 callchain_cumul_hits(struct callchain_node *node)
111 u64 perio
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/arch/x86/util/
H A Dtsc.h9 u64 time_zero;
17 u64 perf_time_to_tsc(u64 ns, struct perf_tsc_conversion *tc);
18 u64 tsc_to_perf_time(u64 cyc, struct perf_tsc_conversion *tc);
/external/fio/os/
H A Dkcompat.h6 #define u64 uint64_t macro
/external/qemu/distrib/ext4_utils/src/
H A Dextent.h23 void inode_allocate_extents(struct ext4_inode *inode, u64 len);
24 void inode_allocate_file_extents(struct ext4_inode *inode, u64 len,
26 u8 *inode_allocate_data_extents(struct ext4_inode *inode, u64 len,
27 u64 backing_len);
/external/oprofile/libutil/
H A Dop_types.h23 typedef unsigned long long u64; typedef
31 typedef u64 count_type;
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_mutexset.h27 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 Dtsan_clock.h22 u64 epoch : kClkBits;
23 u64 reused : 64 - kClkBits;
35 u64 get(unsigned tid) const {
59 u64 get(unsigned tid) const {
64 void set(unsigned tid, u64 v);
66 void set(u64 v) {
91 u64 last_acquire_;
H A Dtsan_rtl.h74 u64 v1, u64 v2);
76 const u64 kShadowRodata = (u64)-1; // .rodata shadow marker
86 FastState(u64 tid, u64 epoch) {
94 explicit FastState(u64 x)
98 u64 raw() const {
102 u64 tid() const {
103 u64 re
[all...]
/external/linux-tools-perf/perf-3.12.0/arch/x86/include/asm/
H A Dsvm.h61 u64 intercept;
64 u64 iopm_base_pa;
65 u64 msrpm_base_pa;
66 u64 tsc_offset;
76 u64 exit_info_1;
77 u64 exit_info_2;
80 u64 nested_ctl;
84 u64 nested_cr3;
85 u64 lbr_ctl;
88 u64 next_ri
[all...]
/external/oprofile/libopagent/
H A Djitdump.h47 u64 timestamp;
68 u64 timestamp;
69 u64 vma;
70 u64 code_addr;
79 u64 timestamp;
80 u64 vma;
87 u64 timestamp;
94 u64 timestamp;
95 u64 code_addr;
/external/compiler-rt/test/tsan/
H A Dcond_version.c13 typedef unsigned long long u64; typedef
19 u64 sleep;
37 sleep = (u64)ts2.tv_sec * 1000000000 + ts2.tv_nsec -
38 ((u64)ts0.tv_sec * 1000000000 + ts0.tv_nsec);
/external/qemu/distrib/libsparse/src/
H A Dsparse_defs.h23 #define __le64 u64
27 #define __be64 u64
31 #define __u64 u64
36 typedef unsigned long long u64; typedef
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dperf.h183 u64 nr;
184 u64 ips[0];
188 u64 mispred:1;
189 u64 predicted:1;
190 u64 reserved:62;
194 u64 from;
195 u64 to;
200 u64 nr;
235 u64 branch_stack;
236 u64 default_interva
[all...]

Completed in 5107 milliseconds

1234567891011>>