Home
last modified time | relevance | path

Searched defs:c (Results 126 – 150 of 2227) sorted by relevance

12345678910>>...90

/linux/drivers/net/ethernet/mellanox/mlx5/core/en/
H A Dchannels.c22 struct mlx5e_channel *c = mlx5e_channels_get(chs, ix); in mlx5e_channels_is_xsk() local
30 struct mlx5e_channel *c = mlx5e_channels_get(chs, ix); in mlx5e_channels_get_regular_rqn() local
40 struct mlx5e_channel *c = mlx5e_channels_get(chs, ix); in mlx5e_channels_get_xsk_rqn() local
51 struct mlx5e_ptp *c = chs->ptp; in mlx5e_channels_get_ptp_rqn() local
/linux/tools/testing/selftests/kvm/include/arm64/
H A Dprocessor.h237 #define writel_relaxed(v,c) ((void)__raw_writel((__force u32)cpu_to_le32(v),(c))) argument
238 #define readl_relaxed(c) ({ u32 __r = le32_to_cpu((__force __le32)__raw_readl(c)); __r; }) argument
239 #define writeq_relaxed(v,c) ((void)__raw_writeq((__force u64)cpu_to_le64(v),(c))) argument
242 #define writel(v,c) ({ __iowmb(); writel_relaxed((v),(c));}) argument
236 writel_relaxed(v,c) global() argument
241 writel(v,c) global() argument
243 writeq(v,c) global() argument
244 readq(c) global() argument
[all...]
/linux/tools/testing/selftests/powerpc/pmu/
H A Dlib.c22 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
/linux/include/linux/mfd/
H A Dingenic-tcu.h51 #define TCU_REG_TDFRc(c) (TCU_REG_TDFR0 + ((c) * TCU_CHANNEL_STRIDE)) argument
52 #define TCU_REG_TDHRc(c) (TCU_REG_TDHR0 + ((c) * TCU_CHANNEL_STRIDE)) argument
53 #define TCU_REG_TCNTc(c) (TCU_REG_TCNT0 + ((c) * TCU_CHANNEL_STRIDE)) argument
54 #define TCU_REG_TCSRc(c) (TCU_REG_TCSR0 + ((c) * TCU_CHANNEL_STRIDE)) argument
/linux/include/linux/
H A Ddebug_locks.h24 #define DEBUG_LOCKS_WARN_ON(c) \ argument
39 # define SMP_DEBUG_LOCKS_WARN_ON(c) DEBUG_LOCKS_WARN_ON(c) argument
41 # define SMP_DEBUG_LOCKS_WARN_ON(c) do { } while (0) argument
H A Drbtree.h229 int c; in rb_find_add_cached() local
265 int c; in rb_find_add() local
301 int c; in rb_find_add_rcu() local
335 int c = cmp(key, node); in rb_find() local
366 int c = cmp(key, node); in rb_find_rcu() local
395 int c = cmp(key, node); in rb_find_first() local
/linux/arch/x86/kernel/cpu/
H A Dcentaur.c22 static void init_c3(struct cpuinfo_x86 *c) in init_c3()
94 static void early_init_centaur(struct cpuinfo_x86 *c) in early_init_centaur()
114 static void init_centaur(struct cpuinfo_x86 *c) in init_centaur()
218 centaur_size_cache(struct cpuinfo_x86 *c, unsigned int size) in centaur_size_cache()
H A Dcacheinfo.c276 static int find_num_cache_leaves(struct cpuinfo_x86 *c) in find_num_cache_leaves()
312 void cacheinfo_amd_init_llc_id(struct cpuinfo_x86 *c, u16 die_id) in cacheinfo_amd_init_llc_id()
339 void cacheinfo_hygon_init_llc_id(struct cpuinfo_x86 *c) in cacheinfo_hygon_init_llc_id()
351 void init_amd_cacheinfo(struct cpuinfo_x86 *c) in init_amd_cacheinfo()
361 void init_hygon_cacheinfo(struct cpuinfo_x86 *c) in init_hygon_cacheinfo()
368 static void intel_cacheinfo_done(struct cpuinfo_x86 *c, unsigned int l3, in intel_cacheinfo_done()
390 static void intel_cacheinfo_0x2(struct cpuinfo_x86 *c) in intel_cacheinfo_0x2()
413 static unsigned int calc_cache_topo_id(struct cpuinfo_x86 *c, const struct _cpuid4_info *id4) in calc_cache_topo_id()
423 static bool intel_cacheinfo_0x4(struct cpuinfo_x86 *c) in intel_cacheinfo_0x4()
476 void init_intel_cacheinfo(struct cpuinfo_x86 *c) in init_intel_cacheinfo()
[all …]
/linux/arch/alpha/boot/
H A Dmisc.c69 # define Tracec(c,x) {if (verbose && (c)) fprintf x ;} argument
70 # define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;} argument
76 # define Tracec(c,x) argument
77 # define Tracecv(c,x) argument
123 ulg c = crc; in flush_window() local
/linux/drivers/usb/gadget/legacy/
H A Dg_ffs.c115 struct usb_configuration c; member
402 struct gfs_configuration *c = gfs_configurations + i; in gfs_bind() local
471 static int gfs_do_config(struct usb_configuration *c) in gfs_do_config()
530 static int eth_bind_config(struct usb_configuration *c) in eth_bind_config()
559 static int bind_rndis_config(struct usb_configuration *c) in bind_rndis_config()
/linux/drivers/gpu/drm/imx/dcss/
H A Ddcss-dev.h19 #define dcss_writel(v, c) writel((v), (c)) argument
20 #define dcss_readl(c) readl(c) argument
21 #define dcss_set(v, c) writel((v), (c) + SET) argument
22 #define dcss_clr(v, c) writel((v), (c) + CLR) argument
23 #define dcss_toggle(v, c) writel((v), (c) + TGL) argument
25 static inline void dcss_update(u32 v, u32 m, void __iomem *c) in dcss_update()
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dsockmap_ktls.c17 static int init_ktls_pairs(int c, int p) in init_ktls_pairs()
50 static int create_ktls_pairs(int family, int sotype, int *c, int *p) in create_ktls_pairs()
137 int c = 0, p = 0, sent, recvd; in test_sockmap_ktls_offload() local
168 int c = 0, p = 0, one = 1, sent, recvd; in test_sockmap_ktls_tx_cork() local
245 int c = -1, p = -1, one = 1, two = 2; in test_sockmap_ktls_tx_no_buf() local
320 int c = 0, p = 0, one = 1, sent, recvd; in test_sockmap_ktls_tx_pop() local
/linux/tools/testing/selftests/bpf/progs/
H A Dbtf_data.c6 int c; member
12 int c; member
18 int c; member
24 int c; member
H A 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()
/linux/include/asm-generic/
H A Dword-at-a-time.h18 …ic inline long prep_zero_mask(unsigned long val, unsigned long rhs, const struct word_at_a_time *c) in prep_zero_mask()
42 …line unsigned long has_zero(unsigned long val, unsigned long *data, const struct word_at_a_time *c) in has_zero()
94 …inline unsigned long has_zero(unsigned long a, unsigned long *bits, const struct word_at_a_time *c) in has_zero()
101 …e unsigned long prep_zero_mask(unsigned long a, unsigned long bits, const struct word_at_a_time *c) in prep_zero_mask()
/linux/drivers/nvme/host/
H A Dzns.c12 struct nvme_command c = { }; in nvme_set_max_append() local
42 struct nvme_command c = { }; in nvme_query_zone_info() local
179 struct nvme_command c = { }; in nvme_ns_report_zones() local
235 struct nvme_command *c, enum nvme_zone_mgmt_action action) in nvme_setup_zone_mgmt_send()
/linux/arch/m68k/include/asm/
H A Datomic.h146 char c; in arch_atomic_dec_and_test() local
154 char c; in arch_atomic_dec_and_test_lt() local
164 char c; in arch_atomic_inc_and_test() local
203 char c; in arch_atomic_sub_and_test() local
213 char c; in arch_atomic_add_negative() local
/linux/net/ceph/
H A Dceph_hash.c10 #define mix(a, b, c) \ argument
26 __u32 a, b, c; /* the internal state */ in ceph_str_hash_rjenkins() local
97 unsigned char c; in ceph_str_hash_linux() local
/linux/sound/aoa/core/
H A Dcore.c23 static int attach_codec_to_fabric(struct aoa_codec *c) in attach_codec_to_fabric()
86 struct aoa_codec *c; in aoa_fabric_register() local
117 struct aoa_codec *c; in aoa_fabric_unregister() local
/linux/drivers/gpu/drm/nouveau/include/nvkm/core/
H A Dos.h19 #define nvkm_list_find_next(p,h,m,c) ({ \ argument
29 #define nvkm_list_find(p,h,m,c) \ argument
31 #define nvkm_list_foreach(p,h,m,c) \ argument
/linux/arch/arm/boot/compressed/
H A Dstring.c126 void *memchr(const void *s, int c, size_t count) in memchr()
136 char *strchr(const char *s, int c) in strchr()
144 char *strrchr(const char *s, int c) in strrchr()
156 void *memset(void *s, int c, size_t count) in memset()
/linux/arch/arm/mach-sunxi/
H A Dmc_smp.c37 #define CPUCFG_CX_CTRL_REG0(c) (0x10 * (c)) argument
42 #define CPUCFG_CX_CTRL_REG1(c) (0x10 * (c) + 0x4) argument
44 #define CPUCFG_CX_STATUS(c) (0x30 + 0x4 * (c)) argument
47 #define CPUCFG_CX_RST_CTRL(c) (0x80 + 0x4 * (c)) argument
59 #define PRCM_CPU_PO_RST_CTRL(c) (0x4 + 0x4 * (c)) argument
62 #define PRCM_PWROFF_GATING_REG(c) (0x100 + 0x4 * (c)) argument
67 #define PRCM_PWR_SWITCH_REG(c, cpu) (0x140 + 0x10 * (c) + 0x4 * (cpu)) argument
71 #define R_CPUCFG_CLUSTER_PO_RST_CTRL(c) (0x30 + (c) * 0x4) argument
/linux/tools/testing/selftests/powerpc/stringloops/
H A Dstrlen.c66 char c; in testcase() local
79 char c; in testcase() local
93 char c; in testcase() local
/linux/drivers/md/persistent-data/
H A Ddm-bitset.c215 static int cursor_next_array_entry(struct dm_bitset_cursor *c) in cursor_next_array_entry()
233 struct dm_bitset_cursor *c) in dm_bitset_cursor_begin()
257 void dm_bitset_cursor_end(struct dm_bitset_cursor *c) in dm_bitset_cursor_end()
263 int dm_bitset_cursor_next(struct dm_bitset_cursor *c) in dm_bitset_cursor_next()
278 int dm_bitset_cursor_skip(struct dm_bitset_cursor *c, uint32_t count) in dm_bitset_cursor_skip()
313 bool dm_bitset_cursor_get_value(struct dm_bitset_cursor *c) in dm_bitset_cursor_get_value()
/linux/arch/x86/kernel/
H A Dsmpboot.c320 topology_same_node(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o) in topology_same_node()
328 topology_sane(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o, const char *name) in topology_sane()
344 static bool match_smt(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o) in match_smt()
371 static bool match_die(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o) in match_die()
382 static bool match_l2c(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o) in match_l2c()
402 static bool match_pkg(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o) in match_pkg()
430 static bool match_llc(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o) in match_llc()
522 struct cpuinfo_x86 *c = &cpu_data(cpu); in set_cpu_sibling_map() local
1141 struct cpuinfo_x86 *c = &cpu_data(cpu); in remove_siblinginfo() local

12345678910>>...90