/Linux-v6.6/arch/m68k/ifpsp060/ |
D | MISC | 3 M68000 Hi-Performance Microprocessor Division 5 Production Release P1.00 -- October 10, 1994 30 ----------------------- 33 ---------- 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 [all …]
|
/Linux-v6.6/lib/xz/ |
D | xz_dec_stream.c | 35 /* Position in variable-length integers and Check fields */ 38 /* Variable-length integer decoded by dec_vli() */ 152 * Fill s->temp by copying data starting from b->in[b->in_pos]. Caller 153 * must have set s->temp.pos to indicate how much data we are supposed 154 * to copy into s->temp.buf. Return true once s->temp.pos has reached 155 * s->temp.size. 157 static bool fill_temp(struct xz_dec *s, struct xz_buf *b) in fill_temp() argument 160 b->in_size - b->in_pos, s->temp.size - s->temp.pos); in fill_temp() 162 memcpy(s->temp.buf + s->temp.pos, b->in + b->in_pos, copy_size); in fill_temp() 163 b->in_pos += copy_size; in fill_temp() [all …]
|
D | xz_dec_lzma2.c | 5 * Igor Pavlov <https://7-zip.org/> 35 * In multi-call mode, also these are true: 40 * Most of these variables are size_t to support single-call mode, 64 * End of the dictionary buffer. In multi-call mode, this is 65 * the same as the dictionary size. In single-call mode, this 78 * Maximum allowed dictionary size in multi-call mode. 79 * This is ignored in single-call mode. 107 * temp.buf or the caller-provided input buffer. 122 /* Probabilities for match lengths 2-9 */ 125 /* Probabilities for match lengths 10-17 */ [all …]
|
/Linux-v6.6/arch/x86/kvm/ |
D | i8259.c | 4 * Copyright (c) 2003-2004 Fabrice Bellard 44 static void pic_lock(struct kvm_pic *s) in pic_lock() argument 45 __acquires(&s->lock) in pic_lock() 47 spin_lock(&s->lock); in pic_lock() 50 static void pic_unlock(struct kvm_pic *s) in pic_unlock() argument 51 __releases(&s->lock) in pic_unlock() 53 bool wakeup = s->wakeup_needed; in pic_unlock() 57 s->wakeup_needed = false; in pic_unlock() 59 spin_unlock(&s->lock); in pic_unlock() 62 kvm_for_each_vcpu(i, vcpu, s->kvm) { in pic_unlock() [all …]
|
/Linux-v6.6/drivers/media/usb/airspy/ |
D | airspy.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 11 #include <media/v4l2-device.h> 12 #include <media/v4l2-ioctl.h> 13 #include <media/v4l2-ctrls.h> 14 #include <media/v4l2-event.h> 15 #include <media/videobuf2-v4l2.h> 16 #include <media/videobuf2-vmalloc.h> 90 /* common v4l buffer stuff -- must be first */ 154 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 [all …]
|
/Linux-v6.6/ |
D | CREDITS | 1 This is at least a partial credits-file of people that have 4 scripts. The fields are: name (N), email (E), web-address 6 snail-mail address (S). 10 ---------- 19 D: One of assisting postmasters for vger.kernel.org's lists 20 S: (ask for current address) 21 S: Finland 31 S: C. Negri 6, bl. D3 32 S: Iasi 6600 33 S: Romania [all …]
|
/Linux-v6.6/arch/arm64/crypto/ |
D | sm4-ce-asm.h | 1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 8 ld1 {v24.16b-v27.16b}, [ptr], #64; \ 9 ld1 {v28.16b-v31.16b}, [ptr]; 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; \ [all …]
|
D | chacha-neon-core.S | 4 * Copyright (C) 2016-2018 Linaro, Ltd. <ard.biesheuvel@linaro.org> 11 * ChaCha20 256-bit cipher algorithm, RFC7539, x64 SSSE3 functions 29 * chacha_permute - permute one block 31 * Permute one 64-byte block where the state matrix is stored in the four NEON 32 * registers v0-v3. It performs matrix operations on four words in parallel, 42 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, v4.4s, #20 [all …]
|
/Linux-v6.6/drivers/tty/serial/ |
D | max3100.c | 1 // SPDX-License-Identifier: GPL-2.0+ 29 * The initial minor number is 209 in the low-density serial port: 102 * (bits 0-7, bits 8-11 are irqs) */ 139 static int max3100_do_parity(struct max3100_port *s, u16 c) in max3100_do_parity() argument 143 if (s->parity & MAX3100_PARITY_ODD) in max3100_do_parity() 148 if (s->parity & MAX3100_7BIT) in max3100_do_parity() 157 static int max3100_check_parity(struct max3100_port *s, u16 c) in max3100_check_parity() argument 159 return max3100_do_parity(s, c) == ((c >> 8) & 1); in max3100_check_parity() 162 static void max3100_calc_parity(struct max3100_port *s, u16 *c) in max3100_calc_parity() argument 164 if (s->parity & MAX3100_7BIT) in max3100_calc_parity() [all …]
|
/Linux-v6.6/drivers/media/pci/tw5864/ |
D | tw5864-h264.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 3 * TW5864 driver - H.264 headers generation functions 15 * Exponential-Golomb coding functions 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() [all …]
|
/Linux-v6.6/arch/mips/cavium-octeon/executive/ |
D | cvmx-interrupt-decodes.c | 7 * Copyright (c) 2003-2009 Cavium Networks 14 * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty 21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 37 #include <asm/octeon/cvmx-gmxx-defs.h> 38 #include <asm/octeon/cvmx-pcsx-defs.h> 39 #include <asm/octeon/cvmx-pcsxx-defs.h> 40 #include <asm/octeon/cvmx-spxx-defs.h> 41 #include <asm/octeon/cvmx-stxx-defs.h> 49 * __cvmx_interrupt_gmxx_rxx_int_en_enable - enable all interrupt bits in cvmx_gmxx_rxx_int_en_t 60 /* Skipping gmx_rx_int_en.s.reserved_29_63 */ in __cvmx_interrupt_gmxx_rxx_int_en_enable() [all …]
|
/Linux-v6.6/tools/mm/ |
D | slabinfo.c | 1 // SPDX-License-Identifier: GPL-2.0 10 * gcc -o slabinfo slabinfo.c 84 int output_lines = -1; 114 "slabinfo [-aABDefhilLnoPrsStTUvXz1] [N=K] [-dafzput] [slab-regexp]\n" in usage() 115 "-a|--aliases Show aliases\n" in usage() 116 "-A|--activity Most active slabs first\n" in usage() 117 "-B|--Bytes Show size in bytes\n" in usage() 118 "-D|--display-active Switch line format to activity\n" in usage() 119 "-e|--empty Show empty slabs\n" in usage() 120 "-f|--first-alias Show first alias\n" in usage() [all …]
|
/Linux-v6.6/drivers/media/pci/ivtv/ |
D | ivtv-irq.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 3 Copyright (C) 2003-2004 Kevin Thayer <nufan_wfk at yahoo.com> 5 Copyright (C) 2005-2007 Hans Verkuil <hverkuil@xs4all.nl> 9 #include "ivtv-driver.h" 10 #include "ivtv-queue.h" 11 #include "ivtv-udma.h" 12 #include "ivtv-irq.h" 13 #include "ivtv-mailbox.h" 14 #include "ivtv-vbi.h" 15 #include "ivtv-yuv.h" [all …]
|
D | ivtv-queue.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 4 Copyright (C) 2003-2004 Kevin Thayer <nufan_wfk at yahoo.com> 6 Copyright (C) 2005-2007 Hans Verkuil <hverkuil@xs4all.nl> 10 #include "ivtv-driver.h" 11 #include "ivtv-queue.h" 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() 17 if (copy_from_user(buf->buf + buf->bytesused, src, copybytes)) { in ivtv_buf_copy_from_user() 18 return -EFAULT; in ivtv_buf_copy_from_user() [all …]
|
/Linux-v6.6/drivers/media/platform/st/sti/bdisp/ |
D | bdisp-debug.c | 1 // SPDX-License-Identifier: GPL-2.0 11 #include "bdisp-filter.h" 12 #include "bdisp-reg.h" 16 bdisp->dbg.hw_start = ktime_get(); in bdisp_dbg_perf_begin() 23 time_us = ktime_us_delta(ktime_get(), bdisp->dbg.hw_start); in bdisp_dbg_perf_end() 25 if (!bdisp->dbg.min_duration) in bdisp_dbg_perf_end() 26 bdisp->dbg.min_duration = time_us; in bdisp_dbg_perf_end() 28 bdisp->dbg.min_duration = min(time_us, bdisp->dbg.min_duration); in bdisp_dbg_perf_end() 30 bdisp->dbg.last_duration = time_us; in bdisp_dbg_perf_end() 31 bdisp->dbg.max_duration = max(time_us, bdisp->dbg.max_duration); in bdisp_dbg_perf_end() [all …]
|
/Linux-v6.6/drivers/media/test-drivers/visl/ |
D | visl-trace-hevc.h | 1 /* SPDX-License-Identifier: GPL-2.0+ */ 12 TP_PROTO(const struct v4l2_ctrl_hevc_sps *s), 13 TP_ARGS(s), 14 TP_STRUCT__entry(__field_struct(struct v4l2_ctrl_hevc_sps, s)), 15 TP_fast_assign(__entry->s = *s), 40 "flags %s", 41 __entry->s.video_parameter_set_id, 42 __entry->s.seq_parameter_set_id, 43 __entry->s.pic_width_in_luma_samples, 44 __entry->s.pic_height_in_luma_samples, [all …]
|
/Linux-v6.6/drivers/media/pci/cx18/ |
D | cx18-streams.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 5 * Derived from ivtv-streams.c 11 #include "cx18-driver.h" 12 #include "cx18-io.h" 13 #include "cx18-fileops.h" 14 #include "cx18-mailbox.h" 15 #include "cx18-i2c.h" 16 #include "cx18-queue.h" 17 #include "cx18-ioctl.h" 18 #include "cx18-streams.h" [all …]
|
/Linux-v6.6/lib/zlib_deflate/ |
D | deflate.c | 2 /* deflate.c -- compress data using the deflation algorithm 3 * Copyright (C) 1995-1996 Jean-loup Gailly. 24 * A similar algorithm is used in comic (by Jan-Mark Wams) and freeze 34 * The idea of lazy evaluation of matches is due to Jan-Mark Wams, and 44 * "Algorithms" by R. Sedgewick, Addison-Wesley, p252. 47 * Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595 55 /* architecture-specific bits */ 69 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); [all …]
|
/Linux-v6.6/Documentation/sphinx/ |
D | parse-headers.pl | 18 pod2usage(-exitstatus => 0, -verbose => 2) if $man; 45 $ln =~ s,/\*.*(\*/),,g; 47 $is_comment = 1 if ($ln =~ s,/\*.*,,); 49 if ($ln =~ s,^(.*\*/),,) { 56 if ($is_enum && $ln =~ m/^\s*([_\w][\w\d_]+)\s*[\,=]?/) { 57 my $s = $1; 59 $n =~ tr/A-Z/a-z/; 60 $n =~ tr/_/-/; 62 $enum_symbols{$s} = "\\ :ref:`$s <$n>`\\ "; 69 if ($ln =~ m/^\s*#\s*define\s+([_\w][\w\d_]+)\s+_IO/) { [all …]
|
/Linux-v6.6/drivers/watchdog/ |
D | sbc8360.c | 1 // SPDX-License-Identifier: GPL-2.0+ 15 * (c) Copyright 2000-2001 Marek Michalkiewicz <marekm@linux.org.pl> 25 * "AS-IS" and at no charge. 29 * 14-Dec-2001 Matt Domsch <Matt_Domsch@dell.com> 76 * MOV AX,000nH (set multiplier n, from 1-4) 79 * MOV AX,000mH (set base timer m, from 0-F) 96 * --|---------------------------------- 97 * 0 | 0.5s 5s 50s 100s 98 * 1 | 1s 10s 100s 200s 99 * 2 | 1.5s 15s 150s 300s [all …]
|
/Linux-v6.6/kernel/trace/ |
D | trace_seq.c | 1 // SPDX-License-Identifier: GPL-2.0 5 * Copyright (C) 2008-2014 Red Hat Inc, Steven Rostedt <srostedt@redhat.com> 31 #define TRACE_SEQ_BUF_LEFT(s) seq_buf_buffer_left(&(s)->seq) argument 34 * trace_seq should work with being initialized with 0s. 36 static inline void __trace_seq_init(struct trace_seq *s) in __trace_seq_init() argument 38 if (unlikely(!s->seq.size)) in __trace_seq_init() 39 trace_seq_init(s); in __trace_seq_init() 43 * trace_print_seq - move the contents of trace_seq into a seq_file 45 * @s: the trace_seq descriptor that is the source. 51 int trace_print_seq(struct seq_file *m, struct trace_seq *s) in trace_print_seq() argument [all …]
|
/Linux-v6.6/drivers/net/hamradio/ |
D | hdlcdrv.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 5 * hdlcdrv.c -- HDLC packet radio network driver. 7 * Copyright (C) 1996-2000 Thomas Sailer (sailer@ife.ee.ethz.ch) 14 * Written 1993-94 by Donald Becker. 51 #include <linux/crc-ccitt.h> 53 /* --------------------------------------------------------------------- */ 57 /* --------------------------------------------------------------------- */ 67 /* --------------------------------------------------------------------- */ 74 /*---------------------------------------------------------------------------*/ 84 /*---------------------------------------------------------------------------*/ [all …]
|
/Linux-v6.6/drivers/mtd/spi-nor/ |
D | debugfs.c | 1 // SPDX-License-Identifier: GPL-2.0 4 #include <linux/mtd/spi-nor.h> 6 #include <linux/spi/spi-mem.h> 10 #define SPI_NOR_DEBUGFS_ROOT "spi-nor" 37 case SNOR_PROTO_1_1_1: return "1S-1S-1S"; in spi_nor_protocol_name() 38 case SNOR_PROTO_1_1_2: return "1S-1S-2S"; in spi_nor_protocol_name() 39 case SNOR_PROTO_1_1_4: return "1S-1S-4S"; in spi_nor_protocol_name() 40 case SNOR_PROTO_1_1_8: return "1S-1S-8S"; in spi_nor_protocol_name() 41 case SNOR_PROTO_1_2_2: return "1S-2S-2S"; in spi_nor_protocol_name() 42 case SNOR_PROTO_1_4_4: return "1S-4S-4S"; in spi_nor_protocol_name() [all …]
|
/Linux-v6.6/sound/firewire/ |
D | amdtp-stream.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * Audio and Music Data Transmission Protocol (IEC 61883-6) streams 4 * with Common Isochronous Packet (IEC 61883-1) headers 12 #include <linux/firewire-constants.h> 17 #include "amdtp-stream.h" 27 #include "amdtp-stream-trace.h" 81 * amdtp_stream_init - initialize an AMDTP stream structure 82 * @s: the AMDTP stream to initialize 85 * @flags: the details of the streaming protocol consist of cip_flags enumeration-constants. 90 int amdtp_stream_init(struct amdtp_stream *s, struct fw_unit *unit, in amdtp_stream_init() argument [all …]
|
/Linux-v6.6/sound/usb/usx2y/ |
D | usb_stream.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 15 struct usb_stream *s = sk->s; in usb_stream_next_packet_size() local 17 sk->out_phase_peeked = (sk->out_phase & 0xffff) + sk->freqn; in usb_stream_next_packet_size() 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 26 for (pack = 0; pack < sk->n_o_ps; pack++) { in playback_prep_freqn() 29 if (s->idle_outsize + lb + l > s->period_size) in playback_prep_freqn() 32 sk->out_phase = sk->out_phase_peeked; in playback_prep_freqn() 33 urb->iso_frame_desc[pack].offset = lb; in playback_prep_freqn() 34 urb->iso_frame_desc[pack].length = l; in playback_prep_freqn() [all …]
|