Home
last modified time | relevance | path

Searched defs:s (Results 1 – 25 of 530) sorted by relevance

12345678910>>...22

/linux-4.19.296/include/linux/
Dtrace_seq.h21 trace_seq_init(struct trace_seq *s) in trace_seq_init()
40 static inline int trace_seq_used(struct trace_seq *s) in trace_seq_used()
55 trace_seq_buffer_ptr(struct trace_seq *s) in trace_seq_buffer_ptr()
67 static inline bool trace_seq_has_overflowed(struct trace_seq *s) in trace_seq_has_overflowed()
96 static inline void trace_seq_printf(struct trace_seq *s, const char *fmt, ...) in trace_seq_printf()
100 trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary) in trace_seq_bprintf()
105 trace_seq_bitmask(struct trace_seq *s, const unsigned long *maskp, in trace_seq_bitmask()
110 static inline int trace_print_seq(struct seq_file *m, struct trace_seq *s) in trace_print_seq()
114 static inline int trace_seq_to_user(struct trace_seq *s, char __user *ubuf, in trace_seq_to_user()
119 static inline void trace_seq_puts(struct trace_seq *s, const char *str) in trace_seq_puts()
[all …]
Dseq_buf.h26 static inline void seq_buf_clear(struct seq_buf *s) in seq_buf_clear()
33 seq_buf_init(struct seq_buf *s, char *buf, unsigned int size) in seq_buf_init()
45 seq_buf_has_overflowed(struct seq_buf *s) in seq_buf_has_overflowed()
51 seq_buf_set_overflow(struct seq_buf *s) in seq_buf_set_overflow()
60 seq_buf_buffer_left(struct seq_buf *s) in seq_buf_buffer_left()
69 static inline unsigned int seq_buf_used(struct seq_buf *s) in seq_buf_used()
82 static inline size_t seq_buf_get_buf(struct seq_buf *s, char **bufp) in seq_buf_get_buf()
104 static inline void seq_buf_commit(struct seq_buf *s, int num) in seq_buf_commit()
Dseqlock.h55 static inline void __seqcount_init(seqcount_t *s, const char *name, in __seqcount_init()
69 # define seqcount_init(s) \ argument
75 static inline void seqcount_lockdep_reader_access(const seqcount_t *s) in seqcount_lockdep_reader_access()
88 # define seqcount_init(s) __seqcount_init(s, NULL, NULL) argument
108 static inline unsigned __read_seqcount_begin(const seqcount_t *s) in __read_seqcount_begin()
130 static inline unsigned raw_read_seqcount(const seqcount_t *s) in raw_read_seqcount()
146 static inline unsigned raw_read_seqcount_begin(const seqcount_t *s) in raw_read_seqcount_begin()
162 static inline unsigned read_seqcount_begin(const seqcount_t *s) in read_seqcount_begin()
182 static inline unsigned raw_seqcount_begin(const seqcount_t *s) in raw_seqcount_begin()
203 static inline int __read_seqcount_retry(const seqcount_t *s, unsigned start) in __read_seqcount_retry()
[all …]
/linux-4.19.296/lib/
Dkstrtox.c24 const char *_parse_integer_fixup_radix(const char *s, unsigned int *base) in _parse_integer_fixup_radix()
49 unsigned int _parse_integer_limit(const char *s, unsigned int base, unsigned long long *p, in _parse_integer_limit()
87 unsigned int _parse_integer(const char *s, unsigned int base, unsigned long long *p) in _parse_integer()
92 static int _kstrtoull(const char *s, unsigned int base, unsigned long long *res) in _kstrtoull()
128 int kstrtoull(const char *s, unsigned int base, unsigned long long *res) in kstrtoull()
152 int kstrtoll(const char *s, unsigned int base, long long *res) in kstrtoll()
177 int _kstrtoul(const char *s, unsigned int base, unsigned long *res) in _kstrtoul()
193 int _kstrtol(const char *s, unsigned int base, long *res) in _kstrtol()
224 int kstrtouint(const char *s, unsigned int base, unsigned int *res) in kstrtouint()
255 int kstrtoint(const char *s, unsigned int base, int *res) in kstrtoint()
[all …]
Dseq_buf.c28 static bool seq_buf_can_fit(struct seq_buf *s, size_t len) in seq_buf_can_fit()
40 int seq_buf_print_seq(struct seq_file *m, struct seq_buf *s) in seq_buf_print_seq()
57 int seq_buf_vprintf(struct seq_buf *s, const char *fmt, va_list args) in seq_buf_vprintf()
83 int seq_buf_printf(struct seq_buf *s, const char *fmt, ...) in seq_buf_printf()
113 int seq_buf_bprintf(struct seq_buf *s, const char *fmt, const u32 *binary) in seq_buf_bprintf()
141 int seq_buf_puts(struct seq_buf *s, const char *str) in seq_buf_puts()
169 int seq_buf_putc(struct seq_buf *s, unsigned char c) in seq_buf_putc()
193 int seq_buf_putmem(struct seq_buf *s, const void *mem, unsigned int len) in seq_buf_putmem()
221 int seq_buf_putmem_hex(struct seq_buf *s, const void *mem,
269 int seq_buf_path(struct seq_buf *s, const struct path *path, const char *esc)
[all …]
Dparser.c26 static int match_one(char *s, const char *p, substring_t args[]) in match_one()
107 int match_token(char *s, const match_table_t table, substring_t args[]) in match_token()
128 static int match_number(substring_t *s, int *result, int base) in match_number()
164 static int match_u64int(substring_t *s, u64 *result, int base) in match_u64int()
193 int match_int(substring_t *s, int *result) in match_int()
210 int match_u64(substring_t *s, u64 *result) in match_u64()
225 int match_octal(substring_t *s, int *result) in match_octal()
240 int match_hex(substring_t *s, int *result) in match_hex()
259 const char *s = str; in match_wildcard() local
328 char *match_strdup(const substring_t *s) in match_strdup()
Dstring.c427 char *strchr(const char *s, int c) in strchr()
446 char *strchrnul(const char *s, int c) in strchrnul()
461 char *strrchr(const char *s, int c) in strrchr()
480 char *strnchr(const char *s, size_t count, int c) in strnchr()
512 char *strim(char *s) in strim()
535 size_t strlen(const char *s) in strlen()
552 size_t strnlen(const char *s, size_t count) in strnlen()
569 size_t strspn(const char *s, const char *accept) in strspn()
596 size_t strcspn(const char *s, const char *reject) in strcspn()
647 char *strsep(char **s, const char *ct) in strsep()
[all …]
/linux-4.19.296/drivers/misc/genwqe/
Dcard_debugfs.c49 static void dbg_uidn_show(struct seq_file *s, struct genwqe_reg *regs, in dbg_uidn_show()
64 static int curr_dbg_uidn_show(struct seq_file *s, void *unused, int uid) in curr_dbg_uidn_show()
90 static int genwqe_curr_dbg_uid0_show(struct seq_file *s, void *unused) in genwqe_curr_dbg_uid0_show()
97 static int genwqe_curr_dbg_uid1_show(struct seq_file *s, void *unused) in genwqe_curr_dbg_uid1_show()
104 static int genwqe_curr_dbg_uid2_show(struct seq_file *s, void *unused) in genwqe_curr_dbg_uid2_show()
111 static int prev_dbg_uidn_show(struct seq_file *s, void *unused, int uid) in prev_dbg_uidn_show()
119 static int genwqe_prev_dbg_uid0_show(struct seq_file *s, void *unused) in genwqe_prev_dbg_uid0_show()
126 static int genwqe_prev_dbg_uid1_show(struct seq_file *s, void *unused) in genwqe_prev_dbg_uid1_show()
133 static int genwqe_prev_dbg_uid2_show(struct seq_file *s, void *unused) in genwqe_prev_dbg_uid2_show()
140 static int genwqe_curr_regs_show(struct seq_file *s, void *unused) in genwqe_curr_regs_show()
[all …]
/linux-4.19.296/lib/zlib_deflate/
Ddeflate.c142 #define UPDATE_HASH(s,h,c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask) argument
153 #define INSERT_STRING(s, str, match_head) \ argument
162 #define CLEAR_HASH(s) \ argument
176 deflate_state *s; in zlib_deflateInit2() local
257 deflate_state *s; in zlib_deflateReset() local
289 deflate_state *s, in putShortMSB()
307 deflate_state *s = (deflate_state *) strm->state; in flush_pending() local
333 deflate_state *s; in zlib_deflate() local
470 deflate_state *s; in zlib_deflateEnd() local
520 deflate_state *s in lm_init()
[all …]
Ddeftree.c156 # define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len) argument
160 # define send_code(s, c, tree) \ argument
180 deflate_state *s, in send_bits()
205 #define send_bits(s, value, length) \ argument
296 deflate_state *s in zlib_tr_init()
327 deflate_state *s in init_block()
350 #define pqremove(s, tree, top) \ argument
372 deflate_state *s, in pqdownheap()
408 deflate_state *s, in gen_bitlen()
539 deflate_state *s, in build_tree()
[all …]
/linux-4.19.296/fs/hpfs/
Dalloc.c12 static void hpfs_claim_alloc(struct super_block *s, secno sec) in hpfs_claim_alloc()
25 static void hpfs_claim_free(struct super_block *s, secno sec) in hpfs_claim_free()
38 static void hpfs_claim_dirband_alloc(struct super_block *s, secno sec) in hpfs_claim_dirband_alloc()
51 static void hpfs_claim_dirband_free(struct super_block *s, secno sec) in hpfs_claim_dirband_free()
69 static int chk_if_allocated(struct super_block *s, secno sec, char *msg) in chk_if_allocated()
100 int hpfs_chk_sectors(struct super_block *s, secno start, int len, char *msg) in hpfs_chk_sectors()
115 static secno alloc_in_bmp(struct super_block *s, secno near, unsigned n, unsigned forward) in alloc_in_bmp()
203 secno hpfs_alloc_sector(struct super_block *s, secno near, unsigned n, int forward) in hpfs_alloc_sector()
277 static secno alloc_in_dirband(struct super_block *s, secno near) in alloc_in_dirband()
296 int hpfs_alloc_if_possible(struct super_block *s, secno sec) in hpfs_alloc_if_possible()
[all …]
Dmap.c12 __le32 *hpfs_map_dnode_bitmap(struct super_block *s, struct quad_buffer_head *qbh) in hpfs_map_dnode_bitmap()
17 __le32 *hpfs_map_bitmap(struct super_block *s, unsigned bmp_block, in hpfs_map_bitmap()
37 void hpfs_prefetch_bitmap(struct super_block *s, unsigned bmp_block) in hpfs_prefetch_bitmap()
57 unsigned char *hpfs_load_code_page(struct super_block *s, secno cps) in hpfs_load_code_page()
112 __le32 *hpfs_load_bitmap_directory(struct super_block *s, secno bmp) in hpfs_load_bitmap_directory()
134 void hpfs_load_hotfix_map(struct super_block *s, struct hpfs_spare_block *spareblock) in hpfs_load_hotfix_map()
164 struct fnode *hpfs_map_fnode(struct super_block *s, ino_t ino, struct buffer_head **bhp) in hpfs_map_fnode()
221 struct anode *hpfs_map_anode(struct super_block *s, anode_secno ano, struct buffer_head **bhp) in hpfs_map_anode()
256 struct dnode *hpfs_map_dnode(struct super_block *s, unsigned secno, in hpfs_map_dnode()
322 dnode_secno hpfs_fnode_dno(struct super_block *s, ino_t ino) in hpfs_fnode_dno()
Dbuffer.c14 secno hpfs_search_hotfix_map(struct super_block *s, secno sec) in hpfs_search_hotfix_map()
26 unsigned hpfs_search_hotfix_map_for_range(struct super_block *s, secno sec, unsigned n) in hpfs_search_hotfix_map_for_range()
38 void hpfs_prefetch_sectors(struct super_block *s, unsigned secno, int n) in hpfs_prefetch_sectors()
71 void *hpfs_map_sector(struct super_block *s, unsigned secno, struct buffer_head **bhp, in hpfs_map_sector()
93 void *hpfs_get_sector(struct super_block *s, unsigned secno, struct buffer_head **bhp) in hpfs_get_sector()
114 void *hpfs_map_4sectors(struct super_block *s, unsigned secno, struct quad_buffer_head *qbh, in hpfs_map_4sectors()
168 void *hpfs_get_4sectors(struct super_block *s, unsigned secno, in hpfs_get_4sectors()
/linux-4.19.296/drivers/char/mwave/
Dmwavedd.h74 #define PRINTK_1(f,s) \ argument
79 #define PRINTK_2(f,s,v1) \ argument
84 #define PRINTK_3(f,s,v1,v2) \ argument
89 #define PRINTK_4(f,s,v1,v2,v3) \ argument
94 #define PRINTK_5(f,s,v1,v2,v3,v4) \ argument
99 #define PRINTK_6(f,s,v1,v2,v3,v4,v5) \ argument
104 #define PRINTK_7(f,s,v1,v2,v3,v4,v5,v6) \ argument
109 #define PRINTK_8(f,s,v1,v2,v3,v4,v5,v6,v7) \ argument
115 #define PRINTK_1(f,s) argument
116 #define PRINTK_2(f,s,v1) argument
[all …]
/linux-4.19.296/drivers/media/dvb-frontends/
Dsp2.c26 static int sp2_read_i2c(struct sp2 *s, u8 reg, u8 *buf, int len) in sp2_read_i2c()
62 static int sp2_write_i2c(struct sp2 *s, u8 reg, u8 *buf, int len) in sp2_write_i2c()
104 struct sp2 *s = en50221->data; in sp2_ci_op_cam() local
185 struct sp2 *s = en50221->data; in sp2_ci_slot_reset() local
217 struct sp2 *s = en50221->data; in sp2_ci_slot_shutdown() local
227 struct sp2 *s = en50221->data; in sp2_ci_slot_ts_enable() local
245 struct sp2 *s = en50221->data; in sp2_ci_poll_slot_status() local
272 static int sp2_init(struct sp2 *s) in sp2_init()
356 struct sp2 *s; in sp2_exit() local
379 struct sp2 *s; in sp2_probe() local
[all …]
/linux-4.19.296/include/linux/mtd/
Dcfi_endian.h36 #define cfi_default(s) ((s)?:CFI_DEFAULT_ENDIAN) argument
37 #define cfi_be(s) (cfi_default(s) == CFI_BIG_ENDIAN) argument
38 #define cfi_le(s) (cfi_default(s) == CFI_LITTLE_ENDIAN) argument
39 #define cfi_host(s) (cfi_default(s) == CFI_HOST_ENDIAN) argument
50 #define _cpu_to_cfi(w, s, x) (cfi_host(s)?(x):_swap_to_cfi(w, s, x)) argument
51 #define _cfi_to_cpu(w, s, x) (cfi_host(s)?(x):_swap_to_cpu(w, s, x)) argument
52 #define _swap_to_cfi(w, s, x) (cfi_be(s)?cpu_to_be##w(x):cpu_to_le##w(x)) argument
53 #define _swap_to_cpu(w, s, x) (cfi_be(s)?be##w##_to_cpu(x):le##w##_to_cpu(x)) argument
/linux-4.19.296/fs/reiserfs/
Dobjectid.c11 #define objectid_map(s,rs) (old_format_only (s) ? \ argument
17 static void check_objectid_map(struct super_block *s, __le32 * map) in check_objectid_map()
27 static void check_objectid_map(struct super_block *s, __le32 * map) in check_objectid_map()
51 struct super_block *s = th->t_super; in reiserfs_get_unused_objectid() local
100 struct super_block *s = th->t_super; in reiserfs_release_objectid() local
179 int reiserfs_convert_objectid_map_v1(struct super_block *s) in reiserfs_convert_objectid_map_v1()
Dsuper.c67 static int reiserfs_sync_fs(struct super_block *s, int wait) in reiserfs_sync_fs()
87 struct super_block *s; in flush_old_commits() local
115 void reiserfs_schedule_old_flush(struct super_block *s) in reiserfs_schedule_old_flush()
136 void reiserfs_cancel_old_flush(struct super_block *s) in reiserfs_cancel_old_flush()
147 static int reiserfs_freeze(struct super_block *s) in reiserfs_freeze()
170 static int reiserfs_unfreeze(struct super_block *s) in reiserfs_unfreeze()
193 static int remove_save_link_only(struct super_block *s, in remove_save_link_only()
225 static int finish_unfinished(struct super_block *s) in finish_unfinished()
550 static void reiserfs_kill_sb(struct super_block *s) in reiserfs_kill_sb()
576 static void reiserfs_quota_off_umount(struct super_block *s) in reiserfs_quota_off_umount()
[all …]
Dbitmap.c20 #define SB_ALLOC_OPTS(s) (REISERFS_SB(s)->s_alloc_options.bits) argument
36 #define concentrating_formatted_nodes(s) test_bit(_ALLOC_concentrating_formatted_nodes, &SB_ALLOC_… argument
37 #define displacing_large_files(s) test_bit(_ALLOC_displacing_large_files, &SB_ALLOC_OPTS(s)) argument
38 #define displacing_new_packing_localities(s) test_bit(_ALLOC_displacing_new_packing_localities, &S… argument
45 #define TEST_OPTION(optname, s) \ argument
48 static inline void get_bit_address(struct super_block *s, in get_bit_address()
62 int is_reusable(struct super_block *s, b_blocknr_t block, int bit_value) in is_reusable()
120 static inline int is_block_in_journal(struct super_block *s, unsigned int bmap, in is_block_in_journal()
147 struct super_block *s = th->t_super; in scan_bitmap_block() local
274 static int bmap_hash_id(struct super_block *s, u32 id) in bmap_hash_id()
[all …]
Dlock.c22 void reiserfs_write_lock(struct super_block *s) in reiserfs_write_lock()
35 void reiserfs_write_unlock(struct super_block *s) in reiserfs_write_unlock()
52 int __must_check reiserfs_write_unlock_nested(struct super_block *s) in reiserfs_write_unlock_nested()
70 void reiserfs_write_lock_nested(struct super_block *s, int depth) in reiserfs_write_lock_nested()
/linux-4.19.296/lib/xz/
Dxz_dec_stream.c157 static bool fill_temp(struct xz_dec *s, struct xz_buf *b) in fill_temp()
175 static enum xz_ret dec_vli(struct xz_dec *s, const uint8_t *in, in dec_vli()
218 static enum xz_ret dec_block(struct xz_dec *s, struct xz_buf *b) in dec_block()
281 static void index_update(struct xz_dec *s, const struct xz_buf *b) in index_update()
296 static enum xz_ret dec_index(struct xz_dec *s, struct xz_buf *b) in dec_index()
346 static enum xz_ret crc32_validate(struct xz_dec *s, struct xz_buf *b) in crc32_validate()
370 static bool check_skip(struct xz_dec *s, struct xz_buf *b) in check_skip()
387 static enum xz_ret dec_stream_header(struct xz_dec *s) in dec_stream_header()
422 static enum xz_ret dec_stream_footer(struct xz_dec *s) in dec_stream_footer()
449 static enum xz_ret dec_block_header(struct xz_dec *s) in dec_block_header()
[all …]
Dxz_dec_bcj.c88 static size_t bcj_x86(struct xz_dec_bcj *s, uint8_t *buf, size_t size) in bcj_x86()
160 static size_t bcj_powerpc(struct xz_dec_bcj *s, uint8_t *buf, size_t size) in bcj_powerpc()
181 static size_t bcj_ia64(struct xz_dec_bcj *s, uint8_t *buf, size_t size) in bcj_ia64()
265 static size_t bcj_arm(struct xz_dec_bcj *s, uint8_t *buf, size_t size) in bcj_arm()
288 static size_t bcj_armthumb(struct xz_dec_bcj *s, uint8_t *buf, size_t size) in bcj_armthumb()
316 static size_t bcj_sparc(struct xz_dec_bcj *s, uint8_t *buf, size_t size) in bcj_sparc()
345 static void bcj_apply(struct xz_dec_bcj *s, in bcj_apply()
399 static void bcj_flush(struct xz_dec_bcj *s, struct xz_buf *b) in bcj_flush()
417 XZ_EXTERN enum xz_ret xz_dec_bcj_run(struct xz_dec_bcj *s, in xz_dec_bcj_run()
529 struct xz_dec_bcj *s = kmalloc(sizeof(*s), GFP_KERNEL); in xz_dec_bcj_create() local
[all …]
/linux-4.19.296/fs/jffs2/
Dsummary.c63 static int jffs2_sum_add_mem(struct jffs2_summary *s, union jffs2_sum_mem *item) in jffs2_sum_add_mem()
108 int jffs2_sum_add_padding_mem(struct jffs2_summary *s, uint32_t size) in jffs2_sum_add_padding_mem()
115 int jffs2_sum_add_inode_mem(struct jffs2_summary *s, struct jffs2_raw_inode *ri, in jffs2_sum_add_inode_mem()
133 int jffs2_sum_add_dirent_mem(struct jffs2_summary *s, struct jffs2_raw_dirent *rd, in jffs2_sum_add_dirent_mem()
158 int jffs2_sum_add_xattr_mem(struct jffs2_summary *s, struct jffs2_raw_xattr *rx, uint32_t ofs) in jffs2_sum_add_xattr_mem()
176 int jffs2_sum_add_xref_mem(struct jffs2_summary *s, struct jffs2_raw_xref *rr, uint32_t ofs) in jffs2_sum_add_xref_mem()
193 static void jffs2_sum_clean_collected(struct jffs2_summary *s) in jffs2_sum_clean_collected()
210 void jffs2_sum_reset_collected(struct jffs2_summary *s) in jffs2_sum_reset_collected()
217 void jffs2_sum_disable_collecting(struct jffs2_summary *s) in jffs2_sum_disable_collecting()
224 int jffs2_sum_is_disabled(struct jffs2_summary *s) in jffs2_sum_is_disabled()
[all …]
/linux-4.19.296/drivers/isdn/i4l/
Disdn_audio.c302 isdn_audio_get_bits(adpcm_state *s, unsigned char **in, int *len) in isdn_audio_get_bits()
315 isdn_audio_put_bits(int data, int nbits, adpcm_state *s, in isdn_audio_put_bits()
329 isdn_audio_adpcm_init(adpcm_state *s, int nbits) in isdn_audio_adpcm_init()
344 isdn_audio_dtmf_init(dtmf_state *s) in isdn_audio_dtmf_init()
361 isdn_audio_adpcm2xlaw(adpcm_state *s, int fmt, unsigned char *in, in isdn_audio_adpcm2xlaw()
396 isdn_audio_xlaw2adpcm(adpcm_state *s, int fmt, unsigned char *in, in isdn_audio_xlaw2adpcm()
499 dtmf_state *s; in isdn_audio_eval_dtmf() local
595 dtmf_state *s = info->dtmf_state; in isdn_audio_calc_dtmf() local
622 isdn_audio_silence_init(silence_state *s) in isdn_audio_silence_init()
636 silence_state *s = info->silence_state; in isdn_audio_calc_silence() local
[all …]
/linux-4.19.296/fs/squashfs/
Dsquashfs.h24 #define TRACE(s, args...) pr_debug("SQUASHFS: "s, ## args) argument
26 #define ERROR(s, args...) pr_err("SQUASHFS error: "s, ## args) argument
28 #define WARNING(s, args...) pr_warn("SQUASHFS: "s, ## args) argument

12345678910>>...22