Home
last modified time | relevance | path

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

12345678910>>...103

/linux/tools/include/linux/
H A 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 …]
/linux/include/linux/
H A 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 …]
/linux/arch/riscv/include/asm/
H A Dmmio.h88 #define readb_cpu(c) ({ u8 __r = __raw_readb(c); __r; }) argument
89 #define readw_cpu(c) ({ u16 __r = le16_to_cpu((__force __le16)__raw_readw(c)); __r; }) argument
90 #define readl_cpu(c) ({ u32 __r = le32_to_cpu((__force __le32)__raw_readl(c)); __r; }) argument
92 #define writeb_cpu(v, c) ((void)__raw_writeb((v), (c))) argument
93 #define writew_cpu(v, c) ((void)__raw_writew((__force u16)cpu_to_le16(v), (c))) argument
94 #define writel_cpu(v, c) ((void)__raw_writel((__force u32)cpu_to_le32(v), (c))) argument
97 #define readq_cpu(c) ({ u64 __r = le64_to_cpu((__force __le64)__raw_readq(c)); __r; }) argument
98 #define writeq_cpu(v, c) ((void)__raw_writeq((__force u64)cpu_to_le64(v), (c))) argument
115 #define readb_relaxed(c) ({ u8 __v; __io_rbr(); __v = readb_cpu(c); __io_rar(); __v; }) argument
116 #define readw_relaxed(c) ({ u16 __v; __io_rbr(); __v = readw_cpu(c); __io_rar(); __v; }) argument
[all …]
/linux/tools/include/nolibc/
H A Dctype.h20 int isascii(int c) in isascii()
27 int isblank(int c) in isblank()
33 int iscntrl(int c) in iscntrl()
40 int isdigit(int c) in isdigit()
46 int isgraph(int c) in isgraph()
53 int islower(int c) in islower()
59 int isprint(int c) in isprint()
66 int isspace(int c) in isspace()
73 int isupper(int c) in isupper()
79 int isxdigit(int c) in isxdigit()
[all …]
/linux/arch/mips/kernel/
H A Dcpu-probe.c147 static inline void cpu_set_mt_per_tc_perf(struct cpuinfo_mips *c) in cpu_set_mt_per_tc_perf()
155 struct cpuinfo_mips *c = &current_cpu_data; in check_errata() local
211 static inline void cpu_probe_vmbits(struct cpuinfo_mips *c) in cpu_probe_vmbits()
220 static void set_isa(struct cpuinfo_mips *c, unsigned int isa) in set_isa()
280 static unsigned int calculate_ftlb_probability(struct cpuinfo_mips *c) in calculate_ftlb_probability()
306 static int set_ftlb_enable(struct cpuinfo_mips *c, enum ftlb_flags flags) in set_ftlb_enable()
358 static int mm_config(struct cpuinfo_mips *c) in mm_config()
404 static inline unsigned int decode_config0(struct cpuinfo_mips *c) in decode_config0()
462 static inline unsigned int decode_config1(struct cpuinfo_mips *c) in decode_config1()
491 static inline unsigned int decode_config2(struct cpuinfo_mips *c) in decode_config2()
[all …]
/linux/fs/ubifs/
H A Dkey.h90 static inline void ino_key_init(const struct ubifs_info *c, in ino_key_init()
103 static inline void ino_key_init_flash(const struct ubifs_info *c, void *k, in ino_key_init_flash()
119 static inline void lowest_ino_key(const struct ubifs_info *c, in lowest_ino_key()
132 static inline void highest_ino_key(const struct ubifs_info *c, in highest_ino_key()
146 static inline void dent_key_init(const struct ubifs_info *c, in dent_key_init()
165 static inline void dent_key_init_hash(const struct ubifs_info *c, in dent_key_init_hash()
181 static inline void dent_key_init_flash(const struct ubifs_info *c, void *k, in dent_key_init_flash()
201 static inline void lowest_dent_key(const struct ubifs_info *c, in lowest_dent_key()
215 static inline void xent_key_init(const struct ubifs_info *c, in xent_key_init()
233 static inline void xent_key_init_flash(const struct ubifs_info *c, void *k, in xent_key_init_flash()
[all …]
H A Dlpt_commit.c30 static struct ubifs_cnode *first_dirty_cnode(const struct ubifs_info *c, struct ubifs_nnode *nnode) in first_dirty_cnode()
61 static struct ubifs_cnode *next_dirty_cnode(const struct ubifs_info *c, struct ubifs_cnode *cnode) in next_dirty_cnode()
88 static int get_cnodes_to_commit(struct ubifs_info *c) in get_cnodes_to_commit()
129 static void upd_ltab(struct ubifs_info *c, int lnum, int free, int dirty) in upd_ltab()
149 static int alloc_lpt_leb(struct ubifs_info *c, int *lnum) in alloc_lpt_leb()
182 static int layout_cnodes(struct ubifs_info *c) in layout_cnodes()
333 static int realloc_lpt_leb(struct ubifs_info *c, int *lnum) in realloc_lpt_leb()
360 static int write_cnodes(struct ubifs_info *c) in write_cnodes()
552 static struct ubifs_pnode *next_pnode_to_dirty(struct ubifs_info *c, in next_pnode_to_dirty()
614 static void add_pnode_dirt(struct ubifs_info *c, struct ubifs_pnode *pnode) in add_pnode_dirt()
[all …]
H A Dbudget.c51 static void shrink_liability(struct ubifs_info *c, int nr_to_write) in shrink_liability()
66 static int run_gc(struct ubifs_info *c) in run_gc()
89 static long long get_liability(struct ubifs_info *c) in get_liability()
117 static int make_free_space(struct ubifs_info *c) in make_free_space()
163 int ubifs_calc_min_idx_lebs(struct ubifs_info *c) in ubifs_calc_min_idx_lebs()
194 long long ubifs_calc_available(const struct ubifs_info *c, int min_idx_lebs) in ubifs_calc_available()
257 static int can_use_rp(struct ubifs_info *c) in can_use_rp()
290 static int do_budget_space(struct ubifs_info *c) in do_budget_space()
358 static int calc_idx_growth(const struct ubifs_info *c, in calc_idx_growth()
374 static int calc_data_growth(const struct ubifs_info *c, in calc_data_growth()
[all …]
H A Dmisc.h56 static inline void ubifs_wake_up_bgt(struct ubifs_info *c) in ubifs_wake_up_bgt()
101 static inline int ubifs_compr_present(struct ubifs_info *c, int compr_type) in ubifs_compr_present()
114 static inline const char *ubifs_compr_name(struct ubifs_info *c, int compr_type) in ubifs_compr_name()
161 static inline int ubifs_add_dirt(struct ubifs_info *c, int lnum, int dirty) in ubifs_add_dirt()
175 static inline int ubifs_return_leb(struct ubifs_info *c, int lnum) in ubifs_return_leb()
186 static inline int ubifs_idx_node_sz(const struct ubifs_info *c, int child_cnt) in ubifs_idx_node_sz()
199 struct ubifs_branch *ubifs_idx_branch(const struct ubifs_info *c, in ubifs_idx_branch()
212 static inline void *ubifs_idx_key(const struct ubifs_info *c, in ubifs_idx_key()
229 static inline int ubifs_tnc_lookup(struct ubifs_info *c, in ubifs_tnc_lookup()
242 static inline void ubifs_get_lprops(struct ubifs_info *c) in ubifs_get_lprops()
[all …]
H A Dtnc.c47 static void do_insert_old_idx(struct ubifs_info *c, in do_insert_old_idx()
98 static int insert_old_idx(struct ubifs_info *c, int lnum, int offs) in insert_old_idx()
119 int insert_old_idx_znode(struct ubifs_info *c, struct ubifs_znode *znode) in insert_old_idx_znode()
141 static int ins_clr_old_idx_znode(struct ubifs_info *c, in ins_clr_old_idx_znode()
180 void destroy_old_idx(struct ubifs_info *c) in destroy_old_idx()
197 static struct ubifs_znode *copy_znode(struct ubifs_info *c, in copy_znode()
221 static int add_idx_dirt(struct ubifs_info *c, int lnum, int dirt) in add_idx_dirt()
236 static void replace_znode(struct ubifs_info *c, struct ubifs_znode *new_zn, in replace_znode()
270 static struct ubifs_znode *dirty_cow_znode(struct ubifs_info *c, in dirty_cow_znode()
343 static int lnc_add(struct ubifs_info *c, struct ubifs_zbranch *zbr, in lnc_add()
[all …]
H A Dauth.c28 int __ubifs_node_calc_hash(const struct ubifs_info *c, const void *node, in __ubifs_node_calc_hash()
45 static int ubifs_hash_calc_hmac(const struct ubifs_info *c, const u8 *hash, in ubifs_hash_calc_hmac()
62 int ubifs_prepare_auth_node(struct ubifs_info *c, void *node, in ubifs_prepare_auth_node()
89 static struct shash_desc *ubifs_get_desc(const struct ubifs_info *c, in ubifs_get_desc()
120 struct shash_desc *__ubifs_hash_get_desc(const struct ubifs_info *c) in __ubifs_hash_get_desc()
136 void ubifs_bad_hash(const struct ubifs_info *c, const void *node, const u8 *hash, in ubifs_bad_hash()
162 int __ubifs_node_check_hash(const struct ubifs_info *c, const void *node, in __ubifs_node_check_hash()
190 int ubifs_sb_verify_signature(struct ubifs_info *c, in ubifs_sb_verify_signature()
255 int ubifs_init_authentication(struct ubifs_info *c) in ubifs_init_authentication()
365 void __ubifs_exit_authentication(struct ubifs_info *c) in __ubifs_exit_authentication()
[all …]
H A Dio.c70 void ubifs_ro_mode(struct ubifs_info *c, int err) in ubifs_ro_mode()
87 int ubifs_leb_read(const struct ubifs_info *c, int lnum, void *buf, int offs, in ubifs_leb_read()
105 int ubifs_leb_write(struct ubifs_info *c, int lnum, const void *buf, int offs, in ubifs_leb_write()
126 int ubifs_leb_change(struct ubifs_info *c, int lnum, const void *buf, int len) in ubifs_leb_change()
146 int ubifs_leb_unmap(struct ubifs_info *c, int lnum) in ubifs_leb_unmap()
165 int ubifs_leb_map(struct ubifs_info *c, int lnum) in ubifs_leb_map()
184 int ubifs_is_mapped(const struct ubifs_info *c, int lnum) in ubifs_is_mapped()
244 int ubifs_check_node(const struct ubifs_info *c, const void *buf, int len, in ubifs_check_node()
328 void ubifs_pad(const struct ubifs_info *c, void *buf, int pad) in ubifs_pad()
358 static unsigned long long next_sqnum(struct ubifs_info *c) in next_sqnum()
[all …]
/linux/fs/bcachefs/
H A Dsuper.c106 static void __bch2_print_str(struct bch_fs *c, const char *prefix, in __bch2_print_str()
120 void bch2_print_str(struct bch_fs *c, const char *prefix, const char *str) in bch2_print_str()
150 void __bch2_print(struct bch_fs *c, const char *fmt, ...) in __bch2_print()
219 struct bch_fs *c; in bch2_dev_to_fs() local
231 struct bch_fs *c; in __bch2_uuid_to_fs() local
244 struct bch_fs *c; in bch2_uuid_to_fs() local
272 static void __bch2_fs_read_only(struct bch_fs *c) in __bch2_fs_read_only()
323 struct bch_fs *c = container_of(writes, struct bch_fs, writes); in bch2_writes_disabled() local
329 void bch2_fs_read_only(struct bch_fs *c) in bch2_fs_read_only()
405 struct bch_fs *c = in bch2_fs_read_only_work() local
[all …]
H A Dsnapshot.h42 static inline const struct snapshot_t *snapshot_t(struct bch_fs *c, u32 id) in snapshot_t()
47 static inline u32 bch2_snapshot_tree(struct bch_fs *c, u32 id) in bch2_snapshot_tree()
54 static inline u32 __bch2_snapshot_parent_early(struct bch_fs *c, u32 id) in __bch2_snapshot_parent_early()
60 static inline u32 bch2_snapshot_parent_early(struct bch_fs *c, u32 id) in bch2_snapshot_parent_early()
66 static inline u32 __bch2_snapshot_parent(struct bch_fs *c, u32 id) in __bch2_snapshot_parent()
83 static inline u32 bch2_snapshot_parent(struct bch_fs *c, u32 id) in bch2_snapshot_parent()
89 static inline u32 bch2_snapshot_nth_parent(struct bch_fs *c, u32 id, u32 n) in bch2_snapshot_nth_parent()
100 static inline u32 bch2_snapshot_root(struct bch_fs *c, u32 id) in bch2_snapshot_root()
110 static inline enum snapshot_id_state __bch2_snapshot_id_state(struct bch_fs *c, u32 id) in __bch2_snapshot_id_state()
116 static inline enum snapshot_id_state bch2_snapshot_id_state(struct bch_fs *c, u32 id) in bch2_snapshot_id_state()
[all …]
H A Dalloc_foreground.c70 void bch2_reset_alloc_cursors(struct bch_fs *c) in bch2_reset_alloc_cursors()
77 static void bch2_open_bucket_hash_add(struct bch_fs *c, struct open_bucket *ob) in bch2_open_bucket_hash_add()
86 static void bch2_open_bucket_hash_remove(struct bch_fs *c, struct open_bucket *ob) in bch2_open_bucket_hash_remove()
100 void __bch2_open_bucket_put(struct bch_fs *c, struct open_bucket *ob) in __bch2_open_bucket_put()
127 void bch2_open_bucket_write_error(struct bch_fs *c, in bch2_open_bucket_write_error()
139 static struct open_bucket *bch2_open_bucket_alloc(struct bch_fs *c) in bch2_open_bucket_alloc()
154 static inline bool is_superblock_bucket(struct bch_fs *c, struct bch_dev *ca, u64 b) in is_superblock_bucket()
162 static void open_bucket_free_unused(struct bch_fs *c, struct open_bucket *ob) in open_bucket_free_unused()
180 static inline bool may_alloc_bucket(struct bch_fs *c, in may_alloc_bucket()
207 static struct open_bucket *__try_alloc_bucket(struct bch_fs *c, in __try_alloc_bucket()
[all …]
H A Djournal_io.c24 void bch2_journal_pos_from_member_info_set(struct bch_fs *c) in bch2_journal_pos_from_member_info_set()
36 void bch2_journal_pos_from_member_info_resume(struct bch_fs *c) in bch2_journal_pos_from_member_info_resume()
52 static void bch2_journal_ptr_to_text(struct printbuf *out, struct bch_fs *c, struct journal_ptr *p) in bch2_journal_ptr_to_text()
61 void bch2_journal_ptrs_to_text(struct printbuf *out, struct bch_fs *c, struct journal_replay *j) in bch2_journal_ptrs_to_text()
80 static void bch2_journal_replay_to_text(struct printbuf *out, struct bch_fs *c, in bch2_journal_replay_to_text()
99 static bool jset_csum_good(struct bch_fs *c, struct jset *j, struct bch_csum *csum) in jset_csum_good()
110 static inline u32 journal_entry_radix_idx(struct bch_fs *c, u64 seq) in journal_entry_radix_idx()
115 static void __journal_replay_free(struct bch_fs *c, in __journal_replay_free()
127 static void journal_replay_free(struct bch_fs *c, struct journal_replay *i, bool blacklisted) in journal_replay_free()
152 static int journal_entry_add(struct bch_fs *c, struct bch_dev *ca, in journal_entry_add()
[all …]
H A Dtests.c13 static void delete_test_keys(struct bch_fs *c) in delete_test_keys()
32 static int test_delete(struct bch_fs *c, u64 nr) in test_delete()
73 static int test_delete_written(struct bch_fs *c, u64 nr) in test_delete_written()
108 static int test_iterate(struct bch_fs *c, u64 nr) in test_iterate()
162 static int test_iterate_extents(struct bch_fs *c, u64 nr) in test_iterate_extents()
219 static int test_iterate_slots(struct bch_fs *c, u64 nr) in test_iterate_slots()
278 static int test_iterate_slots_extents(struct bch_fs *c, u64 nr) in test_iterate_slots_extents()
343 static int test_peek_end(struct bch_fs *c, u64 nr) in test_peek_end()
365 static int test_peek_end_extents(struct bch_fs *c, u64 nr) in test_peek_end_extents()
391 static int insert_test_extent(struct bch_fs *c, in insert_test_extent()
[all …]
/linux/arch/x86/kernel/cpu/
H A Damd.c92 static void init_amd_k5(struct cpuinfo_x86 *c) in init_amd_k5()
111 static void init_amd_k6(struct cpuinfo_x86 *c) in init_amd_k6()
205 static void init_amd_k7(struct cpuinfo_x86 *c) in init_amd_k7()
302 static void srat_detect_node(struct cpuinfo_x86 *c) in srat_detect_node()
353 static void bsp_determine_snp(struct cpuinfo_x86 *c) in bsp_determine_snp()
404 static void tsa_init(struct cpuinfo_x86 *c) in tsa_init()
421 static void bsp_init_amd(struct cpuinfo_x86 *c) in bsp_init_amd()
544 static void early_detect_mem_encrypt(struct cpuinfo_x86 *c) in early_detect_mem_encrypt()
596 static void early_init_amd(struct cpuinfo_x86 *c) in early_init_amd()
675 static void init_amd_k8(struct cpuinfo_x86 *c) in init_amd_k8()
[all …]
H A Dintel.c38 static void check_memory_type_self_snoop_errata(struct cpuinfo_x86 *c) in check_memory_type_self_snoop_errata()
66 static void probe_xeon_phi_r3mwait(struct cpuinfo_x86 *c) in probe_xeon_phi_r3mwait()
130 static bool bad_spectre_microcode(struct cpuinfo_x86 *c) in bad_spectre_microcode()
157 static void detect_tme_early(struct cpuinfo_x86 *c) in detect_tme_early()
186 void intel_unlock_cpuid_leafs(struct cpuinfo_x86 *c) in intel_unlock_cpuid_leafs()
202 static void early_init_intel(struct cpuinfo_x86 *c) in early_init_intel()
340 static void bsp_init_intel(struct cpuinfo_x86 *c) in bsp_init_intel()
363 static void intel_smp_check(struct cpuinfo_x86 *c) in intel_smp_check()
390 static void intel_workarounds(struct cpuinfo_x86 *c) in intel_workarounds()
467 static void intel_workarounds(struct cpuinfo_x86 *c) in intel_workarounds()
[all …]
/linux/drivers/iommu/
H A Dmsm_iommu_hw-8xxx.h25 #define GET_CONTEXT_FIELD(b, c, r, F) \ argument
30 #define SET_CONTEXT_FIELD(b, c, r, F, v) \ argument
121 #define SET_SCTLR(b, c, v) SET_CTX_REG(SCTLR, (b), (c), (v)) argument
122 #define SET_ACTLR(b, c, v) SET_CTX_REG(ACTLR, (b), (c), (v)) argument
123 #define SET_CONTEXTIDR(b, c, v) SET_CTX_REG(CONTEXTIDR, (b), (c), (v)) argument
124 #define SET_TTBR0(b, c, v) SET_CTX_REG(TTBR0, (b), (c), (v)) argument
125 #define SET_TTBR1(b, c, v) SET_CTX_REG(TTBR1, (b), (c), (v)) argument
126 #define SET_TTBCR(b, c, v) SET_CTX_REG(TTBCR, (b), (c), (v)) argument
127 #define SET_PAR(b, c, v) SET_CTX_REG(PAR, (b), (c), (v)) argument
128 #define SET_FSR(b, c, v) SET_CTX_REG(FSR, (b), (c), (v)) argument
[all …]
/linux/sound/firewire/
H A Dcmp.c46 void cmp_error(struct cmp_connection *c, const char *fmt, ...) in cmp_error()
57 static u64 mpr_address(struct cmp_connection *c) in mpr_address()
65 static u64 pcr_address(struct cmp_connection *c) in pcr_address()
73 static int pcr_modify(struct cmp_connection *c, in pcr_modify()
74 __be32 (*modify)(struct cmp_connection *c, __be32 old), in pcr_modify()
75 int (*check)(struct cmp_connection *c, __be32 pcr), in pcr_modify()
120 int cmp_connection_init(struct cmp_connection *c, in cmp_connection_init()
160 int cmp_connection_check_used(struct cmp_connection *c, bool *used) in cmp_connection_check_used()
180 void cmp_connection_destroy(struct cmp_connection *c) in cmp_connection_destroy()
188 int cmp_connection_reserve(struct cmp_connection *c, in cmp_connection_reserve()
[all …]
/linux/fs/jffs2/
H A Dwbuf.c48 static int jffs2_wbuf_pending_for_ino(struct jffs2_sb_info *c, uint32_t ino) in jffs2_wbuf_pending_for_ino()
69 static void jffs2_clear_wbuf_ino_list(struct jffs2_sb_info *c) in jffs2_clear_wbuf_ino_list()
85 static void jffs2_wbuf_dirties_inode(struct jffs2_sb_info *c, uint32_t ino) in jffs2_wbuf_dirties_inode()
108 static inline void jffs2_refile_wbuf_blocks(struct jffs2_sb_info *c) in jffs2_refile_wbuf_blocks()
141 static void jffs2_block_refile(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, int allow_emp… in jffs2_block_refile()
182 static struct jffs2_raw_node_ref **jffs2_incore_replace_raw(struct jffs2_sb_info *c, in jffs2_incore_replace_raw()
230 static int jffs2_verify_write(struct jffs2_sb_info *c, unsigned char *buf, in jffs2_verify_write()
269 #define jffs2_verify_write(c,b,o) (0) argument
275 static void jffs2_wbuf_recover(struct jffs2_sb_info *c) in jffs2_wbuf_recover()
580 static int __jffs2_flush_wbuf(struct jffs2_sb_info *c, int pad) in __jffs2_flush_wbuf()
[all …]
H A Dnodelist.c26 void jffs2_add_fd_to_list(struct jffs2_sb_info *c, struct jffs2_full_dirent *new, struct jffs2_full… in jffs2_add_fd_to_list()
59 uint32_t jffs2_truncate_fragtree(struct jffs2_sb_info *c, struct rb_root *list, uint32_t size) in jffs2_truncate_fragtree()
101 static void jffs2_obsolete_node_frag(struct jffs2_sb_info *c, in jffs2_obsolete_node_frag()
169 static int no_overlapping_node(struct jffs2_sb_info *c, struct rb_root *root, in no_overlapping_node()
215 static int jffs2_add_frag_to_fragtree(struct jffs2_sb_info *c, struct rb_root *root, struct jffs2_n… in jffs2_add_frag_to_fragtree()
363 int jffs2_add_full_dnode_to_inode(struct jffs2_sb_info *c, struct jffs2_inode_info *f, struct jffs2… in jffs2_add_full_dnode_to_inode()
408 void jffs2_set_inocache_state(struct jffs2_sb_info *c, struct jffs2_inode_cache *ic, int state) in jffs2_set_inocache_state()
421 struct jffs2_inode_cache *jffs2_get_ino_cache(struct jffs2_sb_info *c, uint32_t ino) in jffs2_get_ino_cache()
436 void jffs2_add_ino_cache (struct jffs2_sb_info *c, struct jffs2_inode_cache *new) in jffs2_add_ino_cache()
457 void jffs2_del_ino_cache(struct jffs2_sb_info *c, struct jffs2_inode_cache *old) in jffs2_del_ino_cache()
[all …]
/linux/drivers/most/
H A Dcore.c102 struct most_channel *c = mbo->context; in most_free_mbo_coherent() local
118 static void flush_channel_fifos(struct most_channel *c) in flush_channel_fifos()
152 static int flush_trash_fifo(struct most_channel *c) in flush_trash_fifo()
172 struct most_channel *c = to_channel(dev); in available_directions_show() local
188 struct most_channel *c = to_channel(dev); in available_datatypes_show() local
208 struct most_channel *c = to_channel(dev); in number_of_packet_buffers_show() local
219 struct most_channel *c = to_channel(dev); in number_of_stream_buffers_show() local
230 struct most_channel *c = to_channel(dev); in size_of_packet_buffer_show() local
241 struct most_channel *c = to_channel(dev); in size_of_stream_buffer_show() local
252 struct most_channel *c = to_channel(dev); in channel_starving_show() local
[all …]
/linux/arch/csky/include/asm/
H A Dio.h20 #define readb(c) ({ u8 __v = readb_relaxed(c); rmb(); __v; }) argument
21 #define readw(c) ({ u16 __v = readw_relaxed(c); rmb(); __v; }) argument
22 #define readl(c) ({ u32 __v = readl_relaxed(c); rmb(); __v; }) argument
25 #define writeb(v,c) ({ wmb(); writeb_relaxed((v),(c)); }) argument
26 #define writew(v,c) ({ wmb(); writew_relaxed((v),(c)); }) argument
27 #define writel(v,c) ({ wmb(); writel_relaxed((v),(c)); }) argument
29 #define writeb(v,c) ({ wmb(); writeb_relaxed((v),(c)); mb(); }) argument
30 #define writew(v,c) ({ wmb(); writew_relaxed((v),(c)); mb(); }) argument
31 #define writel(v,c) ({ wmb(); writel_relaxed((v),(c)); mb(); }) argument

12345678910>>...103