| /linux/arch/arm64/crypto/ |
| H A D | sm4-ce-asm.h | 12 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; \ 17 sm4e b0.4s, v29.4s; \ 18 sm4e b0.4s, v30.4s; \ 19 sm4e b0.4s, v31.4s; \ 20 rev64 b0.4s, b0.4s; \ 29 sm4e b0.4s, v24.4s; \ [all …]
|
| /linux/arch/m68k/ifpsp060/ |
| H A D | MISC | 34 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 : 2.5 [all …]
|
| /linux/arch/mips/cavium-octeon/executive/ |
| H A D | cvmx-interrupt-decodes.c | 60 /* 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.loc_fault = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable() [all …]
|
| /linux/arch/x86/kvm/ |
| H A D | i8259.c | 46 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, int irq) in pic_clear_isr() argument [all …]
|
| /linux/tools/perf/pmu-events/arch/powerpc/power10/ |
| H A D | datasource.json | 15 …"BriefDescription": "The processor's L1 data cache was reloaded from a source beyond the local cor… 20 …"BriefDescription": "The processor's L1 data cache was reloaded from beyond the local core's L3 du… 30 …"BriefDescription": "The processor's data cache was reloaded from local, remote, or distant memory… 60 …"BriefDescription": "The processor's instruction cache was reloaded from the local core's L2 due t… 65 …"BriefDescription": "The processor's L1 data cache was reloaded from the local core's L2 due to a … 70 …"BriefDescription": "The processor's instruction cache was reloaded from the local core's L2 due t… 75 …"BriefDescription": "The processor's L1 data cache was reloaded from the local core's L2 due to a … 80 …"BriefDescription": "The processor's instruction cache was reloaded from a source beyond the local… 85 …"BriefDescription": "The processor's L1 data cache was reloaded from a source beyond the local cor… 90 …"BriefDescription": "The processor's instruction cache was reloaded from a source beyond the local… [all …]
|
| /linux/drivers/media/pci/tw5864/ |
| H A D | tw5864-h264.c | 31 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, int count, u32 bits) in bs_write() argument 46 if (s->ptr >= s->buf_end - 4) in bs_write() 51 if (count < s->bits_left) { in bs_write() [all …]
|
| /linux/drivers/tty/serial/ |
| H A D | max3100.c | 122 static int max3100_do_parity(struct max3100_port *s, u16 c) in max3100_do_parity() argument 126 if (s->parity & MAX3100_PARITY_ODD) in max3100_do_parity() 131 if (s->parity & MAX3100_7BIT) in max3100_do_parity() 140 static int max3100_check_parity(struct max3100_port *s, u16 c) in max3100_check_parity() argument 142 return max3100_do_parity(s, c) == ((c >> 8) & 1); in max3100_check_parity() 145 static void max3100_calc_parity(struct max3100_port *s, u16 *c) in max3100_calc_parity() argument 147 if (s->parity & MAX3100_7BIT) in max3100_calc_parity() 152 if (s->parity & MAX3100_PARITY_ON) in max3100_calc_parity() 153 *c |= max3100_do_parity(s, *c) << 8; in max3100_calc_parity() 156 static int max3100_sr(struct max3100_port *s, u16 tx, u16 *rx) in max3100_sr() argument [all …]
|
| /linux/tools/testing/selftests/bpf/prog_tests/ |
| H A D | lwt_ip_encap.c | 88 SYS(fail, "ip netns add %s", name); in create_ns() 91 SYS(fail, "ip netns exec %s sysctl -wq net.ipv4.conf.all.rp_filter=0", name); in create_ns() 92 SYS(fail, "ip netns exec %s sysctl -wq net.ipv4.conf.default.rp_filter=0", name); in create_ns() 94 SYS(fail, "ip netns exec %s sysctl -wq net.ipv6.conf.all.accept_dad=0", name); in create_ns() 95 SYS(fail, "ip netns exec %s sysctl -wq net.ipv6.conf.default.accept_dad=0", name); in create_ns() 104 SYS(fail, "ip -n %s a add %s/24 dev veth1", ns1, IP4_ADDR_1); in set_top_addr() 105 SYS(fail, "ip -n %s a add %s/24 dev veth2", ns2, IP4_ADDR_2); in set_top_addr() 106 SYS(fail, "ip -n %s a add %s/24 dev veth3", ns2, IP4_ADDR_3); in set_top_addr() 107 SYS(fail, "ip -n %s a add %s/24 dev veth4", ns3, IP4_ADDR_4); in set_top_addr() 108 SYS(fail, "ip -n %s -6 a add %s/128 dev veth1", ns1, IP6_ADDR_1); in set_top_addr() [all …]
|
| /linux/tools/mm/ |
| H A D | slabinfo.c | 130 "-s|--shrink Shrink slabs\n" in usage() 131 "-S|--Size Sort by size\n" in usage() 164 fatal("%s, Try using superuser\n", strerror(errno)); in read_obj() 207 static void set_obj(struct slabinfo *s, const char *name, int n) 212 snprintf(x, 100, "%s/%s", s->name, name); in set_obj() 215 fatal("Cannot write to %s\n", x); in set_obj() 221 static unsigned long read_slab_obj(struct slabinfo *s, const char *name) 227 snprintf(x, 100, "%s/ in read_slab_obj() 208 set_obj(struct slabinfo * s,const char * name,int n) set_obj() argument 222 read_slab_obj(struct slabinfo * s,const char * name) read_slab_obj() argument 241 read_debug_slab_obj(struct slabinfo * s,const char * name) read_debug_slab_obj() argument 322 slab_validate(struct slabinfo * s) slab_validate() argument 330 slab_shrink(struct slabinfo * s) slab_shrink() argument 370 slab_size(struct slabinfo * s) slab_size() argument 375 slab_activity(struct slabinfo * s) slab_activity() argument 381 slab_waste(struct slabinfo * s) slab_waste() argument 386 slab_numa(struct slabinfo * s,int mode) slab_numa() argument 431 show_tracking(struct slabinfo * s) show_tracking() argument 453 ops(struct slabinfo * s) ops() argument 473 slab_stats(struct slabinfo * s) slab_stats() argument 557 report(struct slabinfo * s) report() argument 598 slabcache(struct slabinfo * s) slabcache() argument 729 slab_empty(struct slabinfo * s) slab_empty() argument 744 slab_debug(struct slabinfo * s) slab_debug() argument 806 struct slabinfo *s; totals() local 1140 struct slabinfo *s; link_slabs() local 1188 struct slabinfo *s; rename_slabs() local [all...] |
| /linux/drivers/media/pci/ivtv/ |
| H A D | ivtv-queue.c | 13 int ivtv_buf_copy_from_user(struct ivtv_stream *s, struct ivtv_buffer *buf, const char __user *src,… 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->qlock, flags); in ivtv_dequeue() [all …]
|
| /linux/drivers/watchdog/ |
| H A D | sbc8360.c | 97 * 0 | 0.5s 5s 50s 100s 98 * 1 | 1s 10s 100s 200s 99 * 2 | 1.5s 15s 150s 300s 100 * 3 | 2s 20s 200s 400s 101 * 4 | 2.5s 25s 250s 500s 102 * 5 | 3s 30s 300s 600s 103 * 6 | 3.5s 35s 350s 700s 104 * 7 | 4s 40s 400s 800s 105 * 8 | 4.5s 45s 450s 900s 106 * 9 | 5s 50s 500s 1000s [all …]
|
| /linux/drivers/media/pci/cx18/ |
| H A D | cx18-streams.c | 108 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->cx; in cx18_buf_prepare() [all …]
|
| H A D | cx18-queue.c | 43 struct cx18_queue *_cx18_enqueue(struct cx18_stream *s, struct cx18_mdl *mdl, in _cx18_enqueue() argument 47 if (q != &s->q_full) { in _cx18_enqueue() 56 if (q == &s->q_busy && in _cx18_enqueue() 58 q = &s->q_free; in _cx18_enqueue() 73 struct cx18_mdl *cx18_dequeue(struct cx18_stream *s, struct cx18_queue *q) in cx18_dequeue() argument 89 static void _cx18_mdl_update_bufs_for_cpu(struct cx18_stream *s, in _cx18_mdl_update_bufs_for_cpu() argument 93 u32 buf_size = s->buf_size; in _cx18_mdl_update_bufs_for_cpu() 105 cx18_buf_sync_for_cpu(s, buf); in _cx18_mdl_update_bufs_for_cpu() 109 static inline void cx18_mdl_update_bufs_for_cpu(struct cx18_stream *s, in cx18_mdl_update_bufs_for_cpu() argument 119 cx18_buf_sync_for_cpu(s, buf); in cx18_mdl_update_bufs_for_cpu() [all …]
|
| /linux/sound/usb/usx2y/ |
| H A D | usb_stream.c | 15 struct usb_stream *s = sk->s; in usb_stream_next_packet_size() local 18 return (sk->out_phase_peeked >> 16) * s->cfg.frame_size; in usb_stream_next_packet_size() 23 struct usb_stream *s = sk->s; in playback_prep_freqn() local 29 if (s->idle_outsize + lb + l > s->period_size) in playback_prep_freqn() 41 s->idle_outsize += lb - s->period_size; in playback_prep_freqn() 86 struct usb_stream *s = sk->s; in init_urbs() local 88 (char *)s + sizeof(*s) + sizeof(struct usb_stream_packet) * s->inpackets; in init_urbs() 129 struct usb_stream *s; in usb_stream_free() local 139 s = sk->s; in usb_stream_free() 140 if (!s) in usb_stream_free() [all …]
|
| /linux/include/linux/ |
| H A D | seq_buf.h | 33 static inline void seq_buf_clear(struct seq_buf *s) in seq_buf_clear() argument 35 s->len = 0; in seq_buf_clear() 36 if (s->size) in seq_buf_clear() 37 s->buffer[0] = '\0'; in seq_buf_clear() 41 seq_buf_init(struct seq_buf *s, char *buf, unsigned int size) in seq_buf_init() argument 43 s->buffer = buf; in seq_buf_init() 44 s->size = size; in seq_buf_init() 45 seq_buf_clear(s); in seq_buf_init() 53 seq_buf_has_overflowed(struct seq_buf *s) in seq_buf_has_overflowed() argument 55 return s->len > s->size; in seq_buf_has_overflowed() [all …]
|
| /linux/sound/firewire/ |
| H A D | amdtp-stream.c | 84 * @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->period_work, pcm_period_work); in amdtp_stream_init() [all …]
|
| /linux/drivers/misc/sgi-gru/ |
| H A D | gruprocfs.c | 20 #define printstat(s, f) printstat_val(s, &gru_stats.f, #f) argument 22 static void printstat_val(struct seq_file *s, atomic_long_t *v, char *id) in printstat_val() argument 26 seq_printf(s, "%16lu %s\n", val, id); in printstat_val() 29 static int statistics_show(struct seq_file *s, void *p) in statistics_show() argument 31 printstat(s, vdata_alloc); in statistics_show() 32 printstat(s, vdata_free); in statistics_show() 33 printstat(s, gts_alloc); in statistics_show() 34 printstat(s, gts_free); in statistics_show() 35 printstat(s, gms_alloc); in statistics_show() 36 printstat(s, gms_free); in statistics_show() [all …]
|
| /linux/drivers/net/ethernet/meta/fbnic/ |
| H A D | fbnic_debugfs.c | 16 static void fbnic_dbg_desc_break(struct seq_file *s, int i) in fbnic_dbg_desc_break() argument 19 seq_putc(s, '-'); in fbnic_dbg_desc_break() 21 seq_putc(s, '\n'); in fbnic_dbg_desc_break() 24 static void fbnic_dbg_ring_show(struct seq_file *s) in fbnic_dbg_ring_show() argument 26 struct fbnic_ring *ring = s->private; in fbnic_dbg_ring_show() 34 seq_printf(s, "doorbell CSR: %#05lx q_idx: %d\n", in fbnic_dbg_ring_show() 36 seq_printf(s, "size_mask: %#06x size: %zu flags: 0x%02x\n", in fbnic_dbg_ring_show() 38 seq_printf(s, "SW: head: %#06x tail: %#06x\n", in fbnic_dbg_ring_show() 71 seq_printf(s, "HW: head: %#06x tail: %#06x\n", head, tail); in fbnic_dbg_ring_show() 73 seq_puts(s, "\n"); in fbnic_dbg_ring_show() [all …]
|
| /linux/tools/perf/pmu-events/arch/powerpc/power8/ |
| H A D | cache.json | 5 …"BriefDescription": "The processor's data cache was reloaded with Modified (M) data from another c… 6 …"PublicDescription": "The processor's data cache was reloaded with Modified (M) data from another … 11 …"BriefDescription": "The processor's data cache was reloaded with Shared (S) data from another chi… 12 …"PublicDescription": "The processor's data cache was reloaded with Shared (S) data from another ch… 17 …"BriefDescription": "The processor's data cache was reloaded from another chip's L4 on a different… 18 …"PublicDescription": "The processor's data cache was reloaded from another chip's L4 on a differen… 23 …"BriefDescription": "The processor's data cache was reloaded from local core's L2 due to a demand … 24 …"PublicDescription": "The processor's data cache was reloaded from local core's L2 due to either o… 35 …"BriefDescription": "The processor's data cache was reloaded from a location other than the local … 36 …"PublicDescription": "The processor's data cache was reloaded from a location other than the local… [all …]
|
| /linux/scripts/ |
| H A D | checkpatch.pl | 61 (my $def_configuration_dirs = $def_configuration_dirs_help) =~ s/\$(\w+)/$ENV{$1}/g; 139 file. It's your fault if there's no backup or git 205 while ($text =~ /(?:(\bCHK|\bWARN|\bERROR|&\{\$msg_level})\s*\(|\$msg_type\s*=)\s*"([^"]+)"/g) { 245 $message =~ s/\n/\n\t/g; 262 $line =~ s/\s*\n?$//g; 263 $line =~ s/ [all...] |
| /linux/tools/arch/x86/intel_sdsi/ |
| H A D | intel_sdsi.c | 202 fprintf(stderr, "Cannot open directory %s\n", AUX_DEV_PATH); in sdsi_list_devices() 209 printf("%s\n", entry->d_name); in sdsi_list_devices() 217 static int sdsi_update_registers(struct sdsi_dev *s) in sdsi_update_registers() argument 222 memset(&s->regs, 0, sizeof(s->regs)); in sdsi_update_registers() 225 ret = chdir(s->dev_path); in sdsi_update_registers() 237 if (s->guid != GUID_V1 && s->guid != GUID_V2) { in sdsi_update_registers() 238 fprintf(stderr, "Unrecognized guid, 0x%x\n", s->guid); in sdsi_update_registers() 244 ret = fread(&s->regs, sizeof(uint8_t), sizeof(s->regs), regs_ptr); in sdsi_update_registers() 245 if ((s->guid == GUID_V1 && ret != REGS_SIZE_GUID_V1) || in sdsi_update_registers() 246 (s->guid == GUID_V2 && ret != REGS_SIZE_GUID_V2)) { in sdsi_update_registers() [all …]
|
| /linux/arch/arm64/kernel/vdso/ |
| H A D | vgetrandom-chacha.S | 52 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 81 add state2.4s, state2.4s, state3.4s 83 shl state1.4s, tmp.4s, #12 84 sri state1.4s, tmp.4s, #20 87 add state0.4s, state0.4s, state1.4s 89 shl state3.4s, tmp.4s, #8 [all …]
|
| /linux/drivers/media/test-drivers/visl/ |
| H A D | visl-trace-h264.h | 12 TP_PROTO(const struct v4l2_ctrl_h264_sps *s), 13 TP_ARGS(s), 14 TP_STRUCT__entry(__field_struct(struct v4l2_ctrl_h264_sps, s)), 15 TP_fast_assign(__entry->s = *s), 17 "constraint_set_flags %s\n" 28 "offset_for_ref_frame %s\n" 33 "flags %s", 34 __entry->s.profile_idc, 35 __print_flags(__entry->s.constraint_set_flags, "|", 42 __entry->s.level_idc, [all …]
|
| /linux/net/ceph/ |
| H A D | debugfs.c | 34 static int monmap_show(struct seq_file *s, void *p) in monmap_show() argument 37 struct ceph_client *client = s->private; in monmap_show() 43 seq_printf(s, "epoch %d\n", client->monc.monmap->epoch); in monmap_show() 48 seq_printf(s, "\t%s%lld\t%s\n", in monmap_show() 58 static int osdmap_show(struct seq_file *s, void *p) in osdmap_show() argument 61 struct ceph_client *client = s->private; in osdmap_show() 71 seq_printf(s, "epoch %u barrier %u flags 0x%x\n", map->epoch, in osdmap_show() 78 …seq_printf(s, "pool %lld '%s' type %d size %d min_size %d pg_num %u pg_num_mask %d flags 0x%llx lf… in osdmap_show() 89 seq_printf(s, "osd%d\t%s\t%3d%%\t(%s)\t%3d%%\t%2d\n", in osdmap_show() 101 seq_printf(s, "pg_temp %llu.%x [", pg->pgid.pool, in osdmap_show() [all …]
|
| /linux/drivers/md/persistent-data/ |
| H A D | dm-btree-spine.c | 43 DMERR_LIMIT("%s failed: blocknr %llu != wanted %llu", __func__, in node_check() 52 DMERR_LIMIT("%s failed: csum %u != wanted %u", __func__, in node_check() 63 DMERR_LIMIT("%s failed: max_entries too large", __func__); in node_check() 68 DMERR_LIMIT("%s failed: too many entries", __func__); in node_check() 77 DMERR_LIMIT("%s failed: node is neither INTERNAL or LEAF", __func__); in node_check() 124 void init_ro_spine(struct ro_spine *s, struct dm_btree_info *info) in init_ro_spine() argument 126 s->info = info; in init_ro_spine() 127 s->count = 0; in init_ro_spine() 128 s->nodes[0] = NULL; in init_ro_spine() 129 s->nodes[1] = NULL; in init_ro_spine() [all …]
|