/linux/tools/include/linux/ |
A D | ctype.h | 27 #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 D | ctype.h | 27 #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 D | os-linux.h | 70 #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 D | wbuf.c | 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() 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 D | cpu-probe.c | 144 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 = ¤t_cpu_data; in check_errata() local 209 static inline void cpu_probe_vmbits(struct cpuinfo_mips *c) in cpu_probe_vmbits() 218 static void set_isa(struct cpuinfo_mips *c, unsigned int isa) in set_isa() 356 static int mm_config(struct cpuinfo_mips *c) in mm_config() 720 static void decode_configs(struct cpuinfo_mips *c) in decode_configs() 1014 static inline void cpu_probe_gtoffset(struct cpuinfo_mips *c) in cpu_probe_gtoffset() 1023 static inline void cpu_probe_vz(struct cpuinfo_mips *c) in cpu_probe_vz() 1711 static inline void decode_cpucfg(struct cpuinfo_mips *c) in decode_cpucfg() 1901 struct cpuinfo_mips *c = ¤t_cpu_data; in cpu_probe() local [all …]
|
/linux/arch/riscv/include/asm/ |
A D | mmio.h | 87 #define readb_cpu(c) ({ u8 __r = __raw_readb(c); __r; }) argument 91 #define writeb_cpu(v, c) ((void)__raw_writeb((v), (c))) argument 92 #define writew_cpu(v, c) ((void)__raw_writew((__force u16)cpu_to_le16(v), (c))) argument 93 #define writel_cpu(v, c) ((void)__raw_writel((__force u32)cpu_to_le32(v), (c))) argument 97 #define writeq_cpu(v, c) ((void)__raw_writeq((__force u64)cpu_to_le64(v), (c))) argument 118 #define writeb_relaxed(v, c) ({ __io_rbw(); writeb_cpu((v), (c)); __io_raw(); }) argument 119 #define writew_relaxed(v, c) ({ __io_rbw(); writew_cpu((v), (c)); __io_raw(); }) argument 142 #define writeb(v, c) ({ __io_bw(); writeb_cpu((v), (c)); __io_aw(); }) argument 143 #define writew(v, c) ({ __io_bw(); writew_cpu((v), (c)); __io_aw(); }) argument 144 #define writel(v, c) ({ __io_bw(); writel_cpu((v), (c)); __io_aw(); }) argument [all …]
|
/linux/fs/ubifs/ |
A D | key.h | 90 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 D | lpt_commit.c | 182 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() 1661 int dbg_check_ltab(struct ubifs_info *c) in dbg_check_ltab() [all …]
|
A D | budget.c | 66 static int run_gc(struct ubifs_info *c) in run_gc() 92 static long long get_liability(struct ubifs_info *c) in get_liability() 120 static int make_free_space(struct ubifs_info *c) in make_free_space() 166 int ubifs_calc_min_idx_lebs(struct ubifs_info *c) in ubifs_calc_min_idx_lebs() 261 static int can_use_rp(struct ubifs_info *c) in can_use_rp() 294 static int do_budget_space(struct ubifs_info *c) in do_budget_space() 362 static int calc_idx_growth(const struct ubifs_info *c, in calc_idx_growth() 378 static int calc_data_growth(const struct ubifs_info *c, in calc_data_growth() 398 static int calc_dd_growth(const struct ubifs_info *c, in calc_dd_growth() 571 void ubifs_convert_page_budget(struct ubifs_info *c) in ubifs_convert_page_budget() [all …]
|
A D | super.c | 112 struct ubifs_info *c = sb->s_fs_info; in ubifs_iget() local 470 struct ubifs_info *c = sb->s_fs_info; in ubifs_sync_fs() local 913 static void free_buds(struct ubifs_info *c) in free_buds() 1199 static void bu_init(struct ubifs_info *c) in bu_init() 1919 struct ubifs_info *c = sb->s_fs_info; in ubifs_put_super() local 1997 struct ubifs_info *c = sb->s_fs_info; in ubifs_remount_fs() local 2125 struct ubifs_info *c; in alloc_ubifs_info() local 2172 struct ubifs_info *c = sb->s_fs_info; in ubifs_fill_super() local 2255 struct ubifs_info *c = sb->s_fs_info; in sb_test() local 2270 struct ubifs_info *c; in ubifs_mount() local [all …]
|
A D | misc.h | 56 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 D | lprops.c | 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() 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 D | auth.c | 29 int __ubifs_node_calc_hash(const struct ubifs_info *c, const void *node, in __ubifs_node_calc_hash() 46 static int ubifs_hash_calc_hmac(const struct ubifs_info *c, const u8 *hash, in ubifs_hash_calc_hmac() 63 int ubifs_prepare_auth_node(struct ubifs_info *c, void *node, in ubifs_prepare_auth_node() 90 static struct shash_desc *ubifs_get_desc(const struct ubifs_info *c, in ubifs_get_desc() 121 struct shash_desc *__ubifs_hash_get_desc(const struct ubifs_info *c) in __ubifs_hash_get_desc() 163 int __ubifs_node_check_hash(const struct ubifs_info *c, const void *node, in __ubifs_node_check_hash() 191 int ubifs_sb_verify_signature(struct ubifs_info *c, in ubifs_sb_verify_signature() 256 int ubifs_init_authentication(struct ubifs_info *c) in ubifs_init_authentication() 366 void __ubifs_exit_authentication(struct ubifs_info *c) in __ubifs_exit_authentication() 509 int ubifs_hmac_wkm(struct ubifs_info *c, u8 *hmac) in ubifs_hmac_wkm() [all …]
|
/linux/sound/firewire/ |
A D | cmp.c | 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() 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 D | msm_iommu_hw-8xxx.h | 25 #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/fs/ksmbd/ |
A D | crypto_ctx.h | 39 #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/arch/arm64/include/asm/ |
A D | arch_gicv3.h | 122 #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 130 #define gits_read_baser(c) readq_relaxed(c) argument 131 #define gits_write_baser(v, c) writeq_relaxed(v, c) argument 133 #define gits_read_cbaser(c) readq_relaxed(c) argument 138 #define gicr_read_propbaser(c) readq_relaxed(c) argument 142 #define gicr_read_pendbaser(c) readq_relaxed(c) argument 145 #define gicr_read_vpropbaser(c) readq_relaxed(c) argument [all …]
|
A D | io.h | 120 #define readb_relaxed(c) ({ u8 __r = __raw_readb(c); __r; }) argument 125 #define writeb_relaxed(v,c) ((void)__raw_writeb((v),(c))) argument 135 #define readb(c) ({ u8 __v = readb_relaxed(c); __iormb(__v); __v; }) argument 136 #define readw(c) ({ u16 __v = readw_relaxed(c); __iormb(__v); __v; }) argument 140 #define writeb(v,c) ({ __iowmb(); writeb_relaxed((v),(c)); }) argument 141 #define writew(v,c) ({ __iowmb(); writew_relaxed((v),(c)); }) argument 142 #define writel(v,c) ({ __iowmb(); writel_relaxed((v),(c)); }) argument 143 #define writeq(v,c) ({ __iowmb(); writeq_relaxed((v),(c)); }) argument 159 #define memset_io(c,v,l) __memset_io((c),(v),(l)) argument 160 #define memcpy_fromio(a,c,l) __memcpy_fromio((a),(c),(l)) argument [all …]
|
/linux/scripts/dtc/ |
A D | checks.c | 10 #define TRACE(c, ...) \ argument 17 #define TRACE(c, fmt, ...) do { } while (0) argument 119 #define FAIL(c, dti, node, ...) \ argument 126 #define FAIL_PROP(c, dti, node, prop, ...) \ argument 154 static bool run_check(struct check *c, struct dt_info *dti) in run_check() 1511 static void check_gpios_property(struct check *c, in check_gpios_property() 1571 static void check_interrupt_provider(struct check *c, in check_interrupt_provider() 1593 static void check_interrupt_map(struct check *c, in check_interrupt_map() 1677 static void check_interrupts_property(struct check *c, in check_interrupts_property() 2031 struct check *c = check_table[i]; in parse_checks_option() local [all …]
|
/linux/drivers/most/ |
A D | core.c | 469 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/arch/csky/include/asm/ |
A D | io.h | 21 #define readb(c) ({ u8 __v = readb_relaxed(c); rmb(); __v; }) argument 22 #define readw(c) ({ u16 __v = readw_relaxed(c); rmb(); __v; }) argument 23 #define readl(c) ({ u32 __v = readl_relaxed(c); rmb(); __v; }) argument 26 #define writeb(v,c) ({ wmb(); writeb_relaxed((v),(c)); }) argument 27 #define writew(v,c) ({ wmb(); writew_relaxed((v),(c)); }) argument 28 #define writel(v,c) ({ wmb(); writel_relaxed((v),(c)); }) argument 30 #define writeb(v,c) ({ wmb(); writeb_relaxed((v),(c)); mb(); }) argument 31 #define writew(v,c) ({ wmb(); writew_relaxed((v),(c)); mb(); }) argument 32 #define writel(v,c) ({ wmb(); writel_relaxed((v),(c)); mb(); }) argument
|
/linux/arch/x86/kernel/cpu/ |
A D | amd.c | 98 static void init_amd_k5(struct cpuinfo_x86 *c) in init_amd_k5() 117 static void init_amd_k6(struct cpuinfo_x86 *c) in init_amd_k6() 211 static void init_amd_k7(struct cpuinfo_x86 *c) in init_amd_k7() 509 static void bsp_init_amd(struct cpuinfo_x86 *c) in bsp_init_amd() 723 static void init_amd_k8(struct cpuinfo_x86 *c) in init_amd_k8() 762 static void init_amd_gh(struct cpuinfo_x86 *c) in init_amd_gh() 799 static void init_amd_ln(struct cpuinfo_x86 *c) in init_amd_ln() 856 static void init_amd_jg(struct cpuinfo_x86 *c) in init_amd_jg() 866 static void init_amd_bd(struct cpuinfo_x86 *c) in init_amd_bd() 905 static void init_amd(struct cpuinfo_x86 *c) in init_amd() [all …]
|
/linux/drivers/mmc/core/ |
A D | card.h | 15 #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 37 #define mmc_card_set_ext_capacity(c) ((c)->state |= MMC_CARD_SDXC) argument 38 #define mmc_card_set_removed(c) ((c)->state |= MMC_CARD_REMOVED) argument [all …]
|
/linux/drivers/net/wan/ |
A D | z85230.c | 117 static inline u8 read_zsreg(struct z8530_channel *c, u8 reg) in read_zsreg() 132 static inline u8 read_zsdata(struct z8530_channel *c) in read_zsdata() 254 static void z8530_flush_fifo(struct z8530_channel *c) in z8530_flush_fifo() 279 static void z8530_rtsdtr(struct z8530_channel *c, int set) in z8530_rtsdtr() 312 static void z8530_rx(struct z8530_channel *c) in z8530_rx() 372 static void z8530_tx(struct z8530_channel *c) in z8530_tx() 572 static void z8530_rx_clear(struct z8530_channel *c) in z8530_rx_clear() 598 static void z8530_tx_clear(struct z8530_channel *c) in z8530_tx_clear() 1313 static void z8530_tx_begin(struct z8530_channel *c) in z8530_tx_begin() 1393 static void z8530_tx_done(struct z8530_channel *c) in z8530_tx_done() [all …]
|
/linux/arch/nds32/include/asm/ |
A D | io.h | 63 #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 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 79 #define writew(v,c) ({ __iowmb(); writew_relaxed((v),(c)); }) argument [all …]
|