Home
last modified time | relevance | path

Searched defs:c (Results 26 – 50 of 4039) sorted by relevance

12345678910>>...162

/OK3568_Linux_fs/kernel/arch/arm64/include/asm/
H A Darch_gicv3.h122 #define gic_read_typer(c) readq_relaxed(c) argument
123 #define gic_write_irouter(v, c) writeq_relaxed(v, c) argument
124 #define gic_read_lpir(c) readq_relaxed(c) argument
125 #define gic_write_lpir(v, c) writeq_relaxed(v, c) argument
129 #define gits_read_baser(c) readq_relaxed(c) argument
130 #define gits_write_baser(v, c) writeq_relaxed(v, c) argument
132 #define gits_read_cbaser(c) readq_relaxed(c) argument
133 #define gits_write_cbaser(v, c) writeq_relaxed(v, c) argument
135 #define gits_write_cwriter(v, c) writeq_relaxed(v, c) argument
137 #define gicr_read_propbaser(c) readq_relaxed(c) argument
[all …]
H A Dio.h136 #define readb_relaxed(c) ({ u8 __r = __raw_readb(c); __r; }) argument
137 #define readw_relaxed(c) ({ u16 __r = le16_to_cpu((__force __le16)__raw_readw(c)); __r; }) argument
138 #define readl_relaxed(c) ({ u32 __r = le32_to_cpu((__force __le32)__raw_readl(c)); __r; }) argument
139 #define readq_relaxed(c) ({ u64 __r = le64_to_cpu((__force __le64)__raw_readq(c)); __r; }) argument
141 #define writeb_relaxed(v,c) ((void)__raw_writeb((v),(c))) argument
142 #define writew_relaxed(v,c) ((void)__raw_writew((__force u16)cpu_to_le16(v),(c))) argument
143 #define writel_relaxed(v,c) ((void)__raw_writel((__force u32)cpu_to_le32(v),(c))) argument
144 #define writeq_relaxed(v,c) ((void)__raw_writeq((__force u64)cpu_to_le64(v),(c))) argument
151 #define readb(c) ({ u8 __v = readb_relaxed(c); __iormb(__v); __v; }) argument
152 #define readw(c) ({ u16 __v = readw_relaxed(c); __iormb(__v); __v; }) argument
[all …]
/OK3568_Linux_fs/kernel/fs/ubifs/
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 Dlprops.c50 static void move_up_lpt_heap(struct ubifs_info *c, struct ubifs_lpt_heap *heap, in move_up_lpt_heap()
87 static void adjust_lpt_heap(struct ubifs_info *c, struct ubifs_lpt_heap *heap, in adjust_lpt_heap()
166 static int add_to_lpt_heap(struct ubifs_info *c, struct ubifs_lprops *lprops, in add_to_lpt_heap()
214 static void remove_from_lpt_heap(struct ubifs_info *c, in remove_from_lpt_heap()
243 static void lpt_heap_replace(struct ubifs_info *c, in lpt_heap_replace()
261 void ubifs_add_to_cat(struct ubifs_info *c, struct ubifs_lprops *lprops, in ubifs_add_to_cat()
304 static void ubifs_remove_from_cat(struct ubifs_info *c, in ubifs_remove_from_cat()
341 void ubifs_replace_cat(struct ubifs_info *c, struct ubifs_lprops *old_lprops, in ubifs_replace_cat()
373 void ubifs_ensure_cat(struct ubifs_info *c, struct ubifs_lprops *lprops) in ubifs_ensure_cat()
396 int ubifs_categorize_lprops(const struct ubifs_info *c, in ubifs_categorize_lprops()
[all …]
H A Dauth.c30 int __ubifs_node_calc_hash(const struct ubifs_info *c, const void *node, in __ubifs_node_calc_hash()
47 static int ubifs_hash_calc_hmac(const struct ubifs_info *c, const u8 *hash, in ubifs_hash_calc_hmac()
64 int ubifs_prepare_auth_node(struct ubifs_info *c, void *node, in ubifs_prepare_auth_node()
91 static struct shash_desc *ubifs_get_desc(const struct ubifs_info *c, in ubifs_get_desc()
122 struct shash_desc *__ubifs_hash_get_desc(const struct ubifs_info *c) in __ubifs_hash_get_desc()
138 void ubifs_bad_hash(const struct ubifs_info *c, const void *node, const u8 *hash, in ubifs_bad_hash()
164 int __ubifs_node_check_hash(const struct ubifs_info *c, const void *node, in __ubifs_node_check_hash()
192 int ubifs_sb_verify_signature(struct ubifs_info *c, in ubifs_sb_verify_signature()
257 int ubifs_init_authentication(struct ubifs_info *c) in ubifs_init_authentication()
367 void __ubifs_exit_authentication(struct ubifs_info *c) in __ubifs_exit_authentication()
[all …]
H A Dtnc.c70 static int insert_old_idx(struct ubifs_info *c, int lnum, int offs) in insert_old_idx()
111 int insert_old_idx_znode(struct ubifs_info *c, struct ubifs_znode *znode) in insert_old_idx_znode()
133 static int ins_clr_old_idx_znode(struct ubifs_info *c, in ins_clr_old_idx_znode()
172 void destroy_old_idx(struct ubifs_info *c) in destroy_old_idx()
189 static struct ubifs_znode *copy_znode(struct ubifs_info *c, in copy_znode()
230 static int add_idx_dirt(struct ubifs_info *c, int lnum, int dirt) in add_idx_dirt()
243 static struct ubifs_znode *dirty_cow_znode(struct ubifs_info *c, in dirty_cow_znode()
305 static int lnc_add(struct ubifs_info *c, struct ubifs_zbranch *zbr, in lnc_add()
341 static int lnc_add_directly(struct ubifs_info *c, struct ubifs_zbranch *zbr, in lnc_add_directly()
383 static int tnc_read_hashed_node(struct ubifs_info *c, struct ubifs_zbranch *zbr, in tnc_read_hashed_node()
[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()
225 int ubifs_check_node(const struct ubifs_info *c, const void *buf, int lnum, in ubifs_check_node()
318 void ubifs_pad(const struct ubifs_info *c, void *buf, int pad) in ubifs_pad()
348 static unsigned long long next_sqnum(struct ubifs_info *c) in next_sqnum()
[all …]
H A Dorphan.c45 static struct ubifs_orphan *orphan_add(struct ubifs_info *c, ino_t inum, in orphan_add()
96 static struct ubifs_orphan *lookup_orphan(struct ubifs_info *c, ino_t inum) in lookup_orphan()
115 static void __orphan_drop(struct ubifs_info *c, struct ubifs_orphan *o) in __orphan_drop()
129 static void orphan_delete(struct ubifs_info *c, struct ubifs_orphan *orph) in orphan_delete()
155 int ubifs_add_orphan(struct ubifs_info *c, ino_t inum) in ubifs_add_orphan()
207 void ubifs_delete_orphan(struct ubifs_info *c, ino_t inum) in ubifs_delete_orphan()
238 int ubifs_orphan_start_commit(struct ubifs_info *c) in ubifs_orphan_start_commit()
272 static int avail_orphs(struct ubifs_info *c) in avail_orphs()
292 static int tot_avail_orphs(struct ubifs_info *c) in tot_avail_orphs()
312 static int do_write_orph_node(struct ubifs_info *c, int len, int atomic) in do_write_orph_node()
[all …]
H A Dlpt.c46 static void do_calc_lpt_geom(struct ubifs_info *c) in do_calc_lpt_geom()
125 int ubifs_calc_lpt_geom(struct ubifs_info *c) in ubifs_calc_lpt_geom()
162 static int calc_dflt_lpt_geom(struct ubifs_info *c, int *main_lebs, in calc_dflt_lpt_geom()
222 static void pack_bits(const struct ubifs_info *c, uint8_t **addr, int *pos, uint32_t val, int nrbit… in pack_bits()
273 uint32_t ubifs_unpack_bits(const struct ubifs_info *c, uint8_t **addr, int *pos, int nrbits) in ubifs_unpack_bits()
340 void ubifs_pack_pnode(struct ubifs_info *c, void *buf, in ubifs_pack_pnode()
373 void ubifs_pack_nnode(struct ubifs_info *c, void *buf, in ubifs_pack_nnode()
405 void ubifs_pack_ltab(struct ubifs_info *c, void *buf, in ubifs_pack_ltab()
430 void ubifs_pack_lsave(struct ubifs_info *c, void *buf, int *lsave) in ubifs_pack_lsave()
452 void ubifs_add_lpt_dirt(struct ubifs_info *c, int lnum, int dirty) in ubifs_add_lpt_dirt()
[all …]
/OK3568_Linux_fs/kernel/scripts/dtc/
H A Dchecks.c10 #define TRACE(c, ...) \ argument
17 #define TRACE(c, fmt, ...) do { } while (0) argument
61 static inline void PRINTF(5, 6) check_msg(struct check *c, struct dt_info *dti, in check_msg()
119 #define FAIL(c, dti, node, ...) \ argument
126 #define FAIL_PROP(c, dti, node, prop, ...) \ argument
134 static void check_nodes_props(struct check *c, struct dt_info *dti, struct node *node) in check_nodes_props()
146 static bool run_check(struct check *c, struct dt_info *dti) in run_check()
191 static inline void check_always_fail(struct check *c, struct dt_info *dti, in check_always_fail()
198 static void check_is_string(struct check *c, struct dt_info *dti, in check_is_string()
216 static void check_is_string_list(struct check *c, struct dt_info *dti, in check_is_string_list()
[all …]
/OK3568_Linux_fs/u-boot/fs/ubifs/
H A Dlprops.c54 static void move_up_lpt_heap(struct ubifs_info *c, struct ubifs_lpt_heap *heap, in move_up_lpt_heap()
91 static void adjust_lpt_heap(struct ubifs_info *c, struct ubifs_lpt_heap *heap, in adjust_lpt_heap()
170 static int add_to_lpt_heap(struct ubifs_info *c, struct ubifs_lprops *lprops, in add_to_lpt_heap()
218 static void remove_from_lpt_heap(struct ubifs_info *c, in remove_from_lpt_heap()
248 static void lpt_heap_replace(struct ubifs_info *c, in lpt_heap_replace()
267 void ubifs_add_to_cat(struct ubifs_info *c, struct ubifs_lprops *lprops, in ubifs_add_to_cat()
310 static void ubifs_remove_from_cat(struct ubifs_info *c, in ubifs_remove_from_cat()
347 void ubifs_replace_cat(struct ubifs_info *c, struct ubifs_lprops *old_lprops, in ubifs_replace_cat()
379 void ubifs_ensure_cat(struct ubifs_info *c, struct ubifs_lprops *lprops) in ubifs_ensure_cat()
402 int ubifs_categorize_lprops(const struct ubifs_info *c, in ubifs_categorize_lprops()
[all …]
H A Dtnc.c77 static int insert_old_idx(struct ubifs_info *c, int lnum, int offs) in insert_old_idx()
118 int insert_old_idx_znode(struct ubifs_info *c, struct ubifs_znode *znode) in insert_old_idx_znode()
140 static int ins_clr_old_idx_znode(struct ubifs_info *c, in ins_clr_old_idx_znode()
179 void destroy_old_idx(struct ubifs_info *c) in destroy_old_idx()
196 static struct ubifs_znode *copy_znode(struct ubifs_info *c, in copy_znode()
238 static int add_idx_dirt(struct ubifs_info *c, int lnum, int dirt) in add_idx_dirt()
251 static struct ubifs_znode *dirty_cow_znode(struct ubifs_info *c, in dirty_cow_znode()
313 static int lnc_add(struct ubifs_info *c, struct ubifs_zbranch *zbr, in lnc_add()
349 static int lnc_add_directly(struct ubifs_info *c, struct ubifs_zbranch *zbr, in lnc_add_directly()
392 static int tnc_read_node_nm(struct ubifs_info *c, struct ubifs_zbranch *zbr, in tnc_read_node_nm()
[all …]
H A Dsuper.c205 static int validate_inode(struct ubifs_info *c, const struct inode *inode) in validate_inode()
244 struct ubifs_info *c = sb->s_fs_info; in ubifs_iget() local
477 struct ubifs_info *c = inode->i_sb->s_fs_info; in ubifs_write_inode() local
521 struct ubifs_info *c = inode->i_sb->s_fs_info; in ubifs_evict_inode() local
580 struct ubifs_info *c = dentry->d_sb->s_fs_info; in ubifs_statfs() local
607 struct ubifs_info *c = root->d_sb->s_fs_info; in ubifs_show_options() local
635 struct ubifs_info *c = sb->s_fs_info; in ubifs_sync_fs() local
679 static int init_constants_early(struct ubifs_info *c) in init_constants_early()
820 static int bud_wbuf_callback(struct ubifs_info *c, int lnum, int free, int pad) in bud_wbuf_callback()
834 static int init_constants_sb(struct ubifs_info *c) in init_constants_sb()
[all …]
H A Ddebug.c101 const char *dbg_snprintf_key(const struct ubifs_info *c, in dbg_snprintf_key()
233 void ubifs_dump_inode(struct ubifs_info *c, const struct inode *inode) in ubifs_dump_inode()
303 void ubifs_dump_node(const struct ubifs_info *c, const void *node) in ubifs_dump_node()
580 void ubifs_dump_budg(struct ubifs_info *c, const struct ubifs_budg_info *bi) in ubifs_dump_budg()
648 void ubifs_dump_budg(struct ubifs_info *c, const struct ubifs_budg_info *bi) in ubifs_dump_budg()
653 void ubifs_dump_lprop(const struct ubifs_info *c, const struct ubifs_lprops *lp) in ubifs_dump_lprop()
744 void ubifs_dump_lprops(struct ubifs_info *c) in ubifs_dump_lprops()
766 void ubifs_dump_lpt_info(struct ubifs_info *c) in ubifs_dump_lpt_info()
804 void ubifs_dump_sleb(const struct ubifs_info *c, in ubifs_dump_sleb()
820 void ubifs_dump_leb(const struct ubifs_info *c, int lnum) in ubifs_dump_leb()
[all …]
H A Dio.c76 void ubifs_ro_mode(struct ubifs_info *c, int err) in ubifs_ro_mode()
93 int ubifs_leb_read(const struct ubifs_info *c, int lnum, void *buf, int offs, in ubifs_leb_read()
111 int ubifs_leb_write(struct ubifs_info *c, int lnum, const void *buf, int offs, in ubifs_leb_write()
134 int ubifs_leb_change(struct ubifs_info *c, int lnum, const void *buf, int len) in ubifs_leb_change()
156 int ubifs_leb_unmap(struct ubifs_info *c, int lnum) in ubifs_leb_unmap()
177 int ubifs_leb_map(struct ubifs_info *c, int lnum) in ubifs_leb_map()
198 int ubifs_is_mapped(const struct ubifs_info *c, int lnum) in ubifs_is_mapped()
239 int ubifs_check_node(const struct ubifs_info *c, const void *buf, int lnum, in ubifs_check_node()
320 void ubifs_pad(const struct ubifs_info *c, void *buf, int pad) in ubifs_pad()
350 static unsigned long long next_sqnum(struct ubifs_info *c) in next_sqnum()
[all …]
/OK3568_Linux_fs/kernel/drivers/mmc/core/
H A Dcard.h15 #define mmc_card_name(c) ((c)->cid.prod_name) argument
16 #define mmc_card_id(c) (dev_name(&(c)->dev)) argument
27 #define mmc_card_present(c) ((c)->state & MMC_STATE_PRESENT) argument
28 #define mmc_card_readonly(c) ((c)->state & MMC_STATE_READONLY) argument
29 #define mmc_card_blockaddr(c) ((c)->state & MMC_STATE_BLOCKADDR) argument
30 #define mmc_card_ext_capacity(c) ((c)->state & MMC_CARD_SDXC) argument
31 #define mmc_card_removed(c) ((c) && ((c)->state & MMC_CARD_REMOVED)) argument
32 #define mmc_card_suspended(c) ((c)->state & MMC_STATE_SUSPENDED) argument
34 #define mmc_card_set_present(c) ((c)->state |= MMC_STATE_PRESENT) argument
35 #define mmc_card_set_readonly(c) ((c)->state |= MMC_STATE_READONLY) argument
[all …]
/OK3568_Linux_fs/kernel/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 …]
/OK3568_Linux_fs/kernel/drivers/net/wan/
H A Dz85230.c123 static inline u8 read_zsreg(struct z8530_channel *c, u8 reg) in read_zsreg()
138 static inline u8 read_zsdata(struct z8530_channel *c) in read_zsdata()
157 static inline void write_zsreg(struct z8530_channel *c, u8 reg, u8 val) in write_zsreg()
173 static inline void write_zsctrl(struct z8530_channel *c, u8 val) in write_zsctrl()
187 static inline void write_zsdata(struct z8530_channel *c, u8 val) in write_zsdata()
273 static void z8530_flush_fifo(struct z8530_channel *c) in z8530_flush_fifo()
299 static void z8530_rtsdtr(struct z8530_channel *c, int set) in z8530_rtsdtr()
332 static void z8530_rx(struct z8530_channel *c) in z8530_rx()
406 static void z8530_tx(struct z8530_channel *c) in z8530_tx()
625 static void z8530_rx_clear(struct z8530_channel *c) in z8530_rx_clear()
[all …]
/OK3568_Linux_fs/kernel/arch/x86/kernel/cpu/
H A Damd.c99 static void init_amd_k5(struct cpuinfo_x86 *c) in init_amd_k5()
118 static void init_amd_k6(struct cpuinfo_x86 *c) in init_amd_k6()
212 static void init_amd_k7(struct cpuinfo_x86 *c) in init_amd_k7()
314 static void legacy_fixup_core_id(struct cpuinfo_x86 *c) in legacy_fixup_core_id()
331 static void amd_get_topology(struct cpuinfo_x86 *c) in amd_get_topology()
384 static void amd_detect_cmp(struct cpuinfo_x86 *c) in amd_detect_cmp()
398 static void amd_detect_ppin(struct cpuinfo_x86 *c) in amd_detect_ppin()
439 static void srat_detect_node(struct cpuinfo_x86 *c) in srat_detect_node()
490 static void early_init_amd_mc(struct cpuinfo_x86 *c) in early_init_amd_mc()
516 static void bsp_init_amd(struct cpuinfo_x86 *c) in bsp_init_amd()
[all …]
/OK3568_Linux_fs/kernel/drivers/md/
H A Ddm-bufio.c154 struct dm_bufio_client *c; member
168 static void dm_bufio_lock(struct dm_bufio_client *c) in dm_bufio_lock()
173 static int dm_bufio_trylock(struct dm_bufio_client *c) in dm_bufio_trylock()
178 static void dm_bufio_unlock(struct dm_bufio_client *c) in dm_bufio_unlock()
251 static struct dm_buffer *__find(struct dm_bufio_client *c, sector_t block) in __find()
268 static struct dm_buffer *__find_next(struct dm_bufio_client *c, sector_t block) in __find_next()
291 static void __insert(struct dm_bufio_client *c, struct dm_buffer *b) in __insert()
313 static void __remove(struct dm_bufio_client *c, struct dm_buffer *b) in __remove()
401 static void *alloc_buffer_data(struct dm_bufio_client *c, gfp_t gfp_mask, in alloc_buffer_data()
441 static void free_buffer_data(struct dm_bufio_client *c, in free_buffer_data()
[all …]
/OK3568_Linux_fs/kernel/arch/csky/include/asm/
H A Dio.h22 #define readb(c) ({ u8 __v = readb_relaxed(c); rmb(); __v; }) argument
23 #define readw(c) ({ u16 __v = readw_relaxed(c); rmb(); __v; }) argument
24 #define readl(c) ({ u32 __v = readl_relaxed(c); rmb(); __v; }) argument
27 #define writeb(v,c) ({ wmb(); writeb_relaxed((v),(c)); }) argument
28 #define writew(v,c) ({ wmb(); writew_relaxed((v),(c)); }) argument
29 #define writel(v,c) ({ wmb(); writel_relaxed((v),(c)); }) argument
31 #define writeb(v,c) ({ wmb(); writeb_relaxed((v),(c)); mb(); }) argument
32 #define writew(v,c) ({ wmb(); writew_relaxed((v),(c)); mb(); }) argument
33 #define writel(v,c) ({ wmb(); writel_relaxed((v),(c)); mb(); }) argument
/OK3568_Linux_fs/kernel/arch/nds32/include/asm/
H A Dio.h63 #define readb_relaxed(c) ({ u8 __v = __raw_readb(c); __v; }) argument
64 #define readw_relaxed(c) ({ u16 __v = le16_to_cpu((__force __le16)__raw_readw(c)); __v; }) argument
65 #define readl_relaxed(c) ({ u32 __v = le32_to_cpu((__force __le32)__raw_readl(c)); __v; }) argument
66 #define writeb_relaxed(v,c) ((void)__raw_writeb((v),(c))) argument
67 #define writew_relaxed(v,c) ((void)__raw_writew((__force u16)cpu_to_le16(v),(c))) argument
68 #define writel_relaxed(v,c) ((void)__raw_writel((__force u32)cpu_to_le32(v),(c))) argument
74 #define readb(c) ({ u8 __v = readb_relaxed(c); __iormb(); __v; }) argument
75 #define readw(c) ({ u16 __v = readw_relaxed(c); __iormb(); __v; }) argument
76 #define readl(c) ({ u32 __v = readl_relaxed(c); __iormb(); __v; }) argument
78 #define writeb(v,c) ({ __iowmb(); writeb_relaxed((v),(c)); }) argument
[all …]
/OK3568_Linux_fs/kernel/fs/jffs2/
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 …]
H A Dxattr.c71 static int is_xattr_datum_unchecked(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd) in is_xattr_datum_unchecked()
87 static void unload_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd) in unload_xattr_datum()
102 static void reclaim_xattr_datum(struct jffs2_sb_info *c) in reclaim_xattr_datum()
132 static int do_verify_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd) in do_verify_xattr_datum()
204 static int do_load_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd) in do_load_xattr_datum()
263 static int load_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd) in load_xattr_datum()
284 static int save_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd) in save_xattr_datum()
336 static struct jffs2_xattr_datum *create_xattr_datum(struct jffs2_sb_info *c, in create_xattr_datum()
404 static void unrefer_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd) in unrefer_xattr_datum()
444 static int verify_xattr_ref(struct jffs2_sb_info *c, struct jffs2_xattr_ref *ref) in verify_xattr_ref()
[all …]
/OK3568_Linux_fs/u-boot/scripts/dtc/
H A Dchecks.c24 #define TRACE(c, ...) \ argument
31 #define TRACE(c, fmt, ...) do { } while (0) argument
75 static inline void PRINTF(3, 4) check_msg(struct check *c, struct dt_info *dti, in check_msg()
92 #define FAIL(c, dti, ...) \ argument
99 static void check_nodes_props(struct check *c, struct dt_info *dti, struct node *node) in check_nodes_props()
111 static bool run_check(struct check *c, struct dt_info *dti) in run_check()
156 static inline void check_always_fail(struct check *c, struct dt_info *dti, in check_always_fail()
163 static void check_is_string(struct check *c, struct dt_info *dti, in check_is_string()
182 static void check_is_cell(struct check *c, struct dt_info *dti, in check_is_cell()
205 static void check_duplicate_node_names(struct check *c, struct dt_info *dti, in check_duplicate_node_names()
[all …]

12345678910>>...162