Home
last modified time | relevance | path

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

12345678910>>...103

/linux/include/linux/
A Dseqlock.h60 # define seqcount_init(s) \ argument
271 #define __read_seqcount_begin(s) \ argument
296 #define read_seqcount_begin(s) \ argument
313 #define raw_read_seqcount(s) \ argument
338 #define raw_seqcount_begin(s) \ argument
382 #define read_seqcount_retry(s, start) \ argument
397 #define raw_write_seqcount_begin(s) \ argument
418 #define raw_write_seqcount_end(s) \ argument
468 #define write_seqcount_begin(s) \ argument
490 #define write_seqcount_end(s) \ argument
[all …]
A Dtrace_seq.h31 trace_seq_init(struct trace_seq *s) in trace_seq_init()
51 static inline int trace_seq_used(struct trace_seq *s) in trace_seq_used()
66 trace_seq_buffer_ptr(struct trace_seq *s) in trace_seq_buffer_ptr()
78 static inline bool trace_seq_has_overflowed(struct trace_seq *s) in trace_seq_has_overflowed()
113 void trace_seq_printf(struct trace_seq *s, const char *fmt, ...) in trace_seq_printf()
117 trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary) in trace_seq_bprintf()
122 trace_seq_bitmask(struct trace_seq *s, const unsigned long *maskp, in trace_seq_bitmask()
127 static inline int trace_print_seq(struct seq_file *m, struct trace_seq *s) in trace_print_seq()
136 static inline void trace_seq_puts(struct trace_seq *s, const char *str) in trace_seq_puts()
139 static inline void trace_seq_putc(struct trace_seq *s, unsigned char c) in trace_seq_putc()
[all …]
A Dseq_buf.h33 static inline void seq_buf_clear(struct seq_buf *s) in seq_buf_clear()
41 seq_buf_init(struct seq_buf *s, char *buf, unsigned int size) in seq_buf_init()
53 seq_buf_has_overflowed(struct seq_buf *s) in seq_buf_has_overflowed()
59 seq_buf_set_overflow(struct seq_buf *s) in seq_buf_set_overflow()
68 seq_buf_buffer_left(struct seq_buf *s) in seq_buf_buffer_left()
77 static inline unsigned int seq_buf_used(struct seq_buf *s) in seq_buf_used()
98 static inline const char *seq_buf_str(struct seq_buf *s) in seq_buf_str()
119 static inline size_t seq_buf_get_buf(struct seq_buf *s, char **bufp) in seq_buf_get_buf()
141 static inline void seq_buf_commit(struct seq_buf *s, int num) in seq_buf_commit()
A Dkstrtox.h30 static inline int __must_check kstrtoul(const char *s, unsigned int base, unsigned long *res) in kstrtoul()
58 static inline int __must_check kstrtol(const char *s, unsigned int base, long *res) in kstrtol()
74 static inline int __must_check kstrtou64(const char *s, unsigned int base, u64 *res) in kstrtou64()
79 static inline int __must_check kstrtos64(const char *s, unsigned int base, s64 *res) in kstrtos64()
84 static inline int __must_check kstrtou32(const char *s, unsigned int base, u32 *res) in kstrtou32()
89 static inline int __must_check kstrtos32(const char *s, unsigned int base, s32 *res) in kstrtos32()
112 static inline int __must_check kstrtou64_from_user(const char __user *s, size_t count, unsigned int… in kstrtou64_from_user()
117 static inline int __must_check kstrtos64_from_user(const char __user *s, size_t count, unsigned int… in kstrtos64_from_user()
122 static inline int __must_check kstrtou32_from_user(const char __user *s, size_t count, unsigned int… in kstrtou32_from_user()
127 static inline int __must_check kstrtos32_from_user(const char __user *s, size_t count, unsigned int… in kstrtos32_from_user()
/linux/mm/
A Dslub.c2189 struct kmem_cache *s; in memcg_slab_post_charge() local
2460 struct kmem_cache *s; in init_freelist_randomization() local
3276 struct kmem_cache *s; member
3287 struct kmem_cache *s; in flush_cpu_slab() local
3355 struct kmem_cache *s; in slub_cpu_dead() local
4248 struct kmem_cache *s; in __do_kmalloc_node() local
4614 struct kmem_cache *s; in slab_free_after_rcu_debug() local
4711 struct kmem_cache *s; in kfree() local
4736 struct kmem_cache *s; member
5617 struct kmem_cache *s; in __check_heap_object() local
[all …]
/linux/tools/testing/selftests/kvm/lib/
A Dsparsebit.c396 bool sparsebit_all_set(const struct sparsebit *s) in sparsebit_all_set()
940 struct sparsebit *s; in sparsebit_alloc() local
957 struct sparsebit *s = *sbitp; in sparsebit_free() local
1008 bool sparsebit_is_clear(const struct sparsebit *s, in sparsebit_is_clear()
1050 bool sparsebit_any_set(const struct sparsebit *s) in sparsebit_any_set()
1073 bool sparsebit_all_clear(const struct sparsebit *s) in sparsebit_all_clear()
1370 void sparsebit_set_num(struct sparsebit *s, in sparsebit_set_num()
1452 void sparsebit_clear_num(struct sparsebit *s, in sparsebit_clear_num()
1533 void sparsebit_set_all(struct sparsebit *s) in sparsebit_set_all()
1541 void sparsebit_clear_all(struct sparsebit *s) in sparsebit_clear_all()
[all …]
/linux/kernel/trace/
A Dtrace_seq.c28 #define TRACE_SEQ_BUF_LEFT(s) seq_buf_buffer_left(&(s)->seq) argument
33 static inline void __trace_seq_init(struct trace_seq *s) in __trace_seq_init()
48 int trace_print_seq(struct seq_file *m, struct trace_seq *s) in trace_print_seq()
78 void trace_seq_printf(struct trace_seq *s, const char *fmt, ...) in trace_seq_printf()
108 void trace_seq_bitmask(struct trace_seq *s, const unsigned long *maskp, in trace_seq_bitmask()
203 void trace_seq_puts(struct trace_seq *s, const char *str) in trace_seq_puts()
231 void trace_seq_putc(struct trace_seq *s, unsigned char c) in trace_seq_putc()
283 void trace_seq_putmem_hex(struct trace_seq *s, const void *mem, in trace_seq_putmem_hex()
322 int trace_seq_path(struct trace_seq *s, const struct path *path) in trace_seq_path()
379 int trace_seq_hex_dump(struct trace_seq *s, const char *prefix_str, in trace_seq_hex_dump()
[all …]
/linux/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
A Dramseq.h6 #define ram_init(s,p) hwsq_init(&(s)->base, (p)) argument
7 #define ram_exec(s,e) hwsq_exec(&(s)->base, (e)) argument
8 #define ram_have(s,r) ((s)->r_##r.addr != 0x000000) argument
9 #define ram_rd32(s,r) hwsq_rd32(&(s)->base, &(s)->r_##r) argument
10 #define ram_wr32(s,r,d) hwsq_wr32(&(s)->base, &(s)->r_##r, (d)) argument
11 #define ram_nuke(s,r) hwsq_nuke(&(s)->base, &(s)->r_##r) argument
12 #define ram_mask(s,r,m,d) hwsq_mask(&(s)->base, &(s)->r_##r, (m), (d)) argument
13 #define ram_setf(s,f,d) hwsq_setf(&(s)->base, (f), (d)) argument
14 #define ram_wait(s,f,d) hwsq_wait(&(s)->base, (f), (d)) argument
15 #define ram_wait_vblank(s) hwsq_wait_vblank(&(s)->base) argument
[all …]
/linux/drivers/media/pci/ivtv/
A Divtv-irq.c246 static void dma_post(struct ivtv_stream *s) in dma_post()
447 static void ivtv_dma_enc_start(struct ivtv_stream *s) in ivtv_dma_enc_start()
508 static void ivtv_dma_dec_start(struct ivtv_stream *s) in ivtv_dma_dec_start()
529 struct ivtv_stream *s = NULL; in ivtv_irq_dma_read() local
595 struct ivtv_stream *s; in ivtv_irq_enc_dma_complete() local
643 struct ivtv_stream *s; in ivtv_irq_enc_pio_complete() local
745 struct ivtv_stream *s; in ivtv_irq_enc_start_cap() local
765 struct ivtv_stream *s; in ivtv_irq_enc_vbi_cap() local
789 struct ivtv_stream *s; in ivtv_irq_dec_data_req() local
1022 struct ivtv_stream *s = &itv->streams[idx]; in ivtv_irq_handler() local
[all …]
A Divtv-queue.h18 static inline int ivtv_might_use_pio(struct ivtv_stream *s) in ivtv_might_use_pio()
23 static inline int ivtv_use_pio(struct ivtv_stream *s) in ivtv_use_pio()
31 static inline int ivtv_might_use_dma(struct ivtv_stream *s) in ivtv_might_use_dma()
36 static inline int ivtv_use_dma(struct ivtv_stream *s) in ivtv_use_dma()
41 static inline void ivtv_buf_sync_for_cpu(struct ivtv_stream *s, struct ivtv_buffer *buf) in ivtv_buf_sync_for_cpu()
48 static inline void ivtv_buf_sync_for_device(struct ivtv_stream *s, struct ivtv_buffer *buf) in ivtv_buf_sync_for_device()
71 static inline void ivtv_stream_sync_for_cpu(struct ivtv_stream *s) in ivtv_stream_sync_for_cpu()
79 static inline void ivtv_stream_sync_for_device(struct ivtv_stream *s) in ivtv_stream_sync_for_device()
/linux/drivers/usb/host/
A Docteon-hcd.h157 } s; member
227 } s; member
316 } s; member
546 } s; member
573 } s; member
626 } s; member
754 } s; member
778 } s; member
824 } s; member
913 } s; member
[all …]
/linux/lib/
A Dkstrtox.c26 const char *_parse_integer_fixup_radix(const char *s, unsigned int *base) in _parse_integer_fixup_radix()
156 int kstrtoll(const char *s, unsigned int base, long long *res) in kstrtoll()
181 int _kstrtoul(const char *s, unsigned int base, unsigned long *res) in _kstrtoul()
197 int _kstrtol(const char *s, unsigned int base, long *res) in _kstrtol()
228 int kstrtouint(const char *s, unsigned int base, unsigned int *res) in kstrtouint()
259 int kstrtoint(const char *s, unsigned int base, int *res) in kstrtoint()
275 int kstrtou16(const char *s, unsigned int base, u16 *res) in kstrtou16()
291 int kstrtos16(const char *s, unsigned int base, s16 *res) in kstrtos16()
307 int kstrtou8(const char *s, unsigned int base, u8 *res) in kstrtou8()
323 int kstrtos8(const char *s, unsigned int base, s8 *res) in kstrtos8()
[all …]
/linux/drivers/media/pci/cobalt/
A Dcobalt-v4l2.c38 struct cobalt_stream *s = q->drv_priv; in cobalt_queue_setup() local
54 struct cobalt_stream *s = vb->vb2_queue->drv_priv; in cobalt_buf_init() local
90 struct cobalt_stream *s = vb->vb2_queue->drv_priv; in cobalt_buf_cleanup() local
124 struct cobalt_stream *s = q->drv_priv; in cobalt_buf_queue() local
279 struct cobalt_stream *s = q->drv_priv; in cobalt_start_streaming() local
386 struct cobalt_stream *s = q->drv_priv; in cobalt_stop_streaming() local
455 struct cobalt_stream *s = video_drvdata(file); in cobalt_g_register() local
464 struct cobalt_stream *s = video_drvdata(file); in cobalt_s_register() local
475 struct cobalt_stream *s = video_drvdata(file); in cobalt_querycap() local
569 struct cobalt_stream *s = video_drvdata(file); in cobalt_log_status() local
[all …]
/linux/arch/x86/kvm/
A Di8259.c44 static void pic_lock(struct kvm_pic *s) in pic_lock()
50 static void pic_unlock(struct kvm_pic *s) in pic_unlock()
181 void kvm_pic_update_irq(struct kvm_pic *s) in kvm_pic_update_irq()
239 struct kvm_pic *s = kvm->arch.vpic; in kvm_pic_read_irq() local
309 struct kvm_kpic_state *s = opaque; in pic_ioport_write() local
427 struct kvm_kpic_state *s = opaque; in pic_ioport_read() local
446 struct kvm_kpic_state *s = opaque; in elcr_ioport_write() local
452 struct kvm_kpic_state *s = opaque; in elcr_ioport_read() local
490 static int picdev_read(struct kvm_pic *s, in picdev_read()
568 struct kvm_pic *s = kvm->arch.vpic; in pic_irq_request() local
[all …]
/linux/net/bluetooth/bnep/
A Dcore.c50 struct bnep_session *s; in __bnep_get_session() local
61 static void __bnep_link_session(struct bnep_session *s) in __bnep_link_session()
66 static void __bnep_unlink_session(struct bnep_session *s) in __bnep_unlink_session()
71 static int bnep_send(struct bnep_session *s, void *data, size_t len) in bnep_send()
79 static int bnep_send_rsp(struct bnep_session *s, u8 ctrl, u16 resp) in bnep_send_rsp()
298 static int bnep_rx_frame(struct bnep_session *s, struct sk_buff *skb) in bnep_rx_frame()
481 struct bnep_session *s = arg; in bnep_session() local
561 struct bnep_session *s, *ss; in bnep_add_connection() local
654 struct bnep_session *s; in bnep_del_connection() local
689 struct bnep_session *s; in bnep_get_connlist() local
[all …]
/linux/arch/mips/include/asm/octeon/
A Dcvmx-pciercx-defs.h82 } s; member
93 } s; member
104 } s; member
117 } s; member
124 } s; member
131 } s; member
157 } s; member
176 } s; member
203 } s; member
232 } s; member
[all …]
/linux/drivers/misc/genwqe/
A Dcard_debugfs.c69 static int curr_dbg_uid0_show(struct seq_file *s, void *unused) in curr_dbg_uid0_show()
76 static int curr_dbg_uid1_show(struct seq_file *s, void *unused) in curr_dbg_uid1_show()
83 static int curr_dbg_uid2_show(struct seq_file *s, void *unused) in curr_dbg_uid2_show()
98 static int prev_dbg_uid0_show(struct seq_file *s, void *unused) in prev_dbg_uid0_show()
105 static int prev_dbg_uid1_show(struct seq_file *s, void *unused) in prev_dbg_uid1_show()
112 static int prev_dbg_uid2_show(struct seq_file *s, void *unused) in prev_dbg_uid2_show()
119 static int curr_regs_show(struct seq_file *s, void *unused) in curr_regs_show()
148 static int prev_regs_show(struct seq_file *s, void *unused) in prev_regs_show()
172 static int jtimer_show(struct seq_file *s, void *unused) in jtimer_show()
211 static int ddcb_info_show(struct seq_file *s, void *unused) in ddcb_info_show()
[all …]
/linux/drivers/tty/serial/
A Dmax3100.c319 struct max3100_port *s = dev_id; in max3100_irq() local
329 struct max3100_port *s = to_max3100_port(port); in max3100_enable_ms() local
337 struct max3100_port *s = to_max3100_port(port); in max3100_start_tx() local
346 struct max3100_port *s = to_max3100_port(port); in max3100_stop_rx() local
360 struct max3100_port *s = to_max3100_port(port); in max3100_tx_empty() local
371 struct max3100_port *s = to_max3100_port(port); in max3100_get_mctrl() local
383 struct max3100_port *s = to_max3100_port(port); in max3100_set_mctrl() local
409 struct max3100_port *s = to_max3100_port(port); in max3100_set_termios() local
745 struct max3100_port *s = spi_get_drvdata(spi); in max3100_remove() local
777 struct max3100_port *s = dev_get_drvdata(dev); in max3100_suspend() local
[all …]
/linux/net/bluetooth/rfcomm/
A Dcore.c343 struct rfcomm_session *s = d->session; in rfcomm_dlc_unlink() local
373 struct rfcomm_session *s; in __rfcomm_dlc_open() local
507 struct rfcomm_session *s, *s_list; in rfcomm_dlc_close() local
539 struct rfcomm_session *s; in rfcomm_dlc_exists() local
732 struct rfcomm_session *s, *n; in rfcomm_session_get() local
768 struct rfcomm_session *s = NULL; in rfcomm_session_create() local
2017 struct rfcomm_session *s, *n; in rfcomm_process_sessions() local
2054 struct rfcomm_session *s; in rfcomm_add_listener() local
2105 struct rfcomm_session *s, *n; in rfcomm_kill_listener() local
2139 struct rfcomm_session *s; in rfcomm_security_cfm() local
[all …]
/linux/drivers/media/pci/cx18/
A Dcx18-streams.c108 struct cx18_stream *s = vb2_get_drv_priv(vq); in cx18_queue_setup() local
190 struct cx18_stream *s = vb2_get_drv_priv(vq); in cx18_start_streaming() local
216 struct cx18_stream *s = vb2_get_drv_priv(vq); in cx18_stop_streaming() local
238 struct cx18_stream *s = &cx->streams[type]; in cx18_stream_init() local
305 struct cx18_stream *s = &cx->streams[type]; in cx18_prep_dev() local
410 struct cx18_stream *s = &cx->streams[type]; in cx18_reg_dev() local
550 static void cx18_vbi_setup(struct cx18_stream *s) in cx18_vbi_setup()
732 struct cx18_stream *s = in cx18_out_work_handler() local
964 struct cx18_stream *s = &cx->streams[i]; in cx18_stop_all_captures() local
1029 struct cx18_stream *s = &cx->streams[i]; in cx18_find_handle() local
[all …]
/linux/drivers/gpu/drm/nouveau/nvkm/subdev/clk/
A Dseq.h6 #define clk_init(s,p) hwsq_init(&(s)->base, (p)) argument
7 #define clk_exec(s,e) hwsq_exec(&(s)->base, (e)) argument
8 #define clk_have(s,r) ((s)->r_##r.addr != 0x000000) argument
9 #define clk_rd32(s,r) hwsq_rd32(&(s)->base, &(s)->r_##r) argument
10 #define clk_wr32(s,r,d) hwsq_wr32(&(s)->base, &(s)->r_##r, (d)) argument
11 #define clk_mask(s,r,m,d) hwsq_mask(&(s)->base, &(s)->r_##r, (m), (d)) argument
12 #define clk_setf(s,f,d) hwsq_setf(&(s)->base, (f), (d)) argument
13 #define clk_wait(s,f,d) hwsq_wait(&(s)->base, (f), (d)) argument
14 #define clk_nsec(s,n) hwsq_nsec(&(s)->base, (n)) argument
/linux/security/selinux/ss/
A Dsidtab.c35 int sidtab_init(struct sidtab *s) in sidtab_init()
78 int sidtab_set_initial(struct sidtab *s, u32 sid, struct context *context) in sidtab_set_initial()
163 static int sidtab_alloc_roots(struct sidtab *s, u32 level) in sidtab_alloc_roots()
225 static struct sidtab_entry *sidtab_lookup(struct sidtab *s, u32 index) in sidtab_lookup()
258 struct sidtab_entry *sidtab_search_entry(struct sidtab *s, u32 sid) in sidtab_search_entry()
363 static void sidtab_convert_hashtable(struct sidtab *s, u32 count) in sidtab_convert_hashtable()
485 void sidtab_cancel_convert(struct sidtab *s) in sidtab_cancel_convert()
495 void sidtab_freeze_begin(struct sidtab *s, unsigned long *flags) in sidtab_freeze_begin()
502 void sidtab_freeze_end(struct sidtab *s, unsigned long *flags) in sidtab_freeze_end()
541 void sidtab_destroy(struct sidtab *s) in sidtab_destroy()
[all …]
/linux/drivers/pcmcia/
A Dpcmcia_resource.c46 int low, struct pcmcia_socket *s) in pcmcia_find_mem_region()
161 struct pcmcia_socket *s; in pcmcia_access_config() local
226 struct pcmcia_socket *s = p_dev->socket; in pcmcia_map_mem_page() local
255 struct pcmcia_socket *s = p_dev->socket; in pcmcia_fixup_iowidth() local
305 struct pcmcia_socket *s = p_dev->socket; in pcmcia_fixup_vpp() local
349 struct pcmcia_socket *s = p_dev->socket; in pcmcia_release_configuration() local
395 struct pcmcia_socket *s = p_dev->socket; in pcmcia_release_io() local
427 struct pcmcia_socket *s = p_dev->socket; in pcmcia_release_window() local
481 struct pcmcia_socket *s = p_dev->socket; in pcmcia_enable_device() local
625 struct pcmcia_socket *s = p_dev->socket; in pcmcia_request_io() local
[all …]
/linux/drivers/comedi/
A Dcomedi_buf.c53 struct comedi_subdevice *s) in __comedi_buf_free()
140 struct comedi_subdevice *s, in __comedi_buf_alloc()
228 comedi_buf_map_from_subdev_get(struct comedi_subdevice *s) in comedi_buf_map_from_subdev_get()
249 bool comedi_buf_is_mmapped(struct comedi_subdevice *s) in comedi_buf_is_mmapped()
290 void comedi_buf_reset(struct comedi_subdevice *s) in comedi_buf_reset()
339 unsigned int comedi_buf_write_alloc(struct comedi_subdevice *s, in comedi_buf_write_alloc()
429 unsigned int comedi_buf_write_free(struct comedi_subdevice *s, in comedi_buf_write_free()
494 unsigned int comedi_buf_read_alloc(struct comedi_subdevice *s, in comedi_buf_read_alloc()
534 unsigned int comedi_buf_read_free(struct comedi_subdevice *s, in comedi_buf_read_free()
557 static void comedi_buf_memcpy_to(struct comedi_subdevice *s, in comedi_buf_memcpy_to()
[all …]
/linux/kernel/bpf/
A Dpercpu_freelist.c6 int pcpu_freelist_init(struct pcpu_freelist *s) in pcpu_freelist_init()
25 void pcpu_freelist_destroy(struct pcpu_freelist *s) in pcpu_freelist_destroy()
45 static inline bool pcpu_freelist_try_push_extra(struct pcpu_freelist *s, in pcpu_freelist_try_push_extra()
56 static inline void ___pcpu_freelist_push_nmi(struct pcpu_freelist *s, in ___pcpu_freelist_push_nmi()
80 void __pcpu_freelist_push(struct pcpu_freelist *s, in __pcpu_freelist_push()
89 void pcpu_freelist_push(struct pcpu_freelist *s, in pcpu_freelist_push()
99 void pcpu_freelist_populate(struct pcpu_freelist *s, void *buf, u32 elem_size, in pcpu_freelist_populate()
121 static struct pcpu_freelist_node *___pcpu_freelist_pop(struct pcpu_freelist *s) in ___pcpu_freelist_pop()
153 ___pcpu_freelist_pop_nmi(struct pcpu_freelist *s) in ___pcpu_freelist_pop_nmi()
184 struct pcpu_freelist_node *__pcpu_freelist_pop(struct pcpu_freelist *s) in __pcpu_freelist_pop()
[all …]

Completed in 94 milliseconds

12345678910>>...103