Home
last modified time | relevance | path

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

12345678910>>...85

/linux/tools/include/linux/
A Dctype.h27 #define iscntrl(c) ((__ismask(c)&(_C)) != 0) argument
29 #define islower(c) ((__ismask(c)&(_L)) != 0) argument
31 #define ispunct(c) ((__ismask(c)&(_P)) != 0) argument
33 #define isspace(c) ((__ismask(c)&(_S)) != 0) argument
41 #define isdigit(c) __builtin_isdigit(c) argument
43 static inline int __isdigit(int c) in __isdigit()
47 #define isdigit(c) __isdigit(c) argument
64 #define tolower(c) __tolower(c) argument
65 #define toupper(c) __toupper(c) argument
71 static inline char _tolower(const char c) in _tolower()
[all …]
/linux/include/linux/
A Dctype.h27 #define iscntrl(c) ((__ismask(c)&(_C)) != 0) argument
29 #define islower(c) ((__ismask(c)&(_L)) != 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
41 #define isdigit(c) __builtin_isdigit(c) argument
43 static inline int isdigit(int c) in isdigit()
63 #define tolower(c) __tolower(c) argument
64 #define toupper(c) __toupper(c) argument
70 static inline char _tolower(const char c) in _tolower()
[all …]
/linux/fs/jffs2/
A Dos-linux.h70 #define jffs2_can_mark_obsolete(c) (0) argument
72 #define jffs2_can_mark_obsolete(c) (1) argument
75 #define jffs2_is_writebuffered(c) (0) argument
76 #define jffs2_cleanmarker_oob(c) (0) argument
84 #define jffs2_nand_flash_setup(c) (0) argument
86 #define jffs2_wbuf_dirty(c) (0) argument
90 #define jffs2_dataflash(c) (0) argument
91 #define jffs2_dataflash_setup(c) (0) argument
93 #define jffs2_nor_wbuf_flash(c) (0) argument
96 #define jffs2_ubivol(c) (0) argument
[all …]
A Dwbuf.c269 #define jffs2_verify_write(c,b,o) (0) argument
275 static void jffs2_wbuf_recover(struct jffs2_sb_info *c) in jffs2_wbuf_recover()
764 int jffs2_flush_wbuf_pad(struct jffs2_sb_info *c) in jffs2_flush_wbuf_pad()
1033 int jffs2_check_oob_empty(struct jffs2_sb_info *c, in jffs2_check_oob_empty()
1162 struct jffs2_sb_info *c = work_to_sb(work); in delayed_wbuf_sync() local
1171 void jffs2_dirty_trigger(struct jffs2_sb_info *c) in jffs2_dirty_trigger()
1184 int jffs2_nand_flash_setup(struct jffs2_sb_info *c) in jffs2_nand_flash_setup()
1228 void jffs2_nand_flash_cleanup(struct jffs2_sb_info *c) in jffs2_nand_flash_cleanup()
1237 int jffs2_dataflash_setup(struct jffs2_sb_info *c) { in jffs2_dataflash_setup()
1326 int jffs2_ubivol_setup(struct jffs2_sb_info *c) { in jffs2_ubivol_setup()
[all …]
/linux/arch/mips/kernel/
A Dcpu-probe.c144 static inline void cpu_set_mt_per_tc_perf(struct cpuinfo_mips *c) in cpu_set_mt_per_tc_perf()
152 struct cpuinfo_mips *c = &current_cpu_data; in check_errata() local
208 static inline void cpu_probe_vmbits(struct cpuinfo_mips *c) in cpu_probe_vmbits()
217 static void set_isa(struct cpuinfo_mips *c, unsigned int isa) in set_isa()
355 static int mm_config(struct cpuinfo_mips *c) in mm_config()
719 static void decode_configs(struct cpuinfo_mips *c) in decode_configs()
1013 static inline void cpu_probe_gtoffset(struct cpuinfo_mips *c) in cpu_probe_gtoffset()
1022 static inline void cpu_probe_vz(struct cpuinfo_mips *c) in cpu_probe_vz()
1653 static inline void decode_cpucfg(struct cpuinfo_mips *c) in decode_cpucfg()
1844 struct cpuinfo_mips *c = &current_cpu_data; in cpu_probe() local
[all …]
/linux/arch/riscv/include/asm/
A Dmmio.h88 #define readb_cpu(c) ({ u8 __r = __raw_readb(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
98 #define writeq_cpu(v, c) ((void)__raw_writeq((__force u64)cpu_to_le64(v), (c))) argument
119 #define writeb_relaxed(v, c) ({ __io_rbw(); writeb_cpu((v), (c)); __io_raw(); }) argument
120 #define writew_relaxed(v, c) ({ __io_rbw(); writew_cpu((v), (c)); __io_raw(); }) argument
143 #define writeb(v, c) ({ __io_bw(); writeb_cpu((v), (c)); __io_aw(); }) argument
144 #define writew(v, c) ({ __io_bw(); writew_cpu((v), (c)); __io_aw(); }) argument
145 #define writel(v, c) ({ __io_bw(); writel_cpu((v), (c)); __io_aw(); }) argument
[all …]
/linux/tools/include/nolibc/
A 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()
82 int isalpha(int c) in isalpha()
[all …]
/linux/fs/ubifs/
A Dkey.h90 static inline void ino_key_init(const struct ubifs_info *c, in ino_key_init()
119 static inline void lowest_ino_key(const struct ubifs_info *c, in lowest_ino_key()
146 static inline void dent_key_init(const struct ubifs_info *c, in dent_key_init()
215 static inline void xent_key_init(const struct ubifs_info *c, in xent_key_init()
322 static inline int key_type(const struct ubifs_info *c, in key_type()
369 static inline uint32_t key_hash(const struct ubifs_info *c, in key_hash()
432 static inline void key_write(const struct ubifs_info *c, in key_write()
463 static inline void key_copy(const struct ubifs_info *c, in key_copy()
478 static inline int keys_cmp(const struct ubifs_info *c, in keys_cmp()
503 static inline int keys_eq(const struct ubifs_info *c, in keys_eq()
[all …]
A Dlpt_commit.c182 static int layout_cnodes(struct ubifs_info *c) in layout_cnodes()
360 static int write_cnodes(struct ubifs_info *c) in write_cnodes()
657 static int make_tree_dirty(struct ubifs_info *c) in make_tree_dirty()
681 static int need_write_all(struct ubifs_info *c) in need_write_all()
708 static void lpt_tgc_start(struct ubifs_info *c) in lpt_tgc_start()
734 static int lpt_tgc_end(struct ubifs_info *c) in lpt_tgc_end()
1150 static int lpt_gc(struct ubifs_info *c) in lpt_gc()
1283 int ubifs_lpt_end_commit(struct ubifs_info *c) in ubifs_lpt_end_commit()
1310 int ubifs_lpt_post_commit(struct ubifs_info *c) in ubifs_lpt_post_commit()
1660 int dbg_check_ltab(struct ubifs_info *c) in dbg_check_ltab()
[all …]
A Dbudget.c66 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()
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()
394 static int calc_dd_growth(const struct ubifs_info *c, in calc_dd_growth()
567 void ubifs_convert_page_budget(struct ubifs_info *c) in ubifs_convert_page_budget()
[all …]
A Dsuper.c108 struct ubifs_info *c = sb->s_fs_info; in ubifs_iget() local
466 struct ubifs_info *c = sb->s_fs_info; in ubifs_sync_fs() local
918 static void free_buds(struct ubifs_info *c) in free_buds()
1207 static void bu_init(struct ubifs_info *c) in bu_init()
1931 struct ubifs_info *c = sb->s_fs_info; in ubifs_put_super() local
2009 struct ubifs_info *c = sb->s_fs_info; in ubifs_remount_fs() local
2137 struct ubifs_info *c; in alloc_ubifs_info() local
2186 struct ubifs_info *c = sb->s_fs_info; in ubifs_fill_super() local
2270 struct ubifs_info *c = sb->s_fs_info; in sb_test() local
2285 struct ubifs_info *c; in ubifs_mount() local
[all …]
A Dlprops.c214 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()
396 int ubifs_categorize_lprops(const struct ubifs_info *c, in ubifs_categorize_lprops()
467 int ubifs_calc_dark(const struct ubifs_info *c, int spc) in ubifs_calc_dark()
520 const struct ubifs_lprops *ubifs_change_lp(struct ubifs_info *c, in ubifs_change_lp()
754 const struct ubifs_lprops *ubifs_fast_find_free(struct ubifs_info *c) in ubifs_fast_find_free()
851 int dbg_check_cats(struct ubifs_info *c) in dbg_check_cats()
1015 static int scan_check_cb(struct ubifs_info *c, in scan_check_cb()
[all …]
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()
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()
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()
254 static inline void ubifs_release_lprops(struct ubifs_info *c) in ubifs_release_lprops()
270 static inline int ubifs_next_log_lnum(const struct ubifs_info *c, int lnum) in ubifs_next_log_lnum()
[all …]
A Dtnc.c47 static void do_insert_old_idx(struct ubifs_info *c, in do_insert_old_idx()
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()
618 static struct ubifs_znode *get_znode(struct ubifs_info *c, in get_znode()
855 static int fallible_matches_name(struct ubifs_info *c, in fallible_matches_name()
925 static int fallible_resolve_collision(struct ubifs_info *c, in fallible_resolve_collision()
1070 static int resolve_collision_directly(struct ubifs_info *c, in resolve_collision_directly()
1687 const struct ubifs_info *c = wbuf->c; in read_wbuf() local
3080 static void tnc_destroy_cnext(struct ubifs_info *c) in tnc_destroy_cnext()
[all …]
/linux/arch/x86/kernel/cpu/
A Damd.c88 static void init_amd_k5(struct cpuinfo_x86 *c) in init_amd_k5()
107 static void init_amd_k6(struct cpuinfo_x86 *c) in init_amd_k6()
201 static void init_amd_k7(struct cpuinfo_x86 *c) in init_amd_k7()
371 static void bsp_init_amd(struct cpuinfo_x86 *c) in bsp_init_amd()
615 static void init_amd_k8(struct cpuinfo_x86 *c) in init_amd_k8()
664 static void init_amd_gh(struct cpuinfo_x86 *c) in init_amd_gh()
708 static void init_amd_ln(struct cpuinfo_x86 *c) in init_amd_ln()
765 static void init_amd_jg(struct cpuinfo_x86 *c) in init_amd_jg()
775 static void init_amd_bd(struct cpuinfo_x86 *c) in init_amd_bd()
850 static void init_amd_zen1(struct cpuinfo_x86 *c) in init_amd_zen1()
[all …]
/linux/fs/bcachefs/
A Dsuper.c195 struct bch_fs *c; in bch2_dev_to_fs() local
216 struct bch_fs *c; in __bch2_uuid_to_fs() local
229 struct bch_fs *c; in bch2_uuid_to_fs() local
314 void bch2_fs_read_only(struct bch_fs *c) in bch2_fs_read_only()
390 struct bch_fs *c = in bch2_fs_read_only_work() local
614 void __bch2_fs_stop(struct bch_fs *c) in __bch2_fs_stop()
650 void bch2_fs_free(struct bch_fs *c) in bch2_fs_free()
676 void bch2_fs_stop(struct bch_fs *c) in bch2_fs_stop()
734 struct bch_fs *c; in bch2_fs_alloc() local
1000 int bch2_fs_start(struct bch_fs *c) in bch2_fs_start()
[all …]
A Dsnapshot.h48 static inline u32 bch2_snapshot_tree(struct bch_fs *c, u32 id) in bch2_snapshot_tree()
58 static inline u32 __bch2_snapshot_parent_early(struct bch_fs *c, u32 id) in __bch2_snapshot_parent_early()
64 static inline u32 bch2_snapshot_parent_early(struct bch_fs *c, u32 id) in bch2_snapshot_parent_early()
73 static inline u32 __bch2_snapshot_parent(struct bch_fs *c, u32 id) in __bch2_snapshot_parent()
90 static inline u32 bch2_snapshot_parent(struct bch_fs *c, u32 id) in bch2_snapshot_parent()
111 static inline u32 bch2_snapshot_root(struct bch_fs *c, u32 id) in bch2_snapshot_root()
123 static inline u32 __bch2_snapshot_equiv(struct bch_fs *c, u32 id) in __bch2_snapshot_equiv()
129 static inline u32 bch2_snapshot_equiv(struct bch_fs *c, u32 id) in bch2_snapshot_equiv()
148 static inline int bch2_snapshot_is_leaf(struct bch_fs *c, u32 id) in bch2_snapshot_is_leaf()
156 static inline u32 bch2_snapshot_depth(struct bch_fs *c, u32 parent) in bch2_snapshot_depth()
[all …]
/linux/sound/firewire/
A Dcmp.c57 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()
120 int cmp_connection_init(struct cmp_connection *c, in cmp_connection_init()
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()
212 void cmp_connection_release(struct cmp_connection *c) in cmp_connection_release()
231 static int get_overhead_id(struct cmp_connection *c) in get_overhead_id()
303 int cmp_connection_establish(struct cmp_connection *c) in cmp_connection_establish()
346 int cmp_connection_update(struct cmp_connection *c) in cmp_connection_update()
[all …]
/linux/drivers/iommu/
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
454 #define SET_CONTEXTIDR_ASID(b, c, v) \ argument
456 #define SET_CONTEXTIDR_PROCID(b, c, v) \ argument
483 #define SET_AINNERSHARED(b, c, v) \ argument
491 #define SET_FSYNR1_ASIZE(b, c, v) \ argument
523 #define SET_FAULT_HTWDEEF(b, c, v) \ argument
525 #define SET_FAULT_HTWSEEF(b, c, v) \ argument
579 #define SET_TLBIASIDCFG(b, c, v) \ argument
643 #define GET_CONTEXTIDR_ASID(b, c) \ argument
[all …]
/linux/arch/csky/include/asm/
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
41 #define memset_io(c,v,l) __memset_io((c),(v),(l)) argument
42 #define memcpy_fromio(a,c,l) __memcpy_fromio((a),(c),(l)) argument
[all …]
/linux/arch/arm64/include/asm/
A Darch_gicv3.h143 #define gic_read_typer(c) readq_relaxed(c) argument
144 #define gic_write_irouter(v, c) writeq_relaxed(v, c) argument
145 #define gic_read_lpir(c) readq_relaxed(c) argument
146 #define gic_write_lpir(v, c) writeq_relaxed(v, c) argument
151 #define gits_read_baser(c) readq_relaxed(c) argument
152 #define gits_write_baser(v, c) writeq_relaxed(v, c) argument
154 #define gits_read_cbaser(c) readq_relaxed(c) argument
159 #define gicr_read_propbaser(c) readq_relaxed(c) argument
163 #define gicr_read_pendbaser(c) readq_relaxed(c) argument
166 #define gicr_read_vpropbaser(c) readq_relaxed(c) argument
[all …]
/linux/scripts/dtc/
A Dchecks.c10 #define TRACE(c, ...) \ argument
17 #define TRACE(c, fmt, ...) do { } while (0) argument
120 #define FAIL(c, dti, node, ...) \ argument
127 #define FAIL_PROP(c, dti, node, prop, ...) \ argument
155 static bool run_check(struct check *c, struct dt_info *dti) in run_check()
1516 static void check_gpios_property(struct check *c, in check_gpios_property()
1576 static void check_interrupt_provider(struct check *c, in check_interrupt_provider()
1598 static void check_interrupt_map(struct check *c, in check_interrupt_map()
1686 static void check_interrupts_property(struct check *c, in check_interrupts_property()
2053 struct check *c = check_table[i]; in parse_checks_option() local
[all …]
/linux/fs/smb/server/
A Dcrypto_ctx.h39 #define CRYPTO_HMACMD5(c) ((c)->desc[CRYPTO_SHASH_HMACMD5]) argument
40 #define CRYPTO_HMACSHA256(c) ((c)->desc[CRYPTO_SHASH_HMACSHA256]) argument
41 #define CRYPTO_CMACAES(c) ((c)->desc[CRYPTO_SHASH_CMACAES]) argument
42 #define CRYPTO_SHA256(c) ((c)->desc[CRYPTO_SHASH_SHA256]) argument
43 #define CRYPTO_SHA512(c) ((c)->desc[CRYPTO_SHASH_SHA512]) argument
45 #define CRYPTO_HMACMD5_TFM(c) ((c)->desc[CRYPTO_SHASH_HMACMD5]->tfm) argument
46 #define CRYPTO_HMACSHA256_TFM(c)\ argument
49 #define CRYPTO_SHA256_TFM(c) ((c)->desc[CRYPTO_SHASH_SHA256]->tfm) argument
50 #define CRYPTO_SHA512_TFM(c) ((c)->desc[CRYPTO_SHASH_SHA512]->tfm) argument
52 #define CRYPTO_GCM(c) ((c)->ccmaes[CRYPTO_AEAD_AES_GCM]) argument
[all …]
/linux/drivers/most/
A Dcore.c469 struct most_channel *c; in print_links() local
536 struct most_channel *c, *tmp; in get_channel() local
691 struct most_channel *c; in most_remove_link() local
773 struct most_channel *c = data; in hdm_enqueue_thread() local
838 struct most_channel *c; in arm_mbo() local
944 struct most_channel *c; in most_write_completion() local
988 struct most_channel *c; in most_get_mbo() local
1163 struct most_channel *c; in most_stop_channel() local
1233 struct most_channel *c, *tmp; in disconnect_channels() local
1283 struct most_channel *c; in most_register_interface() local
[all …]
/linux/drivers/mmc/core/
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
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
37 #define mmc_card_set_ext_capacity(c) ((c)->state |= MMC_CARD_SDXC) argument
[all …]

Completed in 78 milliseconds

12345678910>>...85