Home
last modified time | relevance | path

Searched refs:s64 (Results 1 – 25 of 81) sorted by relevance

1234

/tools/testing/selftests/bpf/progs/
A Dexceptions_assert.c26 check_assert(s64, ==, eq_zero, 0);
33 check_assert(s64, <, lt_pos, INT_MAX);
35 check_assert(s64, <, lt_zero, 0);
37 check_assert(s64, <, lt_neg, INT_MIN);
42 check_assert(s64, <=, le_zero, 0);
47 check_assert(s64, >, gt_pos, INT_MAX);
49 check_assert(s64, >, gt_zero, 0);
51 check_assert(s64, >, gt_neg, INT_MIN);
56 check_assert(s64, >=, ge_zero, 0);
66 s64 num; in check_assert_range_s64()
[all …]
A Dexceptions.c217 __noinline int assert_neg_gfunc(s64 c) in assert_neg_gfunc()
219 volatile s64 cookie = c; in assert_neg_gfunc()
225 __noinline int assert_pos_gfunc(s64 c) in assert_pos_gfunc()
227 volatile s64 cookie = c; in assert_pos_gfunc()
233 __noinline int assert_negeq_gfunc(s64 c) in assert_negeq_gfunc()
235 volatile s64 cookie = c; in assert_negeq_gfunc()
243 volatile s64 cookie = c; in assert_poseq_gfunc()
267 volatile s64 cookie = c; in assert_neg_gfunc_with()
275 volatile s64 cookie = c; in assert_pos_gfunc_with()
283 volatile s64 cookie = c; in assert_negeq_gfunc_with()
[all …]
A Diters_testmod_seq.c13 extern int bpf_iter_testmod_seq_new(struct bpf_iter_testmod_seq *it, s64 value, int cnt) __ksym;
14 extern s64 *bpf_iter_testmod_seq_next(struct bpf_iter_testmod_seq *it) __ksym;
15 extern s64 bpf_iter_testmod_seq_value(int blah, struct bpf_iter_testmod_seq *it) __ksym;
96 s64 sum = 0, *v; in testmod_seq_getter_after_bad()
114 s64 sum = 0, *v; in testmod_seq_getter_good()
/tools/testing/selftests/resctrl/
A Dfill_buf.c109 ssize_t s64; in alloc_buffer() local
118 s64 = buf_size / sizeof(uint64_t); in alloc_buffer()
120 while (s64 > 0) { in alloc_buffer()
123 s64 -= (CL_SIZE / sizeof(uint64_t)); in alloc_buffer()
/tools/testing/selftests/bpf/prog_tests/
A Dreg_bounds.c32 #define s64 ___s64 macro
72 case S64: return (s64)x < (s64)y ? (s64)x : (s64)y; in min_t()
83 case S64: return (s64)x > (s64)y ? (s64)x : (s64)y; in max_t()
94 case S64: return (s64)x; in cast_t()
153 case S64: return (s64)x >= SNUM_MIN_DECIMAL && (s64)x <= SNUM_MAX_DECIMAL; in num_is_small()
188 if ((s64)x == S64_MAX) in snprintf_num()
265 case S64: return (struct range){ (s64)a, (s64)b }; in range()
330 s64 a = (s64)x.a, b = (s64)x.b; in range_cast_s64()
419 case S64: return (s64)x.a <= (s64)x.b; in is_valid_range()
446 (s64)x.a >= S32_MIN && (s64)x.b <= S32_MAX) in range_refine()
[all …]
/tools/perf/util/
A Dannotate.h115 s64 offset;
255 s64 cycles_spark[NUM_SPARKS];
311 s64 offset);
579 int annotate_get_basic_blocks(struct symbol *sym, s64 src, s64 dst,
A Ddisasm.h65 s64 offset;
103 s64 offset;
A Dstring2.h14 s64 perf_atoll(const char *str);
A Dblock-info.h17 s64 cycles_spark[NUM_SPARKS];
A Dtool.h30 typedef s64 (*event_op3)(struct perf_session *session, union perf_event *event);
/tools/sched_ext/
A Dscx_flatcg.h47 s64 cvtime_delta;
/tools/perf/util/bpf_skel/
A Dsyscall_summary.bpf.c66 static void update_stats(int cpu_or_tid, u64 cgroup_id, int nr, s64 duration, in update_stats()
129 s64 delta; in sys_exit()
/tools/testing/selftests/sched_ext/
A Dhotplug.bpf.c28 s64 code = SCX_ECODE_ACT_RESTART | HOTPLUG_EXIT_RSN; in exit_from_hotplug()
A Dselect_cpu_vtime.bpf.c25 return (s64)(a - b) < 0; in vtime_before()
/tools/perf/util/bpf_skel/vmlinux/
A Dvmlinux.h20 typedef __s64 s64; typedef
51 s64 counter;
/tools/testing/selftests/kvm/x86/
A Dhyperv_clock.c16 volatile s64 tsc_offset;
54 s64 delta_ns; in check_tsc_msr_rdtsc()
179 s64 delta_ns; in host_check_tsc_msr_rdtsc()
/tools/testing/selftests/powerpc/security/
A Dspectre_v2.c25 static int do_count_loop(struct event *events, bool is_p9, s64 *miss_percent) in do_count_loop()
132 s64 miss_percent; in spectre_v2_test()
/tools/sched_ext/include/scx/
A Dcommon.h28 typedef int64_t s64; typedef
A Dcommon.bpf.h69 void scx_bpf_exit_bstr(s64 exit_code, char *fmt, unsigned long long *data, u32 data__sz) __ksym __w…
461 static inline s64 time_delta(u64 after, u64 before) in time_delta()
463 return (s64)(after - before) > 0 ? (s64)(after - before) : 0; in time_delta()
479 return (s64)(b - a) < 0; in time_after()
503 return (s64)(a - b) >= 0; in time_after_eq()
/tools/include/linux/
A Dtypes.h34 typedef int64_t s64; typedef
/tools/perf/ui/gtk/
A Dannotate.c42 if (dl->al.offset == (s64) -1) in perf_gtk__get_percent()
73 if (dl->al.offset == (s64) -1) in perf_gtk__get_offset()
90 if (dl->al.offset != (s64) -1) in perf_gtk__get_line()
/tools/lib/bpf/
A Dlibbpf_errno.c18 #pragma GCC poison u8 u16 u32 u64 s8 s16 s32 s64
A Dstr_error.c13 #pragma GCC poison u8 u16 u32 u64 s8 s16 s32 s64
/tools/objtool/include/objtool/
A Delf.h131 s64 addend);
251 static inline s64 reloc_addend(struct reloc *reloc) in reloc_addend()
256 static inline void set_reloc_addend(struct elf *elf, struct reloc *reloc, s64 addend) in set_reloc_addend()
/tools/testing/selftests/bpf/test_kmods/
A Dbpf_testmod.h30 s64 value;

Completed in 37 milliseconds

1234