/linux/tools/include/linux/ |
H A D | ctype.h | 25 #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 D | ctype.h | 25 #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/fs/jffs2/ |
H A D | os-linux.h | 25 #define OFNI_BS_2SFFJ(c) ((struct super_block *)c->os_priv) argument 63 #define jffs2_is_readonly(c) (OFNI_BS_2SFFJ(c)->s_flags & SB_RDONLY) argument 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 77 #define jffs2_write_nand_cleanmarker(c,jeb) (-EIO) argument 79 #define jffs2_flash_write(c, ofs, len, retlen, buf) jffs2_flash_direct_write(c, ofs, len, retlen, b… argument 80 #define jffs2_flash_read(c, ofs, len, retlen, buf) (mtd_read((c)->mtd, ofs, len, retlen, buf)) argument 81 #define jffs2_flush_wbuf_pad(c) ({ do{} while(0); (void)(c), 0; }) argument [all …]
|
H A D | wbuf.c | 48 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 …]
|
/linux/arch/mips/kernel/ |
H 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 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() 277 static unsigned int calculate_ftlb_probability(struct cpuinfo_mips *c) in calculate_ftlb_probability() 303 static int set_ftlb_enable(struct cpuinfo_mips *c, enum ftlb_flags flags) in set_ftlb_enable() 355 static int mm_config(struct cpuinfo_mips *c) in mm_config() 401 static inline unsigned int decode_config0(struct cpuinfo_mips *c) in decode_config0() 459 static inline unsigned int decode_config1(struct cpuinfo_mips *c) in decode_config1() 488 static inline unsigned int decode_config2(struct cpuinfo_mips *c) in decode_config2() [all …]
|
/linux/arch/riscv/include/asm/ |
H A D | mmio.h | 88 #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/fs/ubifs/ |
H A D | key.h | 90 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 D | budget.c | 51 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 D | super.c | 69 static int validate_inode(struct ubifs_info *c, const struct inode *inode) in validate_inode() 108 struct ubifs_info *c = sb->s_fs_info; in ubifs_iget() local 295 struct ubifs_info *c = inode->i_sb->s_fs_info; in ubifs_write_inode() local 349 struct ubifs_info *c = inode->i_sb->s_fs_info; in ubifs_evict_inode() local 396 struct ubifs_info *c = inode->i_sb->s_fs_info; in ubifs_dirty_inode() local 408 struct ubifs_info *c = dentry->d_sb->s_fs_info; in ubifs_statfs() local 435 struct ubifs_info *c = root->d_sb->s_fs_info; in ubifs_show_options() local 466 struct ubifs_info *c = sb->s_fs_info; in ubifs_sync_fs() local 509 static int init_constants_early(struct ubifs_info *c) in init_constants_early() 659 static int bud_wbuf_callback(struct ubifs_info *c, int lnum, int free, int pad) in bud_wbuf_callback() [all …]
|
H A D | lprops.c | 50 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 D | tnc.c | 47 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 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() 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 D | auth.c | 28 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 …]
|
/linux/tools/include/nolibc/ |
H A D | ctype.h | 17 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() 76 int isxdigit(int c) in isxdigit() [all …]
|
/linux/arch/x86/kernel/cpu/ |
H A D | amd.c | 88 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() 298 static void srat_detect_node(struct cpuinfo_x86 *c) in srat_detect_node() 349 static void bsp_determine_snp(struct cpuinfo_x86 *c) in bsp_determine_snp() 376 static void bsp_init_amd(struct cpuinfo_x86 *c) in bsp_init_amd() 489 static void early_detect_mem_encrypt(struct cpuinfo_x86 *c) in early_detect_mem_encrypt() 541 static void early_init_amd(struct cpuinfo_x86 *c) in early_init_amd() 620 static void init_amd_k8(struct cpuinfo_x86 *c) in init_amd_k8() 669 static void init_amd_gh(struct cpuinfo_x86 *c) in init_amd_gh() [all …]
|
/linux/fs/bcachefs/ |
H A D | super.c | 92 void bch2_print_str(struct bch_fs *c, const char *str) in bch2_print_str() 130 void __bch2_print(struct bch_fs *c, const char *fmt, ...) in __bch2_print() 195 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 257 static void __bch2_fs_read_only(struct bch_fs *c) in __bch2_fs_read_only() 307 struct bch_fs *c = container_of(writes, struct bch_fs, writes); in bch2_writes_disabled() 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 398 static void bch2_fs_read_only_async(struct bch_fs *c) in bch2_fs_read_only_async() [all …]
|
H A D | snapshot.h | 42 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() 57 static inline u32 __bch2_snapshot_parent_early(struct bch_fs *c, u32 id) in __bch2_snapshot_parent_early() 63 static inline u32 bch2_snapshot_parent_early(struct bch_fs *c, u32 id) in bch2_snapshot_parent_early() 72 static inline u32 __bch2_snapshot_parent(struct bch_fs *c, u32 id) in __bch2_snapshot_parent() 89 static inline u32 bch2_snapshot_parent(struct bch_fs *c, u32 id) in bch2_snapshot_parent() 98 static inline u32 bch2_snapshot_nth_parent(struct bch_fs *c, u32 id, u32 n) in bch2_snapshot_nth_parent() 110 static inline u32 bch2_snapshot_root(struct bch_fs *c, u32 id) in bch2_snapshot_root() 122 static inline bool __bch2_snapshot_exists(struct bch_fs *c, u32 id) in __bch2_snapshot_exists() 128 static inline bool bch2_snapshot_exists(struct bch_fs *c, u32 id) in bch2_snapshot_exists() [all …]
|
H A D | tests.c | 13 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() 363 static int test_peek_end_extents(struct bch_fs *c, u64 nr) in test_peek_end_extents() 387 static int insert_test_extent(struct bch_fs *c, in insert_test_extent() [all …]
|
H A D | chardev.c | 27 static struct bch_dev *bch2_device_lookup(struct bch_fs *c, u64 dev, in bch2_device_lookup() 155 static long bch2_ioctl_query_uuid(struct bch_fs *c, in bch2_ioctl_query_uuid() 184 static long bch2_ioctl_disk_add(struct bch_fs *c, struct bch_ioctl_disk arg) in bch2_ioctl_disk_add() 207 static long bch2_ioctl_disk_remove(struct bch_fs *c, struct bch_ioctl_disk arg) in bch2_ioctl_disk_remove() 228 static long bch2_ioctl_disk_online(struct bch_fs *c, struct bch_ioctl_disk arg) in bch2_ioctl_disk_online() 249 static long bch2_ioctl_disk_offline(struct bch_fs *c, struct bch_ioctl_disk arg) in bch2_ioctl_disk_offline() 273 static long bch2_ioctl_disk_set_state(struct bch_fs *c, in bch2_ioctl_disk_set_state() 305 struct bch_fs *c; member 332 struct bch_fs *c = ctx->c; in bch2_data_job_read() local 353 static long bch2_ioctl_data(struct bch_fs *c, in bch2_ioctl_data() [all …]
|
H A D | ec.c | 112 int bch2_stripe_validate(struct bch_fs *c, struct bkey_s_c k, in bch2_stripe_validate() 138 void bch2_stripe_to_text(struct printbuf *out, struct bch_fs *c, in bch2_stripe_to_text() 199 struct bch_fs *c = trans->c; in __mark_stripe_bucket() local 286 struct bch_fs *c = trans->c; in mark_stripe_bucket() local 388 struct bch_fs *c = trans->c; in bch2_trigger_stripe() local 634 static void ec_validate_checksums(struct bch_fs *c, struct ec_stripe_buf *buf) in ec_validate_checksums() 698 static int ec_do_recov(struct bch_fs *c, struct ec_stripe_buf *buf) in ec_do_recov() 752 static void ec_block_io(struct bch_fs *c, struct ec_stripe_buf *buf, in ec_block_io() 843 struct bch_fs *c = trans->c; in bch2_ec_read_extent() local 918 static int __ec_stripe_mem_alloc(struct bch_fs *c, size_t idx, gfp_t gfp) in __ec_stripe_mem_alloc() [all …]
|
/linux/drivers/iommu/ |
H 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 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/scripts/dtc/ |
H A D | checks.c | 10 #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() 120 #define FAIL(c, dti, node, ...) \ argument 127 #define FAIL_PROP(c, dti, node, prop, ...) \ argument 135 static void check_nodes_props(struct check *c, struct dt_info *dti, struct node *node) in check_nodes_props() 155 static bool run_check(struct check *c, struct dt_info *dti) in run_check() 200 static inline void check_always_fail(struct check *c, struct dt_info *dti, in check_always_fail() 207 static void check_is_string(struct check *c, struct dt_info *dti, in check_is_string() 225 static void check_is_string_list(struct check *c, struct dt_info *dti, in check_is_string_list() [all …]
|
/linux/arch/arm64/include/asm/ |
H A D | arch_gicv3.h | 143 #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 155 #define gits_write_cbaser(v, c) writeq_relaxed(v, c) argument 157 #define gits_write_cwriter(v, c) writeq_relaxed(v, c) argument 159 #define gicr_read_propbaser(c) readq_relaxed(c) argument [all …]
|
/linux/drivers/most/ |
H A D | core.c | 102 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/fs/smb/server/ |
H 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 48 #define CRYPTO_CMACAES_TFM(c) ((c)->desc[CRYPTO_SHASH_CMACAES]->tfm) 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 [all …]
|