Home
last modified time | relevance | path

Searched refs:s (Results 1 – 25 of 5813) sorted by relevance

12345678910>>...233

/linux/arch/arm64/crypto/
H A Dsm4-ce-asm.h12 sm4e b0.4s, v24.4s; \
13 sm4e b0.4s, v25.4s; \
14 sm4e b0.4s, v26.4s; \
15 sm4e b0.4s, v27.4s; \
16 sm4e b0.4s, v28.4s; \
[all...]
/linux/lib/zlib_deflate/
H A Ddeflate.c69 typedef block_state (*compress_func) (deflate_state *s, int flush);
72 static void fill_window (deflate_state *s);
73 static block_state deflate_stored (deflate_state *s, int flush);
74 static block_state deflate_fast (deflate_state *s, int flush);
75 static block_state deflate_slow (deflate_state *s, int flush);
76 static void lm_init (deflate_state *s);
77 static void putShortMSB (deflate_state *s, uInt b);
79 static uInt longest_match (deflate_state *s, IPos cur_match);
82 static void check_match (deflate_state *s, IPos start, IPos match,
160 #define UPDATE_HASH(s, argument
171 INSERT_STRING(s,str,match_head) global() argument
180 CLEAR_HASH(s) global() argument
194 deflate_state *s; zlib_deflateInit2() local
283 deflate_state *s; zlib_deflateReset() local
317 putShortMSB(deflate_state * s,uInt b) putShortMSB() argument
332 deflate_state *s; zlib_deflate() local
477 deflate_state *s; zlib_deflateEnd() local
528 lm_init(deflate_state * s) lm_init() argument
563 longest_match(deflate_state * s,IPos cur_match) longest_match() argument
706 check_match(deflate_state * s,IPos start,IPos match,int length) check_match() argument
727 check_match(s,start,match,length) global() argument
741 fill_window(deflate_state * s) fill_window() argument
834 FLUSH_BLOCK_ONLY(s,eof) global() argument
846 FLUSH_BLOCK(s,eof) global() argument
861 deflate_stored(deflate_state * s,int flush) deflate_stored() argument
920 deflate_fast(deflate_state * s,int flush) deflate_fast() argument
1014 deflate_slow(deflate_state * s,int flush) deflate_slow() argument
[all...]
H A Ddeftree.c132 static void init_block (deflate_state *s);
133 static void pqdownheap (deflate_state *s, ct_data *tree, int k);
134 static void gen_bitlen (deflate_state *s, tree_desc *desc);
136 static void build_tree (deflate_state *s, tree_desc *desc);
137 static void scan_tree (deflate_state *s, ct_data *tree, int max_code);
138 static void send_tree (deflate_state *s, ct_data *tree, int max_code);
139 static int build_bl_tree (deflate_state *s);
140 static void send_all_trees (deflate_state *s, int lcodes, int dcodes,
142 static void compress_block (deflate_state *s, ct_data *ltree,
144 static void set_data_type (deflate_state *s);
[all …]
/linux/arch/m68k/ifpsp060/
H A DMISC34 freal.s : 2.4
36 x_fovfl.s : 2.16
37 x_funfl.s : 2.19
38 x_funsupp.s : 2.27
39 x_effadd.s : 2.21
40 x_foperr.s : 2.9
41 x_fsnan.s : 2.12
42 x_finex.s : 2.14
43 x_fdz.s : 2.5
44 x_fline.s
[all...]
/linux/lib/xz/
H A Dxz_dec_stream.c151 * Fill s->temp by copying data starting from b->in[b->in_pos]. Caller
152 * must have set s->temp.pos to indicate how much data we are supposed
153 * to copy into s->temp.buf. Return true once s->temp.pos has reached
154 * s->temp.size.
156 static bool fill_temp(struct xz_dec *s, struct xz_buf *b) in fill_temp() argument
159 b->in_size - b->in_pos, s->temp.size - s->temp.pos); in fill_temp()
161 memcpy(s->temp.buf + s in fill_temp()
174 dec_vli(struct xz_dec * s,const uint8_t * in,size_t * in_pos,size_t in_size) dec_vli() argument
217 dec_block(struct xz_dec * s,struct xz_buf * b) dec_block() argument
280 index_update(struct xz_dec * s,const struct xz_buf * b) index_update() argument
295 dec_index(struct xz_dec * s,struct xz_buf * b) dec_index() argument
345 crc32_validate(struct xz_dec * s,struct xz_buf * b) crc32_validate() argument
369 check_skip(struct xz_dec * s,struct xz_buf * b) check_skip() argument
386 dec_stream_header(struct xz_dec * s) dec_stream_header() argument
421 dec_stream_footer(struct xz_dec * s) dec_stream_footer() argument
448 dec_block_header(struct xz_dec * s) dec_block_header() argument
548 dec_main(struct xz_dec * s,struct xz_buf * b) dec_main() argument
749 xz_dec_run(struct xz_dec * s,struct xz_buf * b) xz_dec_run() argument
787 struct xz_dec *s = kmalloc(sizeof(*s), GFP_KERNEL); xz_dec_init() local
815 xz_dec_reset(struct xz_dec * s) xz_dec_reset() argument
827 xz_dec_end(struct xz_dec * s) xz_dec_end() argument
[all...]
H A Dxz_dec_lzma2.c157 /* If 1, it's a match. Otherwise it's a single 8-bit literal. */
160 /* If 1, it's a repeated match. The distance is one of rep0 .. rep3. */
447 * has been allocated by us in this file; it's not in dict_flush()
603 static uint16_t *lzma_literal_probs(struct xz_dec_lzma2 *s) in lzma_literal_probs() argument
605 uint32_t prev_byte = dict_get(&s->dict, 0); in lzma_literal_probs()
606 uint32_t low = prev_byte >> (8 - s->lzma.lc); in lzma_literal_probs()
607 uint32_t high = (s->dict.pos & s->lzma.literal_pos_mask) << s in lzma_literal_probs()
612 lzma_literal(struct xz_dec_lzma2 * s) lzma_literal() argument
650 lzma_len(struct xz_dec_lzma2 * s,struct lzma_len_dec * l,uint32_t pos_state) lzma_len() argument
677 lzma_match(struct xz_dec_lzma2 * s,uint32_t pos_state) lzma_match() argument
719 lzma_rep_match(struct xz_dec_lzma2 * s,uint32_t pos_state) lzma_rep_match() argument
753 lzma_main(struct xz_dec_lzma2 * s) lzma_main() argument
798 lzma_reset(struct xz_dec_lzma2 * s) lzma_reset() argument
831 lzma_props(struct xz_dec_lzma2 * s,uint8_t props) lzma_props() argument
878 lzma2_lzma(struct xz_dec_lzma2 * s,struct xz_buf * b) lzma2_lzma() argument
963 xz_dec_lzma2_run(struct xz_dec_lzma2 * s,struct xz_buf * b) xz_dec_lzma2_run() argument
1141 struct xz_dec_lzma2 *s = kmalloc(sizeof(*s), GFP_KERNEL); xz_dec_lzma2_create() local
1162 xz_dec_lzma2_reset(struct xz_dec_lzma2 * s,uint8_t props) xz_dec_lzma2_reset() argument
1198 xz_dec_lzma2_end(struct xz_dec_lzma2 * s) xz_dec_lzma2_end() argument
1209 struct xz_dec_lzma2 s; global() member
1215 struct xz_dec_lzma2 *s = &s_ptr->s; xz_dec_microlzma_run() local
1293 struct xz_dec_microlzma *s; xz_dec_microlzma_alloc() local
1319 xz_dec_microlzma_reset(struct xz_dec_microlzma * s,uint32_t comp_size,uint32_t uncomp_size,int uncomp_size_is_exact) xz_dec_microlzma_reset() argument
1334 xz_dec_microlzma_end(struct xz_dec_microlzma * s) xz_dec_microlzma_end() argument
[all...]
/linux/arch/mips/cavium-octeon/executive/
H A Dcvmx-interrupt-decodes.c60 /* Skipping gmx_rx_int_en.s.reserved_29_63 */ in __cvmx_interrupt_gmxx_rxx_int_en_enable()
61 gmx_rx_int_en.s.hg2cc = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable()
62 gmx_rx_int_en.s.hg2fld = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable()
63 gmx_rx_int_en.s.undat = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable()
64 gmx_rx_int_en.s.uneop = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable()
65 gmx_rx_int_en.s.unsop = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable()
66 gmx_rx_int_en.s.bad_term = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable()
67 gmx_rx_int_en.s.bad_seq = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable()
68 gmx_rx_int_en.s.rem_fault = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable()
69 gmx_rx_int_en.s in __cvmx_interrupt_gmxx_rxx_int_en_enable()
[all...]
/linux/drivers/media/pci/tw5864/
H A Dtw5864-h264.c31 static void bs_init(struct bs *s, void *buf, int size) in bs_init() argument
33 s->buf = buf; in bs_init()
34 s->ptr = buf; in bs_init()
35 s->buf_end = s->ptr + size; in bs_init()
36 s->bits_left = 8; in bs_init()
39 static int bs_len(struct bs *s) in bs_len() argument
41 return s->ptr - s->buf; in bs_len()
44 static void bs_write(struct bs *s, in argument
64 bs_write1(struct bs * s,u32 bit) bs_write1() argument
77 bs_write_ue(struct bs * s,u32 val) bs_write_ue() argument
87 bs_write_se(struct bs * s,int val) bs_write_se() argument
92 bs_rbsp_trailing(struct bs * s) bs_rbsp_trailing() argument
103 struct bs bs, *s; tw5864_h264_gen_sps_rbsp() local
132 struct bs bs, *s; tw5864_h264_gen_pps_rbsp() local
160 struct bs bs, *s; tw5864_h264_gen_slice_head() local
[all...]
/linux/arch/x86/kvm/
H A Di8259.c46 static void pic_lock(struct kvm_pic *s) in pic_lock() argument
47 __acquires(&s->lock) in pic_lock()
49 spin_lock(&s->lock); in pic_lock()
52 static void pic_unlock(struct kvm_pic *s) in pic_unlock() argument
53 __releases(&s->lock) in pic_unlock()
55 bool wakeup = s->wakeup_needed; in pic_unlock()
59 s->wakeup_needed = false; in pic_unlock()
61 spin_unlock(&s->lock); in pic_unlock()
64 kvm_for_each_vcpu(i, vcpu, s->kvm) { in pic_unlock()
74 static void pic_clear_isr(struct kvm_kpic_state *s, in argument
93 pic_set_irq1(struct kvm_kpic_state * s,int irq,int level) pic_set_irq1() argument
123 get_priority(struct kvm_kpic_state * s,int mask) get_priority() argument
137 pic_get_irq(struct kvm_kpic_state * s) pic_get_irq() argument
167 pic_update_irq(struct kvm_pic * s) pic_update_irq() argument
183 kvm_pic_update_irq(struct kvm_pic * s) kvm_pic_update_irq() argument
193 struct kvm_pic *s = kvm->arch.vpic; kvm_pic_set_irq() local
214 pic_intack(struct kvm_kpic_state * s,int irq) pic_intack() argument
234 struct kvm_pic *s = kvm->arch.vpic; kvm_pic_read_irq() local
267 kvm_pic_reset(struct kvm_kpic_state * s) kvm_pic_reset() argument
304 struct kvm_kpic_state *s = opaque; pic_ioport_write() local
395 pic_poll_read(struct kvm_kpic_state * s,u32 addr1) pic_poll_read() argument
422 struct kvm_kpic_state *s = opaque; pic_ioport_read() local
441 struct kvm_kpic_state *s = opaque; elcr_ioport_write() local
447 struct kvm_kpic_state *s = opaque; elcr_ioport_read() local
451 picdev_write(struct kvm_pic * s,gpa_t addr,int len,const void * val) picdev_write() argument
485 picdev_read(struct kvm_pic * s,gpa_t addr,int len,void * val) picdev_read() argument
563 struct kvm_pic *s = kvm->arch.vpic; pic_irq_request() local
587 struct kvm_pic *s; kvm_pic_init() local
[all...]
/linux/drivers/net/hamradio/
H A Dhdlcdrv.c107 #define tenms_to_2flags(s,tenms) ((tenms * s->par.bitrate) / 100 / 16) argument
114 static int hdlc_rx_add_bytes(struct hdlcdrv_state *s, unsigned int bits, in hdlc_rx_add_bytes() argument
119 while (s->hdlcrx.rx_state && num >= 8) { in hdlc_rx_add_bytes()
120 if (s->hdlcrx.len >= sizeof(s->hdlcrx.buffer)) { in hdlc_rx_add_bytes()
121 s->hdlcrx.rx_state = 0; in hdlc_rx_add_bytes()
124 *s->hdlcrx.bp++ = bits >> (32-num); in hdlc_rx_add_bytes()
125 s->hdlcrx.len++; in hdlc_rx_add_bytes()
132 static void hdlc_rx_flag(struct net_device *dev, struct hdlcdrv_state *s) in hdlc_rx_flag() argument
156 hdlcdrv_receiver(struct net_device * dev,struct hdlcdrv_state * s) hdlcdrv_receiver() argument
212 do_kiss_params(struct hdlcdrv_state * s,unsigned char * data,unsigned long len) do_kiss_params() argument
253 hdlcdrv_transmitter(struct net_device * dev,struct hdlcdrv_state * s) hdlcdrv_transmitter() argument
353 start_tx(struct net_device * dev,struct hdlcdrv_state * s) start_tx() argument
365 hdlcdrv_arbitrate(struct net_device * dev,struct hdlcdrv_state * s) hdlcdrv_arbitrate() argument
435 struct hdlcdrv_state *s = netdev_priv(dev); hdlcdrv_open() local
472 struct hdlcdrv_state *s = netdev_priv(dev); hdlcdrv_close() local
490 struct hdlcdrv_state *s = netdev_priv(dev); hdlcdrv_siocdevprivate() local
635 struct hdlcdrv_state *s = netdev_priv(dev); hdlcdrv_setup() local
690 struct hdlcdrv_state *s; hdlcdrv_register() local
724 struct hdlcdrv_state *s = netdev_priv(dev); hdlcdrv_unregister() local
[all...]
/linux/kernel/trace/
H A Dtrace_seq.c28 #define TRACE_SEQ_BUF_LEFT(s) seq_buf_buffer_left(&(s)->seq) argument
31 * trace_seq should work with being initialized with 0s.
33 static inline void __trace_seq_init(struct trace_seq *s) in __trace_seq_init() argument
35 if (unlikely(!s->seq.size)) in __trace_seq_init()
36 trace_seq_init(s); in __trace_seq_init()
42 * @s: the trace_seq descriptor that is the source.
48 int trace_print_seq(struct seq_file *m, struct trace_seq *s) in trace_print_seq() argument
52 __trace_seq_init(s); in trace_print_seq()
54 ret = seq_buf_print_seq(m, &s in trace_print_seq()
78 trace_seq_printf(struct trace_seq * s,const char * fmt,...) trace_seq_printf() argument
108 trace_seq_bitmask(struct trace_seq * s,const unsigned long * maskp,int nmaskbits) trace_seq_bitmask() argument
139 trace_seq_vprintf(struct trace_seq * s,const char * fmt,va_list args) trace_seq_vprintf() argument
173 trace_seq_bprintf(struct trace_seq * s,const char * fmt,const u32 * binary) trace_seq_bprintf() argument
203 trace_seq_puts(struct trace_seq * s,const char * str) trace_seq_puts() argument
231 trace_seq_putc(struct trace_seq * s,unsigned char c) trace_seq_putc() argument
257 trace_seq_putmem(struct trace_seq * s,const void * mem,unsigned int len) trace_seq_putmem() argument
283 trace_seq_putmem_hex(struct trace_seq * s,const void * mem,unsigned int len) trace_seq_putmem_hex() argument
322 trace_seq_path(struct trace_seq * s,const struct path * path) trace_seq_path() argument
368 trace_seq_to_user(struct trace_seq * s,char __user * ubuf,int cnt) trace_seq_to_user() argument
379 trace_seq_hex_dump(struct trace_seq * s,const char * prefix_str,int prefix_type,int rowsize,int groupsize,const void * buf,size_t len,bool ascii) trace_seq_hex_dump() argument
421 trace_seq_acquire(struct trace_seq * s,unsigned int len) trace_seq_acquire() argument
[all...]
/linux/lib/tests/
H A Dseq_buf_kunit.c14 struct seq_buf s; in seq_buf_init_test() local
16 seq_buf_init(&s, buf, sizeof(buf)); in seq_buf_init_test()
18 KUNIT_EXPECT_EQ(test, s.size, 32); in seq_buf_init_test()
19 KUNIT_EXPECT_EQ(test, s.len, 0); in seq_buf_init_test()
20 KUNIT_EXPECT_FALSE(test, seq_buf_has_overflowed(&s)); in seq_buf_init_test()
21 KUNIT_EXPECT_EQ(test, seq_buf_buffer_left(&s), 32); in seq_buf_init_test()
22 KUNIT_EXPECT_EQ(test, seq_buf_used(&s), 0); in seq_buf_init_test()
23 KUNIT_EXPECT_STREQ(test, seq_buf_str(&s), ""); in seq_buf_init_test()
28 DECLARE_SEQ_BUF(s, 24); in seq_buf_declare_test()
30 KUNIT_EXPECT_EQ(test, s in seq_buf_declare_test()
[all...]
/linux/drivers/media/usb/airspy/
H A Dairspy.c154 dev_dbg(_dev, "%02x %02x %02x %02x %02x %02x %02x %02x %s %*ph\n", \
160 static int airspy_ctrl_msg(struct airspy *s, u8 request, u16 value, u16 index, in airspy_ctrl_msg() argument
170 pipe = usb_sndctrlpipe(s->udev, 0); in airspy_ctrl_msg()
181 pipe = usb_rcvctrlpipe(s->udev, 0); in airspy_ctrl_msg()
185 dev_err(s->dev, "Unknown command %02x\n", request); in airspy_ctrl_msg()
192 memcpy(s->buf, data, size); in airspy_ctrl_msg()
194 ret = usb_control_msg(s->udev, pipe, request, requesttype, value, in airspy_ctrl_msg()
195 index, s->buf, size, 1000); in airspy_ctrl_msg()
196 airspy_dbg_usb_control_msg(s->dev, request, requesttype, value, in airspy_ctrl_msg()
197 index, s in airspy_ctrl_msg()
214 airspy_get_next_fill_buf(struct airspy * s) airspy_get_next_fill_buf() argument
231 airspy_convert_stream(struct airspy * s,void * dst,void * src,unsigned int src_len) airspy_convert_stream() argument
269 struct airspy *s = urb->context; airspy_urb_complete() local
315 airspy_kill_urbs(struct airspy * s) airspy_kill_urbs() argument
329 airspy_submit_urbs(struct airspy * s) airspy_submit_urbs() argument
348 airspy_free_stream_bufs(struct airspy * s) airspy_free_stream_bufs() argument
364 airspy_alloc_stream_bufs(struct airspy * s) airspy_alloc_stream_bufs() argument
391 airspy_free_urbs(struct airspy * s) airspy_free_urbs() argument
409 airspy_alloc_urbs(struct airspy * s) airspy_alloc_urbs() argument
441 airspy_cleanup_queued_bufs(struct airspy * s) airspy_cleanup_queued_bufs() argument
463 struct airspy *s = container_of(v, struct airspy, v4l2_dev); airspy_disconnect() local
484 struct airspy *s = vb2_get_drv_priv(vq); airspy_queue_setup() local
502 struct airspy *s = vb2_get_drv_priv(vb->vb2_queue); airspy_buf_queue() local
520 struct airspy *s = vb2_get_drv_priv(vq); airspy_start_streaming() local
581 struct airspy *s = vb2_get_drv_priv(vq); airspy_stop_streaming() local
611 struct airspy *s = video_drvdata(file); airspy_querycap() local
633 struct airspy *s = video_drvdata(file); airspy_g_fmt_sdr_cap() local
644 struct airspy *s = video_drvdata(file); airspy_s_fmt_sdr_cap() local
729 struct airspy *s = video_drvdata(file); airspy_g_frequency() local
752 struct airspy *s = video_drvdata(file); airspy_s_frequency() local
854 struct airspy *s = container_of(v, struct airspy, v4l2_dev); airspy_video_release() local
862 airspy_set_lna_gain(struct airspy * s) airspy_set_lna_gain() argument
889 airspy_set_mixer_gain(struct airspy * s) airspy_set_mixer_gain() argument
916 airspy_set_if_gain(struct airspy * s) airspy_set_if_gain() argument
933 struct airspy *s = container_of(ctrl->handler, struct airspy, hdl); airspy_s_ctrl() local
964 struct airspy *s; airspy_probe() local
[all...]
/linux/drivers/media/platform/st/sti/bdisp/
H A Dbdisp-debug.c35 static void bdisp_dbg_dump_ins(struct seq_file *s, u32 val) in bdisp_dbg_dump_ins() argument
37 seq_printf(s, "INS\t0x%08X\t", val); in bdisp_dbg_dump_ins()
43 seq_puts(s, "SRC1=mem - "); in bdisp_dbg_dump_ins()
46 seq_puts(s, "SRC1=ColorFill - "); in bdisp_dbg_dump_ins()
49 seq_puts(s, "SRC1=copy - "); in bdisp_dbg_dump_ins()
52 seq_puts(s, "SRC1=fil - "); in bdisp_dbg_dump_ins()
55 seq_puts(s, "SRC1=??? - "); in bdisp_dbg_dump_ins()
63 seq_puts(s, "SRC2=mem - "); in bdisp_dbg_dump_ins()
66 seq_puts(s, "SRC2=ColorFill - "); in bdisp_dbg_dump_ins()
69 seq_puts(s, "SRC in bdisp_dbg_dump_ins()
110 bdisp_dbg_dump_tty(struct seq_file * s,u32 val) bdisp_dbg_dump_tty() argument
159 bdisp_dbg_dump_xy(struct seq_file * s,u32 val,char * name) bdisp_dbg_dump_xy() argument
165 bdisp_dbg_dump_sz(struct seq_file * s,u32 val,char * name) bdisp_dbg_dump_sz() argument
171 bdisp_dbg_dump_sty(struct seq_file * s,u32 val,u32 addr,char * name) bdisp_dbg_dump_sty() argument
236 bdisp_dbg_dump_fctl(struct seq_file * s,u32 val) bdisp_dbg_dump_fctl() argument
253 bdisp_dbg_dump_rsf(struct seq_file * s,u32 val,char * name) bdisp_dbg_dump_rsf() argument
272 bdisp_dbg_dump_rzi(struct seq_file * s,u32 val,char * name) bdisp_dbg_dump_rzi() argument
287 bdisp_dbg_dump_ivmx(struct seq_file * s,u32 c0,u32 c1,u32 c2,u32 c3) bdisp_dbg_dump_ivmx() argument
318 last_nodes_show(struct seq_file * s,void * data) last_nodes_show() argument
391 last_nodes_raw_show(struct seq_file * s,void * data) last_nodes_raw_show() argument
440 last_request_show(struct seq_file * s,void * data) last_request_show() argument
477 regs_show(struct seq_file * s,void * data) regs_show() argument
585 perf_show(struct seq_file * s,void * data) perf_show() argument
[all...]
/linux/drivers/media/pci/ivtv/
H A Divtv-irq.c20 static void ivtv_dma_dec_start(struct ivtv_stream *s);
31 struct ivtv_stream *s = &itv->streams[IVTV_ENC_STREAM_TYPE_PCM]; in ivtv_pcm_work_handler() local
43 buf = ivtv_dequeue(s, &s->q_io); in ivtv_pcm_work_handler()
45 buf = ivtv_dequeue(s, &s->q_full); in ivtv_pcm_work_handler()
54 ivtv_enqueue(s, buf, &s->q_free); in ivtv_pcm_work_handler()
60 struct ivtv_stream *s = &itv->streams[itv->cur_pio_stream]; in ivtv_pio_work_handler() local
66 s in ivtv_pio_work_handler()
111 stream_enc_dma_append(struct ivtv_stream * s,u32 data[CX2341X_MBOX_MAX_DATA]) stream_enc_dma_append() argument
246 dma_post(struct ivtv_stream * s) dma_post() argument
337 ivtv_dma_stream_dec_prepare(struct ivtv_stream * s,u32 offset,int lock) ivtv_dma_stream_dec_prepare() argument
414 ivtv_dma_enc_start_xfer(struct ivtv_stream * s) ivtv_dma_enc_start_xfer() argument
430 ivtv_dma_dec_start_xfer(struct ivtv_stream * s) ivtv_dma_dec_start_xfer() argument
447 ivtv_dma_enc_start(struct ivtv_stream * s) ivtv_dma_enc_start() argument
508 ivtv_dma_dec_start(struct ivtv_stream * s) ivtv_dma_dec_start() argument
529 struct ivtv_stream *s = NULL; ivtv_irq_dma_read() local
595 struct ivtv_stream *s; ivtv_irq_enc_dma_complete() local
643 struct ivtv_stream *s; ivtv_irq_enc_pio_complete() local
694 struct ivtv_stream *s = &itv->streams[itv->cur_dma_stream]; ivtv_irq_dma_err() local
745 struct ivtv_stream *s; ivtv_irq_enc_start_cap() local
765 struct ivtv_stream *s; ivtv_irq_enc_vbi_cap() local
777 struct ivtv_stream *s = &itv->streams[IVTV_DEC_STREAM_TYPE_VBI]; ivtv_irq_dec_vbi_reinsert() local
789 struct ivtv_stream *s; ivtv_irq_dec_data_req() local
865 struct ivtv_stream *s = ivtv_get_output_stream(itv); ivtv_irq_vsync() local
1022 struct ivtv_stream *s = &itv->streams[idx]; ivtv_irq_handler() local
1042 struct ivtv_stream *s = &itv->streams[idx]; ivtv_irq_handler() local
[all...]
H A Divtv-queue.c13 int ivtv_buf_copy_from_user(struct ivtv_stream *s, struct ivtv_buffer *buf, const char __user *src, int copybytes) in ivtv_buf_copy_from_user() argument
15 if (s->buf_size - buf->bytesused < copybytes) in ivtv_buf_copy_from_user()
16 copybytes = s->buf_size - buf->bytesused; in ivtv_buf_copy_from_user()
40 void ivtv_enqueue(struct ivtv_stream *s, struct ivtv_buffer *buf, struct ivtv_queue *q) in ivtv_enqueue() argument
45 if (q == &s->q_free) { in ivtv_enqueue()
51 spin_lock_irqsave(&s->qlock, flags); in ivtv_enqueue()
54 q->length += s->buf_size; in ivtv_enqueue()
56 spin_unlock_irqrestore(&s->qlock, flags); in ivtv_enqueue()
59 struct ivtv_buffer *ivtv_dequeue(struct ivtv_stream *s, struct ivtv_queue *q) in ivtv_dequeue() argument
64 spin_lock_irqsave(&s in ivtv_dequeue()
76 ivtv_queue_move_buf(struct ivtv_stream * s,struct ivtv_queue * from,struct ivtv_queue * to,int clear) ivtv_queue_move_buf() argument
110 ivtv_queue_move(struct ivtv_stream * s,struct ivtv_queue * from,struct ivtv_queue * steal,struct ivtv_queue * to,int needed_bytes) ivtv_queue_move() argument
173 ivtv_flush_queues(struct ivtv_stream * s) ivtv_flush_queues() argument
181 ivtv_stream_alloc(struct ivtv_stream * s) ivtv_stream_alloc() argument
254 ivtv_stream_free(struct ivtv_stream * s) ivtv_stream_free() argument
[all...]
/linux/include/linux/
H A Dseqlock.h41 static inline void __seqcount_init(seqcount_t *s, const char *name, in __seqcount_init() argument
47 lockdep_init_map(&s->dep_map, name, key, 0); in __seqcount_init()
48 s->sequence = 0; in __seqcount_init()
58 * @s: Pointer to the seqcount_t instance
60 # define seqcount_init(s) \ argument
63 __seqcount_init((s), #s, &__key); \
66 static inline void seqcount_lockdep_reader_access(const seqcount_t *s) in seqcount_lockdep_reader_access() argument
68 seqcount_t *l = (seqcount_t *)s; in seqcount_lockdep_reader_access()
79 # define seqcount_init(s) __seqcount_ini argument
123 seqcount_LOCKNAME_init(s,_lock,lockname) global() argument
130 seqcount_raw_spinlock_init(s,lock) global() argument
131 seqcount_spinlock_init(s,lock) global() argument
132 seqcount_rwlock_init(s,lock) global() argument
133 seqcount_mutex_init(s,lock) global() argument
199 __seqprop_ptr(seqcount_t * s) __seqprop_ptr() argument
204 __seqprop_const_ptr(const seqcount_t * s) __seqprop_const_ptr() argument
209 __seqprop_sequence(const seqcount_t * s) __seqprop_sequence() argument
214 __seqprop_preemptible(const seqcount_t * s) __seqprop_preemptible() argument
219 __seqprop_assert(const seqcount_t * s) __seqprop_assert() argument
249 __seqprop_case(s,lockname,prop) global() argument
252 __seqprop(s,prop) global() argument
259 seqprop_ptr(s) global() argument
260 seqprop_const_ptr(s) global() argument
261 seqprop_sequence(s) global() argument
262 seqprop_preemptible(s) global() argument
263 seqprop_assert(s) global() argument
271 __read_seqcount_begin(s) global() argument
288 raw_read_seqcount_begin(s) global() argument
296 read_seqcount_begin(s) global() argument
313 raw_read_seqcount(s) global() argument
338 raw_seqcount_try_begin(s,start) global() argument
361 raw_seqcount_begin(s) global() argument
385 __read_seqcount_retry(s,start) global() argument
405 read_seqcount_retry(s,start) global() argument
408 do_read_seqcount_retry(const seqcount_t * s,unsigned start) do_read_seqcount_retry() argument
420 raw_write_seqcount_begin(s) global() argument
428 do_raw_write_seqcount_begin(seqcount_t * s) do_raw_write_seqcount_begin() argument
441 raw_write_seqcount_end(s) global() argument
449 do_raw_write_seqcount_end(seqcount_t * s) do_raw_write_seqcount_end() argument
465 write_seqcount_begin_nested(s,subclass) global() argument
475 do_write_seqcount_begin_nested(seqcount_t * s,int subclass) do_write_seqcount_begin_nested() argument
491 write_seqcount_begin(s) global() argument
501 do_write_seqcount_begin(seqcount_t * s) do_write_seqcount_begin() argument
513 write_seqcount_end(s) global() argument
521 do_write_seqcount_end(seqcount_t * s) do_write_seqcount_end() argument
568 raw_write_seqcount_barrier(s) global() argument
571 do_raw_write_seqcount_barrier(seqcount_t * s) do_raw_write_seqcount_barrier() argument
588 write_seqcount_invalidate(s) global() argument
591 do_write_seqcount_invalidate(seqcount_t * s) do_write_seqcount_invalidate() argument
625 seqcount_latch_init(s) global() argument
638 raw_read_seqcount_latch(const seqcount_latch_t * s) raw_read_seqcount_latch() argument
658 read_seqcount_latch(const seqcount_latch_t * s) read_seqcount_latch() argument
672 raw_read_seqcount_latch_retry(const seqcount_latch_t * s,unsigned start) raw_read_seqcount_latch_retry() argument
686 read_seqcount_latch_retry(const seqcount_latch_t * s,unsigned start) read_seqcount_latch_retry() argument
696 raw_write_seqcount_latch(seqcount_latch_t * s) raw_write_seqcount_latch() argument
778 write_seqcount_latch_begin(seqcount_latch_t * s) write_seqcount_latch_begin() argument
788 write_seqcount_latch(seqcount_latch_t * s) write_seqcount_latch() argument
800 write_seqcount_latch_end(seqcount_latch_t * s) write_seqcount_latch_end() argument
[all...]
/linux/drivers/tty/serial/
H A Dmxs-auart.c458 static inline int is_imx28_auart(struct mxs_auart_port *s) in is_imx28_auart() argument
460 return s->devtype == IMX28_AUART; in is_imx28_auart()
463 static inline int is_asm9260_auart(struct mxs_auart_port *s) in is_asm9260_auart() argument
465 return s->devtype == ASM9260_AUART; in is_asm9260_auart()
468 static inline bool auart_dma_enabled(struct mxs_auart_port *s) in auart_dma_enabled() argument
470 return s->flags & MXS_AUART_DMA_ENABLED; in auart_dma_enabled()
515 static void mxs_auart_tx_chars(struct mxs_auart_port *s);
519 struct mxs_auart_port *s = param; in dma_tx_callback() local
520 struct tty_port *tport = &s->port.state->port; in dma_tx_callback()
522 dma_unmap_sg(s in dma_tx_callback()
535 mxs_auart_dma_tx(struct mxs_auart_port * s,int size) mxs_auart_dma_tx() argument
569 mxs_auart_tx_chars(struct mxs_auart_port * s) mxs_auart_tx_chars() argument
609 mxs_auart_rx_char(struct mxs_auart_port * s) mxs_auart_rx_char() argument
653 mxs_auart_rx_chars(struct mxs_auart_port * s) mxs_auart_rx_chars() argument
687 struct mxs_auart_port *s = to_auart_port(u); mxs_auart_type() local
698 struct mxs_auart_port *s = to_auart_port(u); mxs_auart_set_mctrl() local
716 mxs_auart_modem_status(struct mxs_auart_port * s,u32 mctrl) mxs_auart_modem_status() argument
740 struct mxs_auart_port *s = to_auart_port(u); mxs_auart_get_mctrl() local
755 struct mxs_auart_port *s = to_auart_port(port); mxs_auart_enable_ms() local
784 struct mxs_auart_port *s = to_auart_port(port); mxs_auart_disable_ms() local
811 struct mxs_auart_port *s = (struct mxs_auart_port *) arg; dma_rx_callback() local
832 mxs_auart_dma_prep_rx(struct mxs_auart_port * s) mxs_auart_dma_prep_rx() argument
868 mxs_auart_dma_exit_channel(struct mxs_auart_port * s) mxs_auart_dma_exit_channel() argument
885 mxs_auart_dma_exit(struct mxs_auart_port * s) mxs_auart_dma_exit() argument
897 mxs_auart_dma_init(struct mxs_auart_port * s) mxs_auart_dma_init() argument
945 struct mxs_auart_port *s = to_auart_port(u); mxs_auart_settermios() local
1079 struct mxs_auart_port *s = context; mxs_auart_irq_handle() local
1125 mxs_auart_reset_deassert(struct mxs_auart_port * s) mxs_auart_reset_deassert() argument
1141 mxs_auart_reset_assert(struct mxs_auart_port * s) mxs_auart_reset_assert() argument
1168 struct mxs_auart_port *s = to_auart_port(u); mxs_auart_startup() local
1205 struct mxs_auart_port *s = to_auart_port(u); mxs_auart_shutdown() local
1227 struct mxs_auart_port *s = to_auart_port(u); mxs_auart_tx_empty() local
1238 struct mxs_auart_port *s = to_auart_port(u); mxs_auart_start_tx() local
1248 struct mxs_auart_port *s = to_auart_port(u); mxs_auart_stop_tx() local
1255 struct mxs_auart_port *s = to_auart_port(u); mxs_auart_stop_rx() local
1262 struct mxs_auart_port *s = to_auart_port(u); mxs_auart_break_ctl() local
1295 struct mxs_auart_port *s = to_auart_port(port); mxs_auart_console_putchar() local
1310 struct mxs_auart_port *s; auart_console_write() local
1354 auart_console_get_options(struct mxs_auart_port * s,int * baud,int * parity,int * bits) auart_console_get_options() argument
1391 struct mxs_auart_port *s; auart_console_setup() local
1448 mxs_init_regs(struct mxs_auart_port * s) mxs_init_regs() argument
1456 mxs_get_clks(struct mxs_auart_port * s,struct platform_device * pdev) mxs_get_clks() argument
1503 mxs_auart_init_gpios(struct mxs_auart_port * s,struct device * dev) mxs_auart_init_gpios() argument
1531 mxs_auart_free_gpio_irq(struct mxs_auart_port * s) mxs_auart_free_gpio_irq() argument
1540 mxs_auart_request_gpio_irq(struct mxs_auart_port * s) mxs_auart_request_gpio_irq() argument
1572 struct mxs_auart_port *s; mxs_auart_probe() local
1693 struct mxs_auart_port *s = platform_get_drvdata(pdev); mxs_auart_remove() local
[all...]
H A Dmax3100.c123 static int max3100_do_parity(struct max3100_port *s, u16 c) in max3100_do_parity() argument
127 if (s->parity & MAX3100_PARITY_ODD) in max3100_do_parity()
132 if (s->parity & MAX3100_7BIT) in max3100_do_parity()
141 static int max3100_check_parity(struct max3100_port *s, u16 c) in max3100_check_parity() argument
143 return max3100_do_parity(s, c) == ((c >> 8) & 1); in max3100_check_parity()
146 static void max3100_calc_parity(struct max3100_port *s, u16 *c) in max3100_calc_parity() argument
148 if (s->parity & MAX3100_7BIT) in max3100_calc_parity()
153 if (s->parity & MAX3100_PARITY_ON) in max3100_calc_parity()
154 *c |= max3100_do_parity(s, *c) << 8; in max3100_calc_parity()
157 static int max3100_sr(struct max3100_port *s, u1 argument
182 max3100_handlerx_unlocked(struct max3100_port * s,u16 rx) max3100_handlerx_unlocked() argument
223 max3100_handlerx(struct max3100_port * s,u16 rx) max3100_handlerx() argument
236 struct max3100_port *s = container_of(w, struct max3100_port, work); max3100_work() local
304 max3100_dowork(struct max3100_port * s) max3100_dowork() argument
312 struct max3100_port *s = timer_container_of(s, t, timer); max3100_timeout() local
320 struct max3100_port *s = dev_id; max3100_irq() local
330 struct max3100_port *s = to_max3100_port(port); max3100_enable_ms() local
338 struct max3100_port *s = to_max3100_port(port); max3100_start_tx() local
347 struct max3100_port *s = to_max3100_port(port); max3100_stop_rx() local
361 struct max3100_port *s = to_max3100_port(port); max3100_tx_empty() local
372 struct max3100_port *s = to_max3100_port(port); max3100_get_mctrl() local
384 struct max3100_port *s = to_max3100_port(port); max3100_set_mctrl() local
410 struct max3100_port *s = to_max3100_port(port); max3100_set_termios() local
526 struct max3100_port *s = to_max3100_port(port); max3100_shutdown() local
551 struct max3100_port *s = to_max3100_port(port); max3100_startup() local
597 struct max3100_port *s = to_max3100_port(port); max3100_type() local
606 struct max3100_port *s = to_max3100_port(port); max3100_release_port() local
613 struct max3100_port *s = to_max3100_port(port); max3100_config_port() local
624 struct max3100_port *s = to_max3100_port(port); max3100_verify_port() local
636 struct max3100_port *s = to_max3100_port(port); max3100_stop_tx() local
643 struct max3100_port *s = to_max3100_port(port); max3100_request_port() local
651 struct max3100_port *s = to_max3100_port(port); max3100_break_ctl() local
746 struct max3100_port *s = spi_get_drvdata(spi); max3100_remove() local
778 struct max3100_port *s = dev_get_drvdata(dev); max3100_suspend() local
795 struct max3100_port *s = dev_get_drvdata(dev); max3100_resume() local
[all...]
/linux/drivers/media/pci/cx18/
H A Dcx18-streams.c108 struct cx18_stream *s = vb2_get_drv_priv(vq); in cx18_queue_setup() local
109 struct cx18 *cx = s->cx; in cx18_queue_setup()
116 if (s->pixelformat == V4L2_PIX_FMT_NV12_16L16) in cx18_queue_setup()
122 * Let's request at least three buffers: two for the in cx18_queue_setup()
141 struct cx18_stream *s = vb2_get_drv_priv(vb->vb2_queue); in cx18_buf_queue() local
147 spin_lock_irqsave(&s->vb_lock, flags); in cx18_buf_queue()
148 list_add_tail(&buf->list, &s->vb_capture); in cx18_buf_queue()
149 spin_unlock_irqrestore(&s->vb_lock, flags); in cx18_buf_queue()
155 struct cx18_stream *s = vb2_get_drv_priv(vb->vb2_queue); in cx18_buf_prepare() local
156 struct cx18 *cx = s in cx18_buf_prepare()
175 cx18_clear_queue(struct cx18_stream * s,enum vb2_buffer_state state) cx18_clear_queue() argument
190 struct cx18_stream *s = vb2_get_drv_priv(vq); cx18_start_streaming() local
216 struct cx18_stream *s = vb2_get_drv_priv(vq); cx18_stop_streaming() local
236 struct cx18_stream *s = &cx->streams[type]; cx18_stream_init() local
303 struct cx18_stream *s = &cx->streams[type]; cx18_prep_dev() local
408 struct cx18_stream *s = &cx->streams[type]; cx18_reg_dev() local
548 cx18_vbi_setup(struct cx18_stream * s) cx18_vbi_setup() argument
660 struct cx18_stream *s = &cx->streams[CX18_ENC_STREAM_TYPE_IDX]; cx18_stream_rotate_idx_mdls() local
685 _cx18_stream_put_mdl_fw(struct cx18_stream * s,struct cx18_mdl * mdl) _cx18_stream_put_mdl_fw() argument
709 _cx18_stream_load_fw_queue(struct cx18_stream * s) _cx18_stream_load_fw_queue() argument
730 struct cx18_stream *s = cx18_out_work_handler() local
736 cx18_stream_configure_mdls(struct cx18_stream * s) cx18_stream_configure_mdls() argument
780 cx18_start_v4l2_encode_stream(struct cx18_stream * s) cx18_start_v4l2_encode_stream() argument
962 struct cx18_stream *s = &cx->streams[i]; cx18_stop_all_captures() local
971 cx18_stop_v4l2_encode_stream(struct cx18_stream * s,int gop_end) cx18_stop_v4l2_encode_stream() argument
1027 struct cx18_stream *s = &cx->streams[i]; cx18_find_handle() local
1038 struct cx18_stream *s; cx18_handle_to_stream() local
[all...]
/linux/lib/crypto/arm64/
H A Dchacha-neon-core.S42 ld1 {v12.4s}, [x10]
46 add v0.4s, v0.4s, v1.4s
51 add v2.4s, v2.4s, v3.4s
53 shl v1.4s, v4.4s, #12
54 sri v1.4s, v
[all...]
/linux/sound/firewire/
H A Damdtp-stream.c84 * @s: the AMDTP stream to initialize
92 int amdtp_stream_init(struct amdtp_stream *s, struct fw_unit *unit, in amdtp_stream_init() argument
101 s->protocol = kzalloc(protocol_size, GFP_KERNEL); in amdtp_stream_init()
102 if (!s->protocol) in amdtp_stream_init()
105 s->unit = unit; in amdtp_stream_init()
106 s->direction = dir; in amdtp_stream_init()
107 s->flags = flags; in amdtp_stream_init()
108 s->context = ERR_PTR(-1); in amdtp_stream_init()
109 mutex_init(&s->mutex); in amdtp_stream_init()
110 INIT_WORK(&s in amdtp_stream_init()
126 amdtp_stream_destroy(struct amdtp_stream * s) amdtp_stream_destroy() argument
163 struct snd_interval *s = hw_param_interval(params, rule->var); apply_constraint_to_size() local
190 amdtp_stream_add_pcm_hw_constraints(struct amdtp_stream * s,struct snd_pcm_runtime * runtime) amdtp_stream_add_pcm_hw_constraints() argument
286 amdtp_stream_set_parameters(struct amdtp_stream * s,unsigned int rate,unsigned int data_block_quadlets,unsigned int pcm_frame_multiplier) amdtp_stream_set_parameters() argument
316 amdtp_stream_get_max_ctx_payload_size(struct amdtp_stream * s) amdtp_stream_get_max_ctx_payload_size() argument
335 amdtp_stream_get_max_payload(struct amdtp_stream * s) amdtp_stream_get_max_payload() argument
354 amdtp_stream_pcm_prepare(struct amdtp_stream * s) amdtp_stream_pcm_prepare() argument
362 prev_packet_desc(s,desc) global() argument
365 pool_blocking_data_blocks(struct amdtp_stream * s,struct seq_desc * descs,unsigned int size,unsigned int pos,unsigned int count) pool_blocking_data_blocks() argument
383 pool_ideal_nonblocking_data_blocks(struct amdtp_stream * s,struct seq_desc * descs,unsigned int size,unsigned int pos,unsigned int count) pool_ideal_nonblocking_data_blocks() argument
464 pool_ideal_syt_offsets(struct amdtp_stream * s,struct seq_desc * descs,unsigned int size,unsigned int pos,unsigned int count) pool_ideal_syt_offsets() argument
509 calculate_cached_cycle_count(struct amdtp_stream * s,unsigned int head) calculate_cached_cycle_count() argument
521 cache_seq(struct amdtp_stream * s,const struct pkt_desc * src,unsigned int desc_count) cache_seq() argument
546 pool_ideal_seq_descs(struct amdtp_stream * s,struct seq_desc * descs,unsigned int size,unsigned int pos,unsigned int count) pool_ideal_seq_descs() argument
557 pool_replayed_seq(struct amdtp_stream * s,struct seq_desc * descs,unsigned int size,unsigned int pos,unsigned int count) pool_replayed_seq() argument
575 pool_seq_descs(struct amdtp_stream * s,struct seq_desc * descs,unsigned int size,unsigned int pos,unsigned int count) pool_seq_descs() argument
603 update_pcm_pointers(struct amdtp_stream * s,struct snd_pcm_substream * pcm,unsigned int frames) update_pcm_pointers() argument
644 struct amdtp_stream *s = container_of(work, struct amdtp_stream, pcm_period_work() local
652 queue_packet(struct amdtp_stream * s,struct fw_iso_packet * params,bool sched_irq) queue_packet() argument
674 queue_out_packet(struct amdtp_stream * s,struct fw_iso_packet * params,bool sched_irq) queue_out_packet() argument
682 queue_in_packet(struct amdtp_stream * s,struct fw_iso_packet * params) queue_in_packet() argument
692 generate_cip_header(struct amdtp_stream * s,__be32 cip_header[2],unsigned int data_block_counter,unsigned int syt) generate_cip_header() argument
705 build_it_pkt_header(struct amdtp_stream * s,unsigned int cycle,struct fw_iso_packet * params,unsigned int header_length,unsigned int data_blocks,unsigned int data_block_counter,unsigned int syt,unsigned int index,u32 curr_cycle_time) build_it_pkt_header() argument
729 check_cip_header(struct amdtp_stream * s,const __be32 * buf,unsigned int payload_length,unsigned int * data_blocks,unsigned int * data_block_counter,unsigned int * syt) check_cip_header() argument
828 parse_ir_ctx_header(struct amdtp_stream * s,unsigned int cycle,const __be32 * ctx_header,unsigned int * data_blocks,unsigned int * data_block_counter,unsigned int * syt,unsigned int packet_index,unsigned int index,u32 curr_cycle_time) parse_ir_ctx_header() argument
934 generate_tx_packet_descs(struct amdtp_stream * s,struct pkt_desc * desc,const __be32 * ctx_header,unsigned int packet_count,unsigned int * desc_count) generate_tx_packet_descs() argument
1030 generate_rx_packet_descs(struct amdtp_stream * s,struct pkt_desc * desc,const __be32 * ctx_header,unsigned int packet_count) generate_rx_packet_descs() argument
1075 cancel_stream(struct amdtp_stream * s) cancel_stream() argument
1090 compute_pcm_extra_delay(struct amdtp_stream * s,const struct pkt_desc * desc,unsigned int count) compute_pcm_extra_delay() argument
1147 process_ctx_payloads(struct amdtp_stream * s,const struct pkt_desc * desc,unsigned int count) process_ctx_payloads() argument
1174 struct amdtp_stream *s = private_data; process_rx_packets() local
1245 struct amdtp_stream *s = private_data; skip_rx_packets() local
1280 struct amdtp_stream *s = private_data; process_rx_packets_intermediately() local
1334 struct amdtp_stream *s = private_data; process_tx_packets() local
1381 struct amdtp_stream *s = private_data; drop_tx_packets() local
1409 struct amdtp_stream *s = private_data; process_tx_packets_intermediately() local
1460 struct amdtp_stream *s = private_data; drop_tx_packets_initially() local
1552 struct amdtp_stream *s; process_ctxs_in_domain() local
1576 struct amdtp_stream *s = private_data; irq_target_callback() local
1586 struct amdtp_stream *s = private_data; irq_target_callback_intermediately() local
1596 struct amdtp_stream *s = private_data; irq_target_callback_skip() local
1654 struct amdtp_stream *s = private_data; amdtp_stream_first_callback() local
1681 amdtp_stream_start(struct amdtp_stream * s,int channel,int speed,unsigned int queue_size,unsigned int idle_irq_interval) amdtp_stream_start() argument
1880 amdtp_domain_stream_pcm_pointer(struct amdtp_domain * d,struct amdtp_stream * s) amdtp_domain_stream_pcm_pointer() argument
1903 amdtp_domain_stream_pcm_ack(struct amdtp_domain * d,struct amdtp_stream * s) amdtp_domain_stream_pcm_ack() argument
1920 amdtp_stream_update(struct amdtp_stream * s) amdtp_stream_update() argument
1935 amdtp_stream_stop(struct amdtp_stream * s) amdtp_stream_stop() argument
1969 amdtp_stream_pcm_abort(struct amdtp_stream * s) amdtp_stream_pcm_abort() argument
2011 amdtp_domain_add_stream(struct amdtp_domain * d,struct amdtp_stream * s,int channel,int speed) amdtp_domain_add_stream() argument
2043 struct amdtp_stream *s; make_association() local
2093 struct amdtp_stream *s; amdtp_domain_start() local
2157 struct amdtp_stream *s, *next; amdtp_domain_stop() local
[all...]
/linux/tools/mm/
H A Dslabinfo.c130 "-s|--shrink Shrink slabs\n" in usage()
163 fatal("%s, Try using superuser\n", strerror(errno)); in read_obj()
205 static void set_obj(struct slabinfo *s, const char *name, int n) in set_obj() argument
210 snprintf(x, 100, "%s/%s", s->name, name); in set_obj()
213 fatal("Cannot write to %s\n", x); in set_obj()
219 static unsigned long read_slab_obj(struct slabinfo *s, const char *name) in read_slab_obj() argument
225 snprintf(x, 100, "%s/%s", in read_slab_obj()
238 read_debug_slab_obj(struct slabinfo * s,const char * name) read_debug_slab_obj() argument
319 slab_validate(struct slabinfo * s) slab_validate() argument
327 slab_shrink(struct slabinfo * s) slab_shrink() argument
367 slab_size(struct slabinfo * s) slab_size() argument
372 slab_activity(struct slabinfo * s) slab_activity() argument
378 slab_waste(struct slabinfo * s) slab_waste() argument
383 slab_numa(struct slabinfo * s,int mode) slab_numa() argument
428 show_tracking(struct slabinfo * s) show_tracking() argument
450 ops(struct slabinfo * s) ops() argument
470 slab_stats(struct slabinfo * s) slab_stats() argument
554 report(struct slabinfo * s) report() argument
595 slabcache(struct slabinfo * s) slabcache() argument
726 slab_empty(struct slabinfo * s) slab_empty() argument
741 slab_debug(struct slabinfo * s) slab_debug() argument
803 struct slabinfo *s; totals() local
1137 struct slabinfo *s; link_slabs() local
1185 struct slabinfo *s; rename_slabs() local
[all...]
/linux/drivers/scsi/sym53c8xx_2/
H A Dsym_fw.h32 #define SYM_GEN_FW_A(s) \ argument
33 SYM_GEN_A(s, start) SYM_GEN_A(s, getjob_begin) \
34 SYM_GEN_A(s, getjob_end) \
35 SYM_GEN_A(s, select) SYM_GEN_A(s, wf_sel_done) \
36 SYM_GEN_A(s, send_ident) \
37 SYM_GEN_A(s, dispatch) SYM_GEN_A(s, init) \
38 SYM_GEN_A(s, clrac
51 SYM_GEN_FW_B(s) global() argument
67 SYM_GEN_FW_Z(s) global() argument
74 SYM_GEN_A(s,label) global() argument
75 SYM_GEN_B(s,label) global() argument
76 SYM_GEN_Z(s,label) global() argument
187 SYM_GEN_PADDR_A(s,label) global() argument
188 SYM_GEN_PADDR_B(s,label) global() argument
[all...]
/linux/arch/arm64/kernel/vdso/
H A Dvgetrandom-chacha.S52 ld1 { copy1.4s, copy2.4s }, [x1]
54 ld1 { copy3.2s }, [x2]
56 movi one_v.2s, #1
57 uzp1 one_v.4s, one_v.4s, one_v.4s
76 add state0.4s, state0.4s, state1.4s
[all...]

12345678910>>...233