| /tools/include/linux/ |
| D | ctype.h | 25 #define isalnum(c) ((__ismask(c)&(_U|_L|_D)) != 0) argument 26 #define isalpha(c) ((__ismask(c)&(_U|_L)) != 0) argument 27 #define iscntrl(c) ((__ismask(c)&(_C)) != 0) argument 28 #define isgraph(c) ((__ismask(c)&(_P|_U|_L|_D)) != 0) argument 29 #define islower(c) ((__ismask(c)&(_L)) != 0) argument 30 #define isprint(c) ((__ismask(c)&(_P|_U|_L|_D|_SP)) != 0) argument 31 #define ispunct(c) ((__ismask(c)&(_P)) != 0) argument 33 #define isspace(c) ((__ismask(c)&(_S)) != 0) argument 34 #define isupper(c) ((__ismask(c)&(_U)) != 0) argument 35 #define isxdigit(c) ((__ismask(c)&(_D|_X)) != 0) argument [all …]
|
| D | jhash.h | 35 #define __jhash_mix(a, b, c) \ argument 46 #define __jhash_final(a, b, c) \ argument 72 u32 a, b, c; in jhash() local 119 u32 a, b, c; in jhash2() local 149 static inline u32 __jhash_nwords(u32 a, u32 b, u32 c, u32 initval) in __jhash_nwords() 160 static inline u32 jhash_3words(u32 a, u32 b, u32 c, u32 initval) in jhash_3words()
|
| /tools/include/nolibc/ |
| D | ctype.h | 17 int isascii(int c) in isascii() 24 int isblank(int c) in isblank() 30 int iscntrl(int c) in iscntrl() 37 int isdigit(int c) in isdigit() 43 int isgraph(int c) in isgraph() 50 int islower(int c) in islower() 56 int isprint(int c) in isprint() 63 int isspace(int c) in isspace() 70 int isupper(int c) in isupper() 76 int isxdigit(int c) in isxdigit() [all …]
|
| D | stdio.h | 121 #define putc(c, stream) fputc(c, stream) argument 124 int fputc(int c, FILE* stream) in fputc() 134 int putchar(int c) in putchar() 194 int c; in fgets() local 218 char escape, lpref, c; in vfprintf() local
|
| /tools/testing/selftests/bpf/progs/ |
| D | exceptions.c | 201 __noinline int assert_nz_gfunc(u64 c) in assert_nz_gfunc() 209 __noinline int assert_zero_gfunc(u64 c) in assert_zero_gfunc() 217 __noinline int assert_neg_gfunc(s64 c) in assert_neg_gfunc() 225 __noinline int assert_pos_gfunc(s64 c) in assert_pos_gfunc() 233 __noinline int assert_negeq_gfunc(s64 c) in assert_negeq_gfunc() 241 __noinline int assert_poseq_gfunc(s64 c) in assert_poseq_gfunc() 249 __noinline int assert_nz_gfunc_with(u64 c) in assert_nz_gfunc_with() 257 __noinline int assert_zero_gfunc_with(u64 c) in assert_zero_gfunc_with() 265 __noinline int assert_neg_gfunc_with(s64 c) in assert_neg_gfunc_with() 273 __noinline int assert_pos_gfunc_with(s64 c) in assert_pos_gfunc_with() [all …]
|
| D | test_jhash.h | 12 #define __jhash_mix(a, b, c) \ argument 22 #define __jhash_final(a, b, c) \ argument 38 u32 a, b, c; in jhash() local 75 u32 a, b, c; in jhash2() local
|
| D | tracing_struct.c | 30 int BPF_PROG2(test_struct_arg_1, struct bpf_testmod_struct_arg_2, a, int, b, int, c) in BPF_PROG2() argument 40 int BPF_PROG2(test_struct_arg_2, struct bpf_testmod_struct_arg_2, a, int, b, int, c, int, ret) in BPF_PROG2() argument 59 int BPF_PROG2(test_struct_arg_3, int, a, struct bpf_testmod_struct_arg_2, b, int, c) in BPF_PROG2() argument 69 int BPF_PROG2(test_struct_arg_4, int, a, struct bpf_testmod_struct_arg_2, b, int, c, int, ret) in BPF_PROG2() argument 76 int BPF_PROG2(test_struct_arg_5, int, a, int, b, struct bpf_testmod_struct_arg_2, c) in BPF_PROG2() argument 86 int BPF_PROG2(test_struct_arg_6, int, a, int, b, struct bpf_testmod_struct_arg_2, c, int, ret) in BPF_PROG2() argument 93 int BPF_PROG2(test_struct_arg_7, struct bpf_testmod_struct_arg_1, a, int, b, in BPF_PROG2() argument 106 int BPF_PROG2(test_struct_arg_8, struct bpf_testmod_struct_arg_1, a, int, b, in BPF_PROG2() argument
|
| D | btf_data.c | 6 int c; member 12 int c; member 18 int c; member 24 int c; member
|
| D | fentry_test.c | 27 int BPF_PROG(test3, char a, int b, __u64 c) in BPF_PROG() 35 int BPF_PROG(test4, void *a, char b, int c, __u64 d) in BPF_PROG() 43 int BPF_PROG(test5, __u64 a, void *b, short c, int d, __u64 e) in BPF_PROG() 52 int BPF_PROG(test6, __u64 a, void *b, short c, int d, void * e, __u64 f) in BPF_PROG()
|
| D | fexit_test.c | 27 int BPF_PROG(test3, char a, int b, __u64 c, int ret) in BPF_PROG() 35 int BPF_PROG(test4, void *a, char b, int c, __u64 d, int ret) in BPF_PROG() 44 int BPF_PROG(test5, __u64 a, void *b, short c, int d, __u64 e, int ret) in BPF_PROG() 53 int BPF_PROG(test6, __u64 a, void *b, short c, int d, void *e, __u64 f, int ret) in BPF_PROG()
|
| D | tracing_struct_many_args.c | 14 int c; member 23 int BPF_PROG2(test_struct_many_args_1, __u64, a, void *, b, short, c, int, d, in BPF_PROG2() argument 37 int BPF_PROG2(test_struct_many_args_2, __u64, a, void *, b, short, c, int, d, in BPF_PROG2() argument 45 int BPF_PROG2(test_struct_many_args_3, __u64, a, void *, b, short, c, int, d, in BPF_PROG2() argument 60 int BPF_PROG2(test_struct_many_args_4, __u64, a, void *, b, short, c, int, d, in BPF_PROG2() argument 69 int BPF_PROG2(test_struct_many_args_5, __u64, a, void *, b, short, c, int, d, void *, e, in BPF_PROG2() argument 88 int BPF_PROG2(test_struct_many_args_6, __u64, a, void *, b, short, c, int, d, void *, e, in BPF_PROG2() argument
|
| D | fentry_many_args.c | 11 int BPF_PROG(test1, __u64 a, void *b, short c, int d, void *e, char f, in BPF_PROG() 21 int BPF_PROG(test2, __u64 a, void *b, short c, int d, void *e, char f, in BPF_PROG() 32 int BPF_PROG(test3, __u64 a, __u64 b, __u64 c, __u64 d, __u64 e, __u64 f, in BPF_PROG()
|
| D | test_core_reloc_flavors.c | 19 int c; member 24 int c; member 39 int c; member
|
| D | bpf_iter_ksym.c | 10 static inline char to_lower(char c) in to_lower() 17 static inline char to_upper(char c) in to_upper()
|
| D | fexit_many_args.c | 11 int BPF_PROG(test1, __u64 a, void *b, short c, int d, void *e, char f, in BPF_PROG() 21 int BPF_PROG(test2, __u64 a, void *b, short c, int d, void *e, char f, in BPF_PROG() 33 int BPF_PROG(test3, __u64 a, __u64 b, __u64 c, __u64 d, __u64 e, __u64 f, in BPF_PROG()
|
| /tools/testing/selftests/kvm/ |
| D | get-reg-list.c | 57 static const char *config_name(struct vcpu_reg_list *c) in config_name() 114 void __weak finalize_vcpu(struct kvm_vcpu *vcpu, struct vcpu_reg_list *c) in finalize_vcpu() 119 static void prepare_vcpu_init(struct vcpu_reg_list *c, struct kvm_vcpu_init *init) in prepare_vcpu_init() 128 static struct kvm_vcpu *vcpu_config_get_vcpu(struct vcpu_reg_list *c, struct kvm_vm *vm) in vcpu_config_get_vcpu() 140 static struct kvm_vcpu *vcpu_config_get_vcpu(struct vcpu_reg_list *c, struct kvm_vm *vm) in vcpu_config_get_vcpu() 146 static void check_supported(struct vcpu_reg_list *c) in check_supported() 163 static void run_test(struct vcpu_reg_list *c) in run_test() 312 struct vcpu_reg_list *c; in help() local 337 struct vcpu_reg_list *c = NULL; in parse_config() local 357 struct vcpu_reg_list *c, *sel = NULL; in main() local
|
| /tools/testing/selftests/bpf/ |
| D | sdt.h | 50 # define _SDT_ASM_3(a, b, c) a,b,c; argument 51 # define _SDT_ASM_5(a, b, c, d, e) a,b,c,d,e; argument 57 # define _SDT_DEPAREN_3(a,b,c) a b c argument 58 # define _SDT_DEPAREN_4(a,b,c,d) a b c d argument 59 # define _SDT_DEPAREN_5(a,b,c,d,e) a b c d e argument 60 # define _SDT_DEPAREN_6(a,b,c,d,e,f) a b c d e f argument 61 # define _SDT_DEPAREN_7(a,b,c,d,e,f,g) a b c d e f g argument 62 # define _SDT_DEPAREN_8(a,b,c,d,e,f,g,h) a b c d e f g h argument 63 # define _SDT_DEPAREN_9(a,b,c,d,e,f,g,h,i) a b c d e f g h i argument 64 # define _SDT_DEPAREN_10(a,b,c,d,e,f,g,h,i,j) a b c d e f g h i j argument [all …]
|
| /tools/perf/scripts/python/Perf-Trace-Util/ |
| D | Context.c | 65 struct scripting_context *c = get_scripting_context(args); in perf_trace_context_common_pc() local 76 struct scripting_context *c = get_scripting_context(args); in perf_trace_context_common_flags() local 87 struct scripting_context *c = get_scripting_context(args); in perf_trace_context_common_lock_depth() local 98 struct scripting_context *c = get_scripting_context(args); in perf_sample_insn() local 116 struct scripting_context *c; in perf_set_itrace_options() local 142 struct scripting_context *c = get_scripting_context(args); in perf_sample_src() local
|
| /tools/testing/selftests/kvm/include/aarch64/ |
| D | processor.h | 192 #define writel_relaxed(v,c) ((void)__raw_writel((__force u32)cpu_to_le32(v),(c))) argument 193 #define readl_relaxed(c) ({ u32 __r = le32_to_cpu((__force __le32)__raw_readl(c)); __r; }) argument 194 #define writeq_relaxed(v,c) ((void)__raw_writeq((__force u64)cpu_to_le64(v),(c))) argument 195 #define readq_relaxed(c) ({ u64 __r = le64_to_cpu((__force __le64)__raw_readq(c)); __r; }) argument 197 #define writel(v,c) ({ __iowmb(); writel_relaxed((v),(c));}) argument 198 #define readl(c) ({ u32 __v = readl_relaxed(c); __iormb(__v); __v; }) argument 199 #define writeq(v,c) ({ __iowmb(); writeq_relaxed((v),(c));}) argument 200 #define readq(c) ({ u64 __v = readq_relaxed(c); __iormb(__v); __v; }) argument
|
| /tools/testing/selftests/mm/ |
| D | khugepaged.c | 643 static void collapse_full(struct collapse_context *c, struct mem_ops *ops) in collapse_full() 657 static void collapse_empty(struct collapse_context *c, struct mem_ops *ops) in collapse_empty() 666 static void collapse_single_pte_entry(struct collapse_context *c, struct mem_ops *ops) in collapse_single_pte_entry() 677 static void collapse_max_ptes_none(struct collapse_context *c, struct mem_ops *ops) in collapse_max_ptes_none() 713 static void collapse_swapin_single_pte(struct collapse_context *c, struct mem_ops *ops) in collapse_swapin_single_pte() 739 static void collapse_max_ptes_swap(struct collapse_context *c, struct mem_ops *ops) in collapse_max_ptes_swap() 786 static void collapse_single_pte_entry_compound(struct collapse_context *c, struct mem_ops *ops) in collapse_single_pte_entry_compound() 814 static void collapse_full_of_compound(struct collapse_context *c, struct mem_ops *ops) in collapse_full_of_compound() 833 static void collapse_compound_extreme(struct collapse_context *c, struct mem_ops *ops) in collapse_compound_extreme() 886 static void collapse_fork(struct collapse_context *c, struct mem_ops *ops) in collapse_fork() [all …]
|
| /tools/testing/selftests/powerpc/stringloops/ |
| D | strlen.c | 66 char c; in testcase() local 79 char c; in testcase() local 93 char c; in testcase() local
|
| /tools/testing/selftests/powerpc/pmu/ |
| D | lib.c | 22 char c = PARENT_TOKEN; in sync_with_child() local 34 char c; in wait_for_parent() local 44 char c = CHILD_TOKEN; in notify_parent() local 53 char c = ~CHILD_TOKEN; in notify_parent_of_error() local
|
| /tools/lib/bpf/ |
| D | bpf_core_read.h | 359 #define ___last4(a, b, c, x) x argument 360 #define ___last5(a, b, c, d, x) x argument 361 #define ___last6(a, b, c, d, e, x) x argument 362 #define ___last7(a, b, c, d, e, f, x) x argument 363 #define ___last8(a, b, c, d, e, f, g, x) x argument 364 #define ___last9(a, b, c, d, e, f, g, h, x) x argument 365 #define ___last10(a, b, c, d, e, f, g, h, i, x) x argument 370 #define ___nolast4(a, b, c, _) a, b, c argument 371 #define ___nolast5(a, b, c, d, _) a, b, c, d argument 372 #define ___nolast6(a, b, c, d, e, _) a, b, c, d, e argument [all …]
|
| /tools/perf/ |
| D | perf.c | 105 static bool same_cmd_with_prefix(const char *var, struct pager_config *c, in same_cmd_with_prefix() 113 struct pager_config *c = data; in pager_command_config() local 123 struct pager_config c; in check_pager_config() local 132 struct pager_config *c = data; in browser_command_config() local 147 struct pager_config c; in check_browser_config() local
|
| /tools/testing/selftests/powerpc/nx-gzip/include/ |
| D | crb.h | 135 #define crb_csb_addr(c) __be64_to_cpu(c->csb_addr) argument 136 #define crb_nx_fault_addr(c) __be64_to_cpu(c->stamp.nx.fault_storage_addr) argument 137 #define crb_nx_flags(c) c->stamp.nx.flags argument 138 #define crb_nx_fault_status(c) c->stamp.nx.fault_status argument 139 #define crb_nx_pswid(c) c->stamp.nx.pswid argument
|