/Linux-v4.19/arch/xtensa/include/asm/ |
D | asmmacro.h | 49 .macro __loopi ar, at, size, incr 52 movi \at, ((\size + \incr - 1) / (\incr)) 53 loop \at, 99f 55 addi \at, \ar, \size 65 .macro __loops ar, as, at, incr_log2, mask_log2, cond, ncond 69 addi \at, \as, (1 << \incr_log2) - 1 71 extui \at, \at, \incr_log2, \mask_log2 73 srli \at, \at, \incr_log2 76 loop\cond \at, 99f 79 extui \at, \as, \incr_log2, \mask_log2 [all …]
|
D | cacheasm.h | 35 .macro __loop_cache_unroll ar at insn size line_width max_immed 45 __loopi \ar, \at, \size, (_reps << (\line_width)) 51 __endla \ar, \at, _reps << (\line_width) 56 .macro __loop_cache_all ar at insn size line_width max_immed 59 __loop_cache_unroll \ar, \at, \insn, \size, \line_width, \max_immed 64 .macro __loop_cache_range ar as at insn line_width 66 extui \at, \ar, 0, \line_width 67 add \as, \as, \at 69 __loops \ar, \as, \at, \line_width 71 __endla \ar, \at, (1 << (\line_width)) [all …]
|
D | asm-uaccess.h | 65 .macro set_fs at, av, sp 66 GET_CURRENT(\at,\sp) 67 s32i \av, \at, THREAD_CURRENT_DS 93 .macro kernel_ok at, sp, success 94 get_fs \at, \sp 95 beqz \at, \success 121 .macro user_ok aa, as, at, error 122 movi \at, __XTENSA_UL_CONST(TASK_SIZE) 123 bgeu \as, \at, \error 124 sub \at, \at, \as [all …]
|
/Linux-v4.19/drivers/scsi/ |
D | 53c700_d.h_shipped | 12 ;; (at your option) any later version. 146 at 0x00000000 : */ 0x41000000,0x00000020, 150 at 0x00000002 : */ 0x830b0000,0x00000460, 154 at 0x00000004 : */ 0x860a0000,0x000001b0, 158 at 0x00000006 : */ 0x98080000,0x00000110, 164 at 0x00000008 : */ 0x50000000,0x00000058, 168 at 0x0000000a : */ 0x9f0b0000,0x00001000, 172 at 0x0000000c : */ 0x98080000,0x00002002, 179 at 0x0000000e : */ 0x0f000001,0x00000000, 183 at 0x00000010 : */ 0x98080000,0x00001003, [all …]
|
/Linux-v4.19/drivers/ata/ |
D | pata_ns87410.c | 68 struct ata_timing at; in ns87410_set_piomode() local 87 if (ata_timing_compute(adev, adev->pio_mode, &at, 30303, 1) < 0) { in ns87410_set_piomode() 92 at.active = clamp_val(at.active, 2, 16) - 2; in ns87410_set_piomode() 93 at.setup = clamp_val(at.setup, 1, 4) - 1; in ns87410_set_piomode() 94 at.recover = clamp_val(at.recover, 1, 12) - 1; in ns87410_set_piomode() 96 idetcr = (at.setup << 6) | (recoverbits[at.recover] << 3) | activebits[at.active]; in ns87410_set_piomode()
|
D | pata_amd.c | 51 struct ata_timing at, apeer; in timing_setup() local 61 if (ata_timing_compute(adev, speed, &at, T, UT) < 0) { in timing_setup() 70 ata_timing_merge(&apeer, &at, &at, ATA_TIMING_8BIT); in timing_setup() 73 ata_timing_merge(&apeer, &at, &at, ATA_TIMING_8BIT); in timing_setup() 76 if (speed == XFER_UDMA_5 && amd_clock <= 33333) at.udma = 1; in timing_setup() 77 if (speed == XFER_UDMA_6 && amd_clock <= 33333) at.udma = 15; in timing_setup() 85 t = (t & ~(3 << ((3 - dn) << 1))) | ((clamp_val(at.setup, 1, 4) - 1) << ((3 - dn) << 1)); in timing_setup() 90 ((clamp_val(at.act8b, 1, 16) - 1) << 4) | (clamp_val(at.rec8b, 1, 16) - 1)); in timing_setup() 94 ((clamp_val(at.active, 1, 16) - 1) << 4) | (clamp_val(at.recover, 1, 16) - 1)); in timing_setup() 98 t = at.udma ? (0xc0 | (clamp_val(at.udma, 2, 5) - 2)) : 0x03; in timing_setup() [all …]
|
/Linux-v4.19/net/netfilter/ |
D | xt_u32.c | 27 u_int32_t at; in u32_match_it() local 35 at = 0; in u32_match_it() 60 if (at + val < at) in u32_match_it() 62 at += val; in u32_match_it() 64 if (at + 4 < at || skb->len < at + 4 || in u32_match_it() 65 pos > skb->len - at - 4) in u32_match_it() 68 if (skb_copy_bits(skb, at + pos, &n, in u32_match_it()
|
/Linux-v4.19/drivers/net/appletalk/ |
D | ipddp.c | 165 ddp->deh_dnet = rt->at.s_net; /* FIXME more hops?? */ in ipddp_xmit() 168 ddp->deh_dnode = rt->at.s_node; in ipddp_xmit() 180 aarp_send_ddp(rt->dev, skb, &rt->at, NULL); in ipddp_xmit() 199 rt->at = new_rt->at; in ipddp_create() 201 if ((rt->dev = atrtr_get_dev(&rt->at)) == NULL) { in ipddp_create() 234 tmp->at.s_net == rt->at.s_net && in ipddp_delete() 235 tmp->at.s_node == rt->at.s_node) in ipddp_delete() 259 f->at.s_net == rt->at.s_net && in __ipddp_find_route() 260 f->at.s_node == rt->at.s_node) in __ipddp_find_route() 289 rcp2.at = rp->at; in ipddp_ioctl()
|
/Linux-v4.19/Documentation/media/dvb-drivers/ |
D | intro.rst | 7 The DVB mailing list linux-dvb is hosted at vger. Please see 10 There are also some other old lists hosted at https://linuxtv.org/lists.php. Please check the archi… 12 The media subsystem Wiki is hosted at https://linuxtv.org/wiki/. 15 API documentation is documented at the Kernel. You'll also find useful 16 documentation at: https://linuxtv.org/docs.php. 18 You may also find useful material at https://linuxtv.org/downloads/. 20 In order to get firmware from proprietary drivers, there's a script at 21 the kernel tree, at scripts/get_dvb_firmware.
|
/Linux-v4.19/Documentation/devicetree/bindings/mips/img/ |
D | xilfpga.txt | 20 - 128Mbyte DDR RAM at 0x0000_0000 21 - 8Kbyte RAM at 0x1000_0000 22 - axi_intc at 0x1020_0000 23 - axi_uart16550 at 0x1040_0000 24 - axi_gpio at 0x1060_0000 25 - axi_i2c at 0x10A0_0000 26 - custom_gpio at 0x10C0_0000 27 - axi_ethernetlite at 0x10E0_0000 28 - 8Kbyte BootRAM at 0x1FC0_0000 39 A CPU sub-node is also required for at least CPU 0. Required properties: [all …]
|
/Linux-v4.19/Documentation/misc-devices/ |
D | eeprom | 20 24C01 1K 0x50 (shadows at 0x51 - 0x57) 24 (additional data at 0x51, 0x53, 0x55, 0x57) 25 24C08 8K 0x50, 0x54 (additional data at 0x51, 0x52, 27 24C16 16K 0x50 (additional data at 0x51 - 0x57) 30 Atmel 34C02B 2K 0x50 - 0x57, SW write protect at 0x30-37 31 Catalyst 34FC02 2K 0x50 - 0x57, SW write protect at 0x30-37 32 Catalyst 34RC02 2K 0x50 - 0x57, SW write protect at 0x30-37 33 Fairchild 34W02 2K 0x50 - 0x57, SW write protect at 0x30-37 34 Microchip 24AA52 2K 0x50 - 0x57, SW write protect at 0x30-37 35 ST M34C02 2K 0x50 - 0x57, SW write protect at 0x30-37 [all …]
|
/Linux-v4.19/tools/perf/util/intel-pt-decoder/ |
D | Build | 16 …tel PT: x86 instruction decoder C file at 'tools/perf/util/intel-pt-decoder/insn.c' differs from l… 18 …tel PT: x86 instruction decoder C file at 'tools/perf/util/intel-pt-decoder/inat.c' differs from l… 20 …x86 instruction decoder map file at 'tools/perf/util/intel-pt-decoder/x86-opcode-map.txt' differs … 22 …x86 instruction decoder script at 'tools/perf/util/intel-pt-decoder/gen-insn-attr-x86.awk' differs… 24 …tel PT: x86 instruction decoder header at 'tools/perf/util/intel-pt-decoder/insn.h' differs from l… 26 …tel PT: x86 instruction decoder header at 'tools/perf/util/intel-pt-decoder/inat.h' differs from l… 28 … PT: x86 instruction decoder header at 'tools/perf/util/intel-pt-decoder/inat_types.h' differs fro…
|
/Linux-v4.19/Documentation/ABI/testing/ |
D | sysfs-driver-ufs | 9 the link into hibernate state. That will save power at the 20 the descriptor could be found at UFS specifications 2.1. 28 the descriptor could be found at UFS specifications 2.1. 36 about the descriptor could be found at UFS specifications 2.1. 45 at UFS specifications 2.1. 53 about the descriptor could be found at UFS specifications 2.1. 62 at UFS specifications 2.1. 71 be found at UFS specifications 2.1. 81 be found at UFS specifications 2.1. 90 about the descriptor could be found at UFS specifications 2.1. [all …]
|
/Linux-v4.19/Documentation/translations/ja_JP/ |
D | stable_kernel_rules.txt | 11 file at first. 20 翻訳者: Tsugikazu Shibata <tshibata at ab dot jp dot nec dot com> 21 校正者: 武井伸光さん、<takei at webmasters dot gr dot jp> 22 かねこさん (Seiji Kaneko) <skaneko at a2 dot mbn dot or dot jp> 23 小林 雅典さん (Masanori Kobayasi) <zap03216 at nifty dot ne dot jp> 24 野口さん (Kenji Noguchi) <tokyo246 at gmail dot com> 25 神宮信太郎さん <jin at libjingu dot jp>
|
/Linux-v4.19/Documentation/hwmon/ |
D | lm90 | 8 Datasheet: Publicly available at the National Semiconductor website 13 Datasheet: Publicly available at the National Semiconductor website 18 Datasheet: Publicly available at the National Semiconductor website 23 Datasheet: Publicly available at the National Semiconductor website 28 Datasheet: Publicly available at the ON Semiconductor website 33 Datasheet: Publicly available at the ON Semiconductor website 38 Datasheet: Publicly available at the ON Semiconductor website 43 Datasheet: Publicly available at the ON Semiconductor website 48 Datasheet: Publicly available at the Maxim website 53 Datasheet: Publicly available at the Maxim website [all …]
|
D | lm75 | 8 Datasheet: Publicly available at the National Semiconductor website 13 Datasheet: Publicly available at the National Semiconductor website 18 Datasheet: Publicly available at the Maxim website 23 Datasheet: Publicly available at the Maxim website 28 Datasheet: Publicly available at the Microchip website 33 Datasheet: Publicly available at the Microchip website 38 Datasheet: Publicly available at the Analog Devices website 43 Datasheet: Publicly available at the ST website 48 Datasheet: Publicly available at the Texas Instruments website 60 Datasheet: Publicly available at the NXP website
|
D | ina2xx | 8 Datasheet: Publicly available at the Texas Instruments website 14 Datasheet: Publicly available at the Texas Instruments website 20 Datasheet: Publicly available at the Texas Instruments website 26 Datasheet: Publicly available at the Texas Instruments website 32 Datasheet: Publicly available at the Texas Instruments website 54 The shunt value in micro-ohms can be set via platform data or device tree at 55 compile-time or via the shunt_resistor attribute in sysfs at run-time. Please
|
/Linux-v4.19/arch/mips/math-emu/ |
D | dp_mul.c | 36 u64 at; in ieee754dp_mul() local 142 at = lrm + (t << 32); in ieee754dp_mul() 143 hrm += at < lrm; in ieee754dp_mul() 144 lrm = at; in ieee754dp_mul() 150 at = lrm + (t << 32); in ieee754dp_mul() 151 hrm += at < lrm; in ieee754dp_mul() 152 lrm = at; in ieee754dp_mul()
|
D | sp_mul.c | 36 unsigned int at; in ieee754sp_mul() local 140 at = lrm + (t << 16); in ieee754sp_mul() 141 hrm += at < lrm; in ieee754sp_mul() 142 lrm = at; in ieee754sp_mul() 146 at = lrm + (t << 16); in ieee754sp_mul() 147 hrm += at < lrm; in ieee754sp_mul() 148 lrm = at; in ieee754sp_mul()
|
/Linux-v4.19/drivers/media/dvb-frontends/drx39xyj/ |
D | drx_dap_fasi.h | 201 #error DRXDAP_MAX_WCHUNKSIZE must be at least 3 in single master mode 204 #error DRXDAP_MAX_WCHUNKSIZE must be at least 5 in multi master mode 209 #error DRXDAP_MAX_WCHUNKSIZE must be at least 5 in single master mode 212 #error DRXDAP_MAX_WCHUNKSIZE must be at least 7 in multi master mode 225 #error DRXDAP_MAX_RCHUNKSIZE must be at least 2
|
/Linux-v4.19/net/appletalk/ |
D | ddp.c | 99 struct atalk_sock *at = at_sk(s); in atalk_search_socket() local 101 if (to->sat_port != at->src_port) in atalk_search_socket() 108 if (to->sat_addr.s_net == at->src_net && in atalk_search_socket() 109 (to->sat_addr.s_node == at->src_node || in atalk_search_socket() 118 atif->address.s_node == at->src_node) { in atalk_search_socket() 143 struct atalk_sock *at; in atalk_find_or_insert_socket() local 147 at = at_sk(s); in atalk_find_or_insert_socket() 149 if (at->src_net == sat->sat_addr.s_net && in atalk_find_or_insert_socket() 150 at->src_node == sat->sat_addr.s_node && in atalk_find_or_insert_socket() 151 at->src_port == sat->sat_port) in atalk_find_or_insert_socket() [all …]
|
D | atalk_proc.c | 169 struct atalk_sock *at; in atalk_seq_socket_show() local 178 at = at_sk(s); in atalk_seq_socket_show() 182 s->sk_type, ntohs(at->src_net), at->src_node, at->src_port, in atalk_seq_socket_show() 183 ntohs(at->dest_net), at->dest_node, at->dest_port, in atalk_seq_socket_show()
|
/Linux-v4.19/tools/testing/selftests/rcutorture/doc/ |
D | TREE_RCU-kconfig.txt | 25 CONFIG_RCU_EQS_DEBUG -- Do at least one for CONFIG_NO_HZ_FULL and not. 33 nohz_full - do at least one. 34 maxcpu -- do at least one. 35 rcupdate.rcu_self_test_bh -- Do at least one each, offloaded and not. 36 rcupdate.rcu_self_test_sched -- Do at least one each, offloaded and not. 37 rcupdate.rcu_self_test -- Do at least one each, offloaded and not. 38 rcutree.rcu_fanout_exact -- Do at least one.
|
/Linux-v4.19/arch/x86/events/intel/ |
D | ds.c | 590 struct bts_record *at, *base, *top; in intel_pmu_drain_bts_buffer() local 625 for (at = base; at < top; at++) { in intel_pmu_drain_bts_buffer() 632 (kernel_ip(at->from) || kernel_ip(at->to))) in intel_pmu_drain_bts_buffer() 648 for (at = base; at < top; at++) { in intel_pmu_drain_bts_buffer() 651 (kernel_ip(at->from) || kernel_ip(at->to))) in intel_pmu_drain_bts_buffer() 654 data.ip = at->from; in intel_pmu_drain_bts_buffer() 655 data.addr = at->to; in intel_pmu_drain_bts_buffer() 1308 void *at; in get_next_pebs_record_by_bit() local 1321 for (at = base; at < top; at += x86_pmu.pebs_record_size) { in get_next_pebs_record_by_bit() 1322 struct pebs_record_nhm *p = at; in get_next_pebs_record_by_bit() [all …]
|
/Linux-v4.19/Documentation/networking/ |
D | spider_net.txt | 42 descriptor pointer (GDACTDPA). The GDACTDPA points at the descr 51 hardware is ahead, the tail pointer will be pointing at a "full" 61 When traffic is flowing, then the head pointer will be pointing at 69 pointer, at which point the OS will notice that the head descr is 73 all be pointing at the same descr, which should be "empty". All of the 78 of the ring, starting at the tail pointer, and listing the status 84 net eth1: Chain tail located at descr=20 85 net eth1: Chain head is at 20 86 net eth1: HW curr desc (GDACTDPA) is at 21 88 net eth1: HW next desc (GDACNEXTDA) is at 22 [all …]
|