Home
last modified time | relevance | path

Searched defs:c (Results 1 – 25 of 258) sorted by relevance

1234567891011

/tools/include/linux/
Dctype.h25 #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 …]
Djhash.h35 #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/
Dctype.h17 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 …]
Dstring.h100 char *strchr(const char *s, int c) in strchr()
113 unsigned int c; in strcmp() local
201 char c; in strlcat() local
223 char c; in strlcpy() local
257 unsigned int c; in strncmp() local
279 char *strrchr(const char *s, int c) in strrchr()
Dstdio.h65 #define putc(c, stream) fputc(c, stream) argument
68 int fputc(int c, FILE* stream) in fputc()
84 int putchar(int c) in putchar()
149 int c; in fgets() local
173 char escape, lpref, c; in vfprintf() local
/tools/testing/selftests/kvm/aarch64/
Dget-reg-list.c59 #define for_each_sublist(c, s) \ argument
77 static const char *config_name(struct vcpu_config *c) in config_name()
103 static bool has_cap(struct vcpu_config *c, long capability) in has_cap()
154 static const char *core_id_to_str(struct vcpu_config *c, __u64 id) in core_id_to_str()
197 static const char *sve_id_to_str(struct vcpu_config *c, __u64 id) in sve_id_to_str()
231 static void print_reg(struct vcpu_config *c, __u64 id) in print_reg()
371 static void prepare_vcpu_init(struct vcpu_config *c, struct kvm_vcpu_init *init) in prepare_vcpu_init()
380 static void finalize_vcpu(struct kvm_vcpu *vcpu, struct vcpu_config *c) in finalize_vcpu()
393 static void check_supported(struct vcpu_config *c) in check_supported()
411 static void run_test(struct vcpu_config *c) in run_test()
[all …]
/tools/testing/selftests/bpf/
Dsdt.h50 # 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/
DContext.c64 struct scripting_context *c = get_scripting_context(args); in perf_trace_context_common_pc() local
75 struct scripting_context *c = get_scripting_context(args); in perf_trace_context_common_flags() local
86 struct scripting_context *c = get_scripting_context(args); in perf_trace_context_common_lock_depth() local
96 struct scripting_context *c = get_scripting_context(args); in perf_sample_insn() local
113 struct scripting_context *c; in perf_set_itrace_options() local
139 struct scripting_context *c = get_scripting_context(args); in perf_sample_src() local
/tools/testing/selftests/bpf/progs/
Dtracing_struct.c24 int BPF_PROG2(test_struct_arg_1, struct bpf_testmod_struct_arg_2, a, int, b, int, c) in BPF_PROG2() argument
34 int BPF_PROG2(test_struct_arg_2, struct bpf_testmod_struct_arg_2, a, int, b, int, c, int, ret) in BPF_PROG2() argument
53 int BPF_PROG2(test_struct_arg_3, int, a, struct bpf_testmod_struct_arg_2, b, int, c) in BPF_PROG2() argument
63 int BPF_PROG2(test_struct_arg_4, int, a, struct bpf_testmod_struct_arg_2, b, int, c, int, ret) in BPF_PROG2() argument
70 int BPF_PROG2(test_struct_arg_5, int, a, int, b, struct bpf_testmod_struct_arg_2, c) in BPF_PROG2() argument
80 int BPF_PROG2(test_struct_arg_6, int, a, int, b, struct bpf_testmod_struct_arg_2, c, int, ret) in BPF_PROG2() argument
87 int BPF_PROG2(test_struct_arg_7, struct bpf_testmod_struct_arg_1, a, int, b, in BPF_PROG2() argument
100 int BPF_PROG2(test_struct_arg_8, struct bpf_testmod_struct_arg_1, a, int, b, in BPF_PROG2() argument
Dtest_jhash.h12 #define __jhash_mix(a, b, c) \ argument
22 #define __jhash_final(a, b, c) \ argument
38 u32 a, b, c; in jhash() local
Dfentry_test.c27 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()
Dbtf_data.c6 int c; member
12 int c; member
18 int c; member
24 int c; member
Dfexit_test.c27 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()
Dtest_core_reloc_flavors.c19 int c; member
24 int c; member
39 int c; member
Dbpf_iter_ksym.c10 static inline char to_lower(char c) in to_lower()
17 static inline char to_upper(char c) in to_upper()
/tools/lib/bpf/
Dbpf_core_read.h282 #define ___last4(a, b, c, x) x argument
283 #define ___last5(a, b, c, d, x) x argument
284 #define ___last6(a, b, c, d, e, x) x argument
285 #define ___last7(a, b, c, d, e, f, x) x argument
286 #define ___last8(a, b, c, d, e, f, g, x) x argument
287 #define ___last9(a, b, c, d, e, f, g, h, x) x argument
288 #define ___last10(a, b, c, d, e, f, g, h, i, x) x argument
293 #define ___nolast4(a, b, c, _) a, b, c argument
294 #define ___nolast5(a, b, c, d, _) a, b, c, d argument
295 #define ___nolast6(a, b, c, d, e, _) a, b, c, d, e argument
[all …]
/tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/
Dlocks.h185 static inline void init_completion(struct completion *c) in init_completion()
190 static inline void wait_for_completion(struct completion *c) in wait_for_completion()
197 static inline void complete(struct completion *c) in complete()
205 static inline bool try_wait_for_completion(struct completion *c) in try_wait_for_completion()
210 static inline bool completion_done(struct completion *c) in completion_done()
216 static inline void complete_all(struct completion *c) in complete_all()
Dmisc.h33 #define trace_rcu_torture_read(rcutorturename, rhp, secs, c_old, c) \ argument
48 #define rcu_lockdep_assert(c, s) do { } while (0) argument
49 #define RCU_LOCKDEP_WARN(c, s) do { } while (0) argument
/tools/testing/selftests/powerpc/stringloops/
Dstrlen.c66 char c; in testcase() local
79 char c; in testcase() local
93 char c; in testcase() local
/tools/testing/selftests/powerpc/pmu/
Dlib.c35 char c = PARENT_TOKEN; in sync_with_child() local
47 char c; in wait_for_parent() local
57 char c = CHILD_TOKEN; in notify_parent() local
66 char c = ~CHILD_TOKEN; in notify_parent_of_error() local
/tools/testing/selftests/vm/
Dkhugepaged.c221 char *c; in read_string() local
943 static void collapse_full(struct collapse_context *c, struct mem_ops *ops) in collapse_full()
957 static void collapse_empty(struct collapse_context *c, struct mem_ops *ops) in collapse_empty()
966 static void collapse_single_pte_entry(struct collapse_context *c, struct mem_ops *ops) in collapse_single_pte_entry()
977 static void collapse_max_ptes_none(struct collapse_context *c, struct mem_ops *ops) in collapse_max_ptes_none()
1012 static void collapse_swapin_single_pte(struct collapse_context *c, struct mem_ops *ops) in collapse_swapin_single_pte()
1038 static void collapse_max_ptes_swap(struct collapse_context *c, struct mem_ops *ops) in collapse_max_ptes_swap()
1085 static void collapse_single_pte_entry_compound(struct collapse_context *c, struct mem_ops *ops) in collapse_single_pte_entry_compound()
1113 static void collapse_full_of_compound(struct collapse_context *c, struct mem_ops *ops) in collapse_full_of_compound()
1132 static void collapse_compound_extreme(struct collapse_context *c, struct mem_ops *ops) in collapse_compound_extreme()
[all …]
/tools/perf/
Dperf.c102 static bool same_cmd_with_prefix(const char *var, struct pager_config *c, in same_cmd_with_prefix()
110 struct pager_config *c = data; in pager_command_config() local
120 struct pager_config c; in check_pager_config() local
129 struct pager_config *c = data; in browser_command_config() local
144 struct pager_config c; in check_browser_config() local
/tools/perf/util/
Ddata-convert-json.c120 struct convert_json *c = container_of(tool, struct convert_json, tool); in output_sample_callchain_entry() local
149 struct convert_json *c = container_of(tool, struct convert_json, tool); in process_sample_event() local
224 static void output_headers(struct perf_session *session, struct convert_json *c) in output_headers()
285 struct convert_json c = { in bt_convert__perf2json() local
/tools/testing/selftests/powerpc/nx-gzip/include/
Dcrb.h135 #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
/tools/testing/selftests/powerpc/benchmarks/
Dmmap_bench.c42 char *c = mmap(NULL, MEMSIZE, PROT_READ|PROT_WRITE, in test_mmap() local
62 signed char c; in main() local

1234567891011