HomeSort by relevance Sort by last modified time
    Searched refs:u64 (Results 1 - 25 of 349) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
progress.h 7 void (*update)(u64, u64, const char *);
15 void ui_progress__update(u64 curr, u64 total, const char *title);
progress.c 4 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/
svghelper.h 6 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_frequency)
    [all...]
types.h 7 * We define u64 as uint64_t for every architecture
10 typedef uint64_t u64; typedef
20 u64 val64;
values.h 12 u64 *counterrawid;
14 u64 **value;
22 u64 rawid, const char *name, u64 value);
event.h 14 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 id
    [all...]
stat.h 9 u64 max, min;
12 void update_stats(struct stats *stats, u64 val);
22 stats->min = (u64) -1;
map.h 32 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_ip(struct map *map, u64 ip
    [all...]
unwind.h 11 u64 ip;
20 u64 sample_uregs,
29 u64 sample_uregs __maybe_unused,
top.h 22 u64 samples;
23 u64 kernel_samples, us_samples;
24 u64 exact_samples;
25 u64 guest_us_samples, guest_kernel_samples;
callchain.h 30 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 period)
    [all...]
  /development/ndk/platforms/android-3/include/linux/
statfs.h 22 u64 f_blocks;
23 u64 f_bfree;
24 u64 f_bavail;
25 u64 f_files;
26 u64 f_ffree;
  /external/linux-tools-perf/perf-3.12.0/tools/perf/arch/x86/util/
tsc.h 9 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/
kcompat.h 6 #define u64 uint64_t macro
  /external/compiler-rt/lib/tsan/rtl/
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 id) {
    [all...]
tsan_clock.h 22 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_;
tsan_rtl.h 74 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 res = (x_ & ~kIgnoreBit) >> kTidShift
    [all...]
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) {
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) {
  /external/oprofile/libutil/
op_types.h 23 typedef unsigned long long u64; typedef
31 typedef u64 count_type;
  /external/compiler-rt/lib/sanitizer_common/
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)-1) >> kCounterBits
    [all...]
  /external/linux-tools-perf/perf-3.12.0/arch/x86/include/asm/
svm.h 61 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_rip
    [all...]
  /external/oprofile/libopagent/
jitdump.h 47 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/
cond_version.c 13 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/linux-tools-perf/perf-3.12.0/tools/perf/
perf.h 183 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_interval
    [all...]

Completed in 2135 milliseconds

1 2 3 4 5 6 7 8 91011>>