Home
last modified time | relevance | path

Searched refs:number (Results 1 – 25 of 2941) sorted by relevance

12345678910>>...118

/Linux-v4.19/tools/bpf/
Dbpf_exp.l87 yylval.number = SKF_AD_PROTOCOL;
91 yylval.number = SKF_AD_PKTTYPE;
95 yylval.number = SKF_AD_PAY_OFFSET;
99 yylval.number = SKF_AD_IFINDEX;
103 yylval.number = SKF_AD_NLATTR;
107 yylval.number = SKF_AD_NLATTR_NEST;
111 yylval.number = SKF_AD_MARK;
115 yylval.number = SKF_AD_QUEUE;
119 yylval.number = SKF_AD_HATYPE;
123 yylval.number = SKF_AD_RXHASH;
[all …]
Dbpf_exp.y51 uint32_t number; member
63 %token extension number label
66 %type <number> extension
67 %type <number> number
123 : OP_LDB '[' 'x' '+' number ']' {
125 | OP_LDB '[' '%' 'x' '+' number ']' {
127 | OP_LDB '[' number ']' {
135 : OP_LDH '[' 'x' '+' number ']' {
137 | OP_LDH '[' '%' 'x' '+' number ']' {
139 | OP_LDH '[' number ']' {
[all …]
/Linux-v4.19/drivers/acpi/acpica/
Dutprint.c31 u64 number,
34 static char *acpi_ut_put_number(char *string, u64 number, u8 base, u8 upper);
104 static char *acpi_ut_put_number(char *string, u64 number, u8 base, u8 upper) in acpi_ut_put_number() argument
113 if (number == 0) { in acpi_ut_put_number()
116 while (number) { in acpi_ut_put_number()
117 (void)acpi_ut_divide(number, base, &number, in acpi_ut_put_number()
142 u64 number = 0; in acpi_ut_scan_number() local
145 acpi_ut_short_multiply(number, 10, &number); in acpi_ut_scan_number()
146 number += *(string++) - '0'; in acpi_ut_scan_number()
149 *number_ptr = number; in acpi_ut_scan_number()
[all …]
/Linux-v4.19/sound/core/
Dpcm_trace.h18 __field( unsigned int, number )
28 __entry->card = (substream)->pcm->card->number;
30 __entry->number = (substream)->number;
41 __entry->number,
56 __field( unsigned int, number )
64 __entry->card = (substream)->pcm->card->number;
66 __entry->number = (substream)->number;
76 __entry->number,
89 __field( unsigned int, number )
94 __entry->card = (substream)->pcm->card->number;
[all …]
/Linux-v4.19/arch/arm/mm/
Dpmsa-v8.c83 static __init bool is_region_fixed(int number) in is_region_fixed() argument
85 switch (number) { in is_region_fixed()
140 static int __init __pmsav8_setup_region(unsigned int number, u32 bar, u32 lar) in __pmsav8_setup_region() argument
142 if (number > mpu_max_regions in __pmsav8_setup_region()
143 || number >= MPU_MAX_REGIONS) in __pmsav8_setup_region()
147 prsel_write(number); in __pmsav8_setup_region()
152 mpu_rgn_info.rgns[number].prbar = bar; in __pmsav8_setup_region()
153 mpu_rgn_info.rgns[number].prlar = lar; in __pmsav8_setup_region()
160 static int __init pmsav8_setup_ram(unsigned int number, phys_addr_t start,phys_addr_t end) in pmsav8_setup_ram() argument
164 if (is_region_fixed(number)) in pmsav8_setup_ram()
[all …]
/Linux-v4.19/sound/pci/emu10k1/
Dvoice.c48 static int voice_alloc(struct snd_emu10k1 *emu, int type, int number, in voice_alloc() argument
56 for (i = emu->next_free_voice, j = 0; j < NUM_G ; i += number, j += number) { in voice_alloc()
64 if ((number == 2) && (i % 2)) { in voice_alloc()
70 for (k = 0; k < number; k++) { in voice_alloc()
80 last_voice = (i + number) % NUM_G; in voice_alloc()
89 for (i = 0; i < number; i++) { in voice_alloc()
115 int snd_emu10k1_voice_alloc(struct snd_emu10k1 *emu, int type, int number, in snd_emu10k1_voice_alloc() argument
123 if (snd_BUG_ON(!number)) in snd_emu10k1_voice_alloc()
128 result = voice_alloc(emu, type, number, rvoice); in snd_emu10k1_voice_alloc()
163 snd_emu10k1_voice_init(emu, pvoice->number); in snd_emu10k1_voice_free()
/Linux-v4.19/sound/firewire/fireface/
Dff-midi.c22 ff->running_status[substream->number] = 0; in midi_playback_open()
23 ff->rx_midi_error[substream->number] = false; in midi_playback_open()
25 WRITE_ONCE(ff->rx_midi_substreams[substream->number], substream); in midi_playback_open()
40 cancel_work_sync(&ff->rx_midi_work[substream->number]); in midi_playback_close()
41 WRITE_ONCE(ff->rx_midi_substreams[substream->number], NULL); in midi_playback_close()
55 WRITE_ONCE(ff->tx_midi_substreams[substream->number], in midi_capture_trigger()
58 WRITE_ONCE(ff->tx_midi_substreams[substream->number], NULL); in midi_capture_trigger()
71 if (up || !ff->rx_midi_error[substream->number]) in midi_playback_trigger()
72 schedule_work(&ff->rx_midi_work[substream->number]); in midi_playback_trigger()
84 "%s MIDI %d", name, substream->number + 1); in set_midi_substream_names()
/Linux-v4.19/net/atm/
Dresources.c52 static struct atm_dev *__atm_dev_lookup(int number) in __atm_dev_lookup() argument
59 if (dev->number == number) { in __atm_dev_lookup()
67 struct atm_dev *atm_dev_lookup(int number) in atm_dev_lookup() argument
72 dev = __atm_dev_lookup(number); in atm_dev_lookup()
79 const struct atmdev_ops *ops, int number, in atm_dev_register() argument
90 if (number != -1) { in atm_dev_register()
91 inuse = __atm_dev_lookup(number); in atm_dev_register()
98 dev->number = number; in atm_dev_register()
100 dev->number = 0; in atm_dev_register()
101 while ((inuse = __atm_dev_lookup(dev->number))) { in atm_dev_register()
[all …]
/Linux-v4.19/tools/testing/selftests/tc-testing/
Dtdc_batch.py30 number = 1 variable
31 if args.number:
32 number = args.number variable
45 if number > 0x4000:
46 number = 0x4000 variable
60 if index >= number:
/Linux-v4.19/Documentation/block/
Dstat.txt23 read I/Os requests number of read I/Os processed
24 read merges requests number of read I/Os merged with in-queue I/O
25 read sectors sectors number of sectors read
27 write I/Os requests number of write I/Os processed
28 write merges requests number of write I/Os merged with in-queue I/O
29 write sectors sectors number of sectors written
31 in_flight requests number of I/Os currently in flight
34 discard I/Os requests number of discard I/Os processed
35 discard merges requests number of discard I/Os merged with in-queue I/O
36 discard sectors sectors number of sectors discarded
[all …]
/Linux-v4.19/fs/dlm/
Dplock.c80 static void do_unlock_close(struct dlm_ls *ls, u64 number, in do_unlock_close() argument
92 op->info.number = number; in do_unlock_close()
104 int dlm_posix_lock(dlm_lockspace_t *lockspace, u64 number, struct file *file, in dlm_posix_lock() argument
128 op->info.number = number; in dlm_posix_lock()
151 (unsigned long long)number); in dlm_posix_lock()
156 do_unlock_close(ls, number, file, fl); in dlm_posix_lock()
167 (unsigned long long)number); in dlm_posix_lock()
177 (unsigned long long)number); in dlm_posix_lock()
200 (unsigned long long)op->info.number); in dlm_plock_callback()
228 (unsigned long long)op->info.number, file, fl); in dlm_plock_callback()
[all …]
/Linux-v4.19/sound/firewire/tascam/
Dtascam-midi.c21 snd_fw_async_midi_port_init(&tscm->out_ports[substream->number]); in midi_playback_open()
41 snd_fw_async_midi_port_finish(&tscm->out_ports[substream->number]); in midi_playback_drain()
52 tscm->tx_midi_substreams[substrm->number] = substrm; in midi_capture_trigger()
54 tscm->tx_midi_substreams[substrm->number] = NULL; in midi_capture_trigger()
67 snd_fw_async_midi_port_run(&tscm->out_ports[substrm->number], in midi_playback_trigger()
110 if (subs->number < tscm->spec->midi_capture_ports) { in snd_tscm_create_midi_devices()
114 tscm->card->shortname, subs->number + 1); in snd_tscm_create_midi_devices()
125 if (subs->number < tscm->spec->midi_playback_ports) { in snd_tscm_create_midi_devices()
129 tscm->card->shortname, subs->number + 1); in snd_tscm_create_midi_devices()
/Linux-v4.19/Documentation/ABI/testing/
Dsysfs-class-net-statistics6 Indicates the number of collisions seen by this network device.
14 Indicates the number of multicast packets received by this
22 Indicates the number of bytes received by this network device.
31 Indicates the number of compressed packets received by this
40 Indicates the number of packets received with a CRC (FCS) error
49 Indicates the number of packets received by the network device
59 Indicates the number of receive FIFO errors seen by this
68 Indicates the number of received frames with error, such as
78 Indicates the number of received error packet with a length
87 Indicates the number of received packets that have been missed
[all …]
/Linux-v4.19/arch/microblaze/pci/
Dindirect_pci.c31 if (bus->number != hose->first_busno) in indirect_read_config()
38 if (bus->number != hose->first_busno) in indirect_read_config()
41 bus_no = (bus->number == hose->first_busno) ? in indirect_read_config()
42 hose->self_busno : bus->number; in indirect_read_config()
85 if (bus->number != hose->first_busno) in indirect_write_config()
92 if (bus->number != hose->first_busno) in indirect_write_config()
95 bus_no = (bus->number == hose->first_busno) ? in indirect_write_config()
96 hose->self_busno : bus->number; in indirect_write_config()
113 (bus->number == hose->first_busno)) in indirect_write_config()
/Linux-v4.19/net/netfilter/
Dxt_u32.c36 pos = ct->location[0].number; in u32_match_it()
48 u_int32_t number = ct->location[i].number; in u32_match_it() local
51 val &= number; in u32_match_it()
54 val <<= number; in u32_match_it()
57 val >>= number; in u32_match_it()
63 pos = number; in u32_match_it()
/Linux-v4.19/Documentation/filesystems/ext4/ondisk/
Dmmp.rst10 sequence number. If the sequence number is EXT4\_MMP\_SEQ\_CLEAN, the
11 open continues. If the sequence number is EXT4\_MMP\_SEQ\_FSCK, then
14 the sequence number again. If the sequence number has changed, then the
16 code passes all of those checks, a new MMP sequence number is generated
21 the MMP sequence number is re-read; if it does not match the in-memory
22 MMP sequence number, then another node (node B) has mounted the
24 sequence numbers match, the sequence number is incremented both in
45 - Magic number for MMP, 0x004D4D50 (“MMP”).
49 - Sequence number, updated periodically.
/Linux-v4.19/Documentation/device-mapper/
Dstatistics.txt56 number of areas.
59 The number of optional arguments
73 number of requests that completed within this range. For
75 report four numbers a:b:c:d. a is the number of requests
76 that took 0-10 ms to complete, b is the number of requests
77 that took 10-20 ms to complete, c is the number of requests
78 that took 20-30 ms to complete and d is the number of
88 If we omit the number of optional arguments, program id must not
89 be a number, otherwise it would be interpreted as the number of
141 The number of lines to include in the output.
[all …]
/Linux-v4.19/arch/x86/pci/
Dpcbios.c189 u16 number = 0, mask = 0; in pci_bios_read() local
199 number = PCIBIOS_READ_CONFIG_BYTE; in pci_bios_read()
203 number = PCIBIOS_READ_CONFIG_WORD; in pci_bios_read()
207 number = PCIBIOS_READ_CONFIG_DWORD; in pci_bios_read()
217 : "1" (number), in pci_bios_read()
239 u16 number = 0; in pci_bios_write() local
249 number = PCIBIOS_WRITE_CONFIG_BYTE; in pci_bios_write()
252 number = PCIBIOS_WRITE_CONFIG_WORD; in pci_bios_write()
255 number = PCIBIOS_WRITE_CONFIG_DWORD; in pci_bios_write()
264 : "0" (number), in pci_bios_write()
[all …]
/Linux-v4.19/Documentation/devicetree/bindings/sound/
Dwlf,arizona.txt12 - wlf,inmode : A list of INn_MODE register values, where n is the number
15 If present, values must be specified less than or equal to the number of
16 input signals. If values less than the number of input signals, elements
23 indicates a mono output. If present, the number of values should be less
24 than or equal to the number of outputs, if less values are supplied the
30 present, the number of values should be less than or equal to the
31 number of inputs, unspecified inputs will use the chip default.
33 - wlf,max-channels-clocked : The maximum number of channels to be clocked on
37 If present, number of cells must be less than or equal to the number of
38 AIFs. If less than the number of AIFs, for cells that have not been
/Linux-v4.19/Documentation/filesystems/pohmelfs/
Dnetwork_protocol.txt7 __u16 cmd; /* Command number */
25 @cmd - command number, which specifies command to be processed. Following
28 NETFS_READDIR = 1, /* Read directory for given inode number */
66 @id - local inode number of the directory to read.
74 @id - inode number.
76 @size - number of bytes to read plus length of the path to object.
89 @id - local inode number
98 @id - local inode number.
107 @id - local inode number of the directory to look object in.
108 @start - local inode number of the object to look at.
[all …]
/Linux-v4.19/Documentation/devicetree/bindings/interrupt-controller/
Dcdns,xtensa-pic.txt6 - #interrupt-cells: The number of cells to define the interrupts.
8 When it's 1, the first cell is the internal IRQ number.
9 When it's 2, the first cell is the IRQ number, and the second cell
19 /* one cell: internal irq number,
20 * two cells: second cell == 0: internal irq number
21 * second cell == 1: external irq number
/Linux-v4.19/Documentation/sysctl/
Duser.txt10 limits on the number of namespaces and other objects that have
14 malfunction and attempt to create a ridiculous number of objects,
35 The maximum number of cgroup namespaces that any user in the current
40 The maximum number of ipc namespaces that any user in the current
45 The maximum number of mount namespaces that any user in the current
50 The maximum number of network namespaces that any user in the
55 The maximum number of pid namespaces that any user in the current
60 The maximum number of user namespaces that any user in the current
65 The maximum number of user namespaces that any user in the current
/Linux-v4.19/drivers/net/wireless/marvell/mwifiex/
DREADME106 num_tx_bytes = <number of bytes sent to device>
107 num_rx_bytes = <number of bytes received from device and sent to kernel>
108 num_tx_pkts = <number of packets sent to device>
109 num_rx_pkts = <number of packets received from device and sent to kernel>
110 num_tx_pkts_dropped = <number of Tx packets dropped by driver>
111 num_rx_pkts_dropped = <number of Rx packets dropped by driver>
112 num_tx_pkts_err = <number of Tx packets failed to send to device>
113 num_rx_pkts_err = <number of Rx packets failed to receive from device>
120 wmm_ac_vo = <number of packets sent to device from WMM AcVo queue>
121 wmm_ac_vi = <number of packets sent to device from WMM AcVi queue>
[all …]
/Linux-v4.19/drivers/clk/sunxi/
Dclk-sun8i-bus-gates.c40 int number, i; in sun8i_h3_bus_gates_init() local
61 number = of_property_count_u32_elems(node, "clock-indices"); in sun8i_h3_bus_gates_init()
62 of_property_read_u32_index(node, "clock-indices", number - 1, &number); in sun8i_h3_bus_gates_init()
64 clk_data->clks = kcalloc(number + 1, sizeof(struct clk *), GFP_KERNEL); in sun8i_h3_bus_gates_init()
101 clk_data->clk_num = number + 1; in sun8i_h3_bus_gates_init()
/Linux-v4.19/Documentation/devicetree/bindings/usb/
Dtwlxxxx-usb.txt6 interrupt number is the otg interrupt number that raises ID interrupts when
7 the controller has to act as host and the second interrupt number is the
8 usb interrupt number that raises VBUS interrupts when the controller has to
26 interrupt number is the otg interrupt number that raises ID interrupts
27 and VBUS interrupts. The second interrupt number is optional.

12345678910>>...118