Searched refs:DST (Results 1 - 83 of 83) sorted by relevance

/linux-4.4.14/tools/include/linux/
H A Dfilter.h33 #define BPF_ALU64_REG(OP, DST, SRC) \
36 .dst_reg = DST, \
41 #define BPF_ALU32_REG(OP, DST, SRC) \
44 .dst_reg = DST, \
51 #define BPF_ALU64_IMM(OP, DST, IMM) \
54 .dst_reg = DST, \
59 #define BPF_ALU32_IMM(OP, DST, IMM) \
62 .dst_reg = DST, \
69 #define BPF_ENDIAN(TYPE, DST, LEN) \
72 .dst_reg = DST, \
79 #define BPF_MOV64_REG(DST, SRC) \
82 .dst_reg = DST, \
87 #define BPF_MOV32_REG(DST, SRC) \
90 .dst_reg = DST, \
97 #define BPF_MOV64_IMM(DST, IMM) \
100 .dst_reg = DST, \
105 #define BPF_MOV32_IMM(DST, IMM) \
108 .dst_reg = DST, \
115 #define BPF_MOV64_RAW(TYPE, DST, SRC, IMM) \
118 .dst_reg = DST, \
123 #define BPF_MOV32_RAW(TYPE, DST, SRC, IMM) \
126 .dst_reg = DST, \
153 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \
156 .dst_reg = DST, \
163 #define BPF_STX_MEM(SIZE, DST, SRC, OFF) \
166 .dst_reg = DST, \
173 #define BPF_ST_MEM(SIZE, DST, OFF, IMM) \
176 .dst_reg = DST, \
183 #define BPF_JMP_REG(OP, DST, SRC, OFF) \
186 .dst_reg = DST, \
193 #define BPF_JMP_IMM(OP, DST, IMM, OFF) \
196 .dst_reg = DST, \
213 #define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM) \
216 .dst_reg = DST, \
/linux-4.4.14/samples/bpf/
H A Dlibbpf.h26 #define BPF_ALU64_REG(OP, DST, SRC) \
29 .dst_reg = DST, \
34 #define BPF_ALU32_REG(OP, DST, SRC) \
37 .dst_reg = DST, \
44 #define BPF_ALU64_IMM(OP, DST, IMM) \
47 .dst_reg = DST, \
52 #define BPF_ALU32_IMM(OP, DST, IMM) \
55 .dst_reg = DST, \
62 #define BPF_MOV64_REG(DST, SRC) \
65 .dst_reg = DST, \
70 #define BPF_MOV32_REG(DST, SRC) \
73 .dst_reg = DST, \
80 #define BPF_MOV64_IMM(DST, IMM) \
83 .dst_reg = DST, \
89 #define BPF_LD_IMM64(DST, IMM) \
90 BPF_LD_IMM64_RAW(DST, 0, IMM)
92 #define BPF_LD_IMM64_RAW(DST, SRC, IMM) \
95 .dst_reg = DST, \
111 #define BPF_LD_MAP_FD(DST, MAP_FD) \
112 BPF_LD_IMM64_RAW(DST, BPF_PSEUDO_MAP_FD, MAP_FD)
127 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \
130 .dst_reg = DST, \
137 #define BPF_STX_MEM(SIZE, DST, SRC, OFF) \
140 .dst_reg = DST, \
147 #define BPF_ST_MEM(SIZE, DST, OFF, IMM) \
150 .dst_reg = DST, \
157 #define BPF_JMP_REG(OP, DST, SRC, OFF) \
160 .dst_reg = DST, \
167 #define BPF_JMP_IMM(OP, DST, IMM, OFF) \
170 .dst_reg = DST, \
177 #define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM) \
180 .dst_reg = DST, \
/linux-4.4.14/kernel/bpf/
H A Dcore.c47 #define DST regs[insn->dst_reg] macro
319 DST = DST OP SRC; \ __bpf_prog_run()
322 DST = (u32) DST OP (u32) SRC; \ __bpf_prog_run()
325 DST = DST OP IMM; \ __bpf_prog_run()
328 DST = (u32) DST OP (u32) IMM; \ __bpf_prog_run()
341 DST = (u32) -DST; __bpf_prog_run()
344 DST = -DST; __bpf_prog_run()
347 DST = (u32) SRC; __bpf_prog_run()
350 DST = (u32) IMM; __bpf_prog_run()
353 DST = SRC; __bpf_prog_run()
356 DST = IMM; __bpf_prog_run()
359 DST = (u64) (u32) insn[0].imm | ((u64) (u32) insn[1].imm) << 32; __bpf_prog_run()
363 (*(s64 *) &DST) >>= SRC; __bpf_prog_run()
366 (*(s64 *) &DST) >>= IMM; __bpf_prog_run()
371 div64_u64_rem(DST, SRC, &tmp); __bpf_prog_run()
372 DST = tmp; __bpf_prog_run()
377 tmp = (u32) DST; __bpf_prog_run()
378 DST = do_div(tmp, (u32) SRC); __bpf_prog_run()
381 div64_u64_rem(DST, IMM, &tmp); __bpf_prog_run()
382 DST = tmp; __bpf_prog_run()
385 tmp = (u32) DST; __bpf_prog_run()
386 DST = do_div(tmp, (u32) IMM); __bpf_prog_run()
391 DST = div64_u64(DST, SRC); __bpf_prog_run()
396 tmp = (u32) DST; __bpf_prog_run()
398 DST = (u32) tmp; __bpf_prog_run()
401 DST = div64_u64(DST, IMM); __bpf_prog_run()
404 tmp = (u32) DST; __bpf_prog_run()
406 DST = (u32) tmp; __bpf_prog_run()
411 DST = (__force u16) cpu_to_be16(DST); __bpf_prog_run()
414 DST = (__force u32) cpu_to_be32(DST); __bpf_prog_run()
417 DST = (__force u64) cpu_to_be64(DST); __bpf_prog_run()
424 DST = (__force u16) cpu_to_le16(DST); __bpf_prog_run()
427 DST = (__force u32) cpu_to_le32(DST); __bpf_prog_run()
430 DST = (__force u64) cpu_to_le64(DST); __bpf_prog_run()
478 if (DST == SRC) { __bpf_prog_run()
484 if (DST == IMM) { __bpf_prog_run()
490 if (DST != SRC) { __bpf_prog_run()
496 if (DST != IMM) { __bpf_prog_run()
502 if (DST > SRC) { __bpf_prog_run()
508 if (DST > IMM) { __bpf_prog_run()
514 if (DST >= SRC) { __bpf_prog_run()
520 if (DST >= IMM) { __bpf_prog_run()
526 if (((s64) DST) > ((s64) SRC)) { __bpf_prog_run()
532 if (((s64) DST) > ((s64) IMM)) { __bpf_prog_run()
538 if (((s64) DST) >= ((s64) SRC)) { __bpf_prog_run()
544 if (((s64) DST) >= ((s64) IMM)) { __bpf_prog_run()
550 if (DST & SRC) { __bpf_prog_run()
556 if (DST & IMM) { __bpf_prog_run()
567 *(SIZE *)(unsigned long) (DST + insn->off) = SRC; \ __bpf_prog_run()
570 *(SIZE *)(unsigned long) (DST + insn->off) = IMM; \ __bpf_prog_run()
573 DST = *(SIZE *)(unsigned long) (SRC + insn->off); \ __bpf_prog_run()
583 (DST + insn->off)); __bpf_prog_run()
587 (DST + insn->off)); __bpf_prog_run()
/linux-4.4.14/drivers/media/pci/bt8xx/
H A Ddst_priv.h2 * dst-bt878.h: part of the DST driver for the TwinHan DST Frontend
H A Ddst.c2 Frontend/Card driver for TwinHan DST Frontend
150 dprintk(verbose, DST_DEBUG, 1, "Resetting DST"); rdc_8820_reset()
235 dprintk(verbose, DST_INFO, 1, "Initializing DST."); dst_comm_init()
564 dprintk(verbose, DST_ERROR, 0, "DST type flags :"); dst_type_flags_print()
609 dprintk(verbose, DST_INFO, 1, "DST type: %s", otype); dst_type_print()
626 .fw_name = "DST-MOT"
633 .fw_name = "DST-03T"
640 .fw_name = "DST-03T"
647 .fw_name = "DST-03T"
654 .fw_name = "DST-CI"
740 VP-1020 DST-MOT LG(old), TS=188
742 VP-1020 DST-03T LG(new), TS=204
743 VP-1022 DST-03T LG(new), TS=204
744 VP-1025 DST-03T LG(new), TS=204
781 .device_id = "DST-020",
790 .device_id = "DST-030",
799 .device_id = "DST-03T",
809 .device_id = "DST-MOT",
818 .device_id = "DST-CI",
963 dprintk(verbose, DST_ERROR, 1, "DST has [%s] tuner, tuner type=[%d]", dst_card_type()
1045 dprintk(verbose, DST_ERROR, 1, "DST TYpe = MULTI FE"); dst_get_tuner_info()
1059 dprintk(verbose, DST_ERROR, 1, "DST type has TS=188"); dst_get_tuner_info()
1069 dprintk(verbose, DST_ERROR, 1, "DST has Daughterboard"); dst_get_tuner_info()
1110 return -1; /* DST not ready yet */ dst_get_device_id()
1187 dprintk(verbose, DST_ERROR, 1, "DST Initialization Failed."); dst_probe()
1229 dprintk(verbose, DST_NOTICE, 1, "DST Communication Initialization Failed."); dst_command()
1400 dprintk(verbose, DST_DEBUG, 1, "DST Communication initialization failed."); dst_write_tuna()
1419 dprintk(verbose, DST_DEBUG, 1, "DST PIO disable failed !"); dst_write_tuna()
1753 dprintk(verbose, DST_ERROR, 1, "unknown DST type. please report to the LinuxTV.org DVB mailinglist."); dst_attach()
1759 return state; /* Manu (DST is a card not a frontend) */ dst_attach()
1767 .name = "DST DVB-T",
1796 .name = "DST DVB-S",
1825 .name = "DST DVB-C",
1854 .name = "DST ATSC",
1874 MODULE_DESCRIPTION("DST DVB-S/T/C/ATSC Combo Frontend driver");
H A Ddst_ca.h2 CA-driver for TwinHan DST Frontend/Card
H A Ddst_ca.c2 CA-driver for TwinHan DST Frontend/Card
104 dprintk(verbose, DST_CA_ERROR, 1, " DST PIO disable failed."); dst_ci_command()
206 dprintk(verbose, DST_CA_INFO, 0, " DST data = ["); ca_get_ca_info()
380 dprintk(verbose, DST_CA_ERROR, 1, " DST-CI Command failed."); write_to_8820()
381 dprintk(verbose, DST_CA_NOTICE, 1, " Resetting DST."); write_to_8820()
385 dprintk(verbose, DST_CA_NOTICE, 1, " DST-CI Command success."); write_to_8820()
595 dprintk(verbose, DST_CA_ERROR, 1, " Resetting DST"); dst_ca_ioctl()
707 dprintk(verbose, DST_CA_ERROR, 1, "registering DST-CA device"); dst_ca_attach()
718 MODULE_DESCRIPTION("DST DVB-S/T/C Combo CA driver");
H A Ddst_common.h2 Frontend-driver for TwinHan DST Frontend
88 /* DST Communication */
H A Dbt878.c221 * Hacked for DST to: bt878_start()
393 "ChainTech digitop DST-1000 DVB-S"),
H A Ddvb-bt8xx.c669 /* DST is not a frontend driver !!! */ frontend_init()
680 /* DST is not a frontend, attaching the ASIC */ frontend_init()
682 pr_err("%s: Could not find a Twinhan DST\n", __func__); frontend_init()
685 /* Attach other DST peripherals if any */ frontend_init()
H A Dbttv-cards.c324 { 0xfc00270f, BTTV_BOARD_TWINHAN_DST, "ChainTech digitop DST-1000 DVB-S" },
2083 .name = "Twinhan DST + clones",
/linux-4.4.14/include/linux/
H A Dfilter.h52 #define BPF_ALU64_REG(OP, DST, SRC) \
55 .dst_reg = DST, \
60 #define BPF_ALU32_REG(OP, DST, SRC) \
63 .dst_reg = DST, \
70 #define BPF_ALU64_IMM(OP, DST, IMM) \
73 .dst_reg = DST, \
78 #define BPF_ALU32_IMM(OP, DST, IMM) \
81 .dst_reg = DST, \
88 #define BPF_ENDIAN(TYPE, DST, LEN) \
91 .dst_reg = DST, \
98 #define BPF_MOV64_REG(DST, SRC) \
101 .dst_reg = DST, \
106 #define BPF_MOV32_REG(DST, SRC) \
109 .dst_reg = DST, \
116 #define BPF_MOV64_IMM(DST, IMM) \
119 .dst_reg = DST, \
124 #define BPF_MOV32_IMM(DST, IMM) \
127 .dst_reg = DST, \
133 #define BPF_LD_IMM64(DST, IMM) \
134 BPF_LD_IMM64_RAW(DST, 0, IMM)
136 #define BPF_LD_IMM64_RAW(DST, SRC, IMM) \
139 .dst_reg = DST, \
151 #define BPF_LD_MAP_FD(DST, MAP_FD) \
152 BPF_LD_IMM64_RAW(DST, BPF_PSEUDO_MAP_FD, MAP_FD)
156 #define BPF_MOV64_RAW(TYPE, DST, SRC, IMM) \
159 .dst_reg = DST, \
164 #define BPF_MOV32_RAW(TYPE, DST, SRC, IMM) \
167 .dst_reg = DST, \
194 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \
197 .dst_reg = DST, \
204 #define BPF_STX_MEM(SIZE, DST, SRC, OFF) \
207 .dst_reg = DST, \
214 #define BPF_STX_XADD(SIZE, DST, SRC, OFF) \
217 .dst_reg = DST, \
224 #define BPF_ST_MEM(SIZE, DST, OFF, IMM) \
227 .dst_reg = DST, \
234 #define BPF_JMP_REG(OP, DST, SRC, OFF) \
237 .dst_reg = DST, \
244 #define BPF_JMP_IMM(OP, DST, IMM, OFF) \
247 .dst_reg = DST, \
264 #define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM) \
267 .dst_reg = DST, \
H A Dmc146818rtc.h98 # define RTC_DST_EN 0x01 /* auto switch DST - works f. USA only */
/linux-4.4.14/arch/alpha/lib/
H A Dstrcpy.S5 * Copy a null-terminated string from SRC to DST. Return a pointer
H A Dstrncat.S6 * to the null-terminated string DST. Always null-terminate the new DST.
76 1: /* Here we must read the next DST word and clear the first byte. */
H A Dev67-strncat.S6 * to the null-terminated string DST. Always null-terminate the new DST.
82 1: /* Here we must clear the first byte of the next DST word */
H A Dstrcat.S5 * Append a null-terminated string from SRC to DST.
H A Dev67-strcat.S5 * Append a null-terminated string from SRC to DST.
H A Dstrncpy.S6 * SRC to DST. If SRC does not cover all of COUNT, the balance is
H A Dev6-stxcpy.S5 * Copy a null-terminated string from SRC to DST.
13 * a0 = DST
H A Dev6-stxncpy.S6 * SRC to DST.
14 * a0 = DST
H A Dstxcpy.S5 * Copy a null-terminated string from SRC to DST.
13 * a0 = DST
H A Dstxncpy.S6 * SRC to DST.
14 * a0 = DST
/linux-4.4.14/arch/sh/lib/
H A Dchecksum.S186 * The macros SRC and DST specify the type of access for the instruction.
190 * DST definitions? It's damn hard to trigger all cases. I hope I got
200 #define DST(...) \ define
208 ! r5: char *DST
252 DST( mov.b r1,@r5 )
253 DST( mov.b r0,@(1,r5) )
283 DST( mov.w r0,@r5 )
301 DST( mov.l r0,@r5 )
302 DST( mov.l r1,@(4,r5) )
308 DST( mov.l r0,@(8,r5) )
309 DST( mov.l r1,@(12,r5) )
315 DST( mov.l r0,@(16,r5) )
316 DST( mov.l r1,@(20,r5) )
322 DST( mov.l r0,@(24,r5) )
323 DST( mov.l r1,@(28,r5) )
343 DST( mov.l r0,@r5 )
360 DST( mov.w r0,@r5 )
370 DST( mov.b r0,@r5 )
H A Dmemcpy.S11 * No overlap between the memory of DST and of SRC are assumed.
28 ! r4 --> [ ... ] DST [ ... ] SRC
H A Dmemmove.S36 ! [ ... ] DST [ ... ] SRC
/linux-4.4.14/arch/xtensa/lib/
H A Dchecksum.S179 * The macros SRC and DST specify the type of access for the instruction.
189 #define DST(y...) \ define
249 DST( s32i a9, a3, 0 )
250 DST( s32i a8, a3, 4 )
255 DST( s32i a9, a3, 8 )
256 DST( s32i a8, a3, 12 )
261 DST( s32i a9, a3, 16 )
262 DST( s32i a8, a3, 20 )
267 DST( s32i a9, a3, 24 )
268 DST( s32i a8, a3, 28 )
288 DST( s32i a9, a3, 0 )
319 DST( s16i a9, a3, 0 )
330 DST( s8i a9, a3, 0 )
355 DST( s8i a9, a3, 0 )
356 DST( s8i a8, a3, 1 )
/linux-4.4.14/arch/x86/lib/
H A Dchecksum_32.S263 * The macros SRC and DST specify the type of access for the instruction.
267 * DST definitions? It's damn hard to trigger all cases. I hope I got
275 #define DST(y...) \ define
302 DST( movw %bx, (%edi) )
314 DST( movl %ebx, (%edi) )
316 DST( movl %edx, 4(%edi) )
321 DST( movl %ebx, 8(%edi) )
323 DST( movl %edx, 12(%edi) )
328 DST( movl %ebx, 16(%edi) )
330 DST( movl %edx, 20(%edi) )
335 DST( movl %ebx, 24(%edi) )
337 DST( movl %edx, 28(%edi) )
351 DST( movl %ebx, (%edi) )
363 DST( movw %cx, (%edi) )
368 DST( movb %cl, (%edi) )
411 DST(movl %ebx, x(%edi) ) ;
416 DST(movl %ebx, x(%edi) ) ;
459 DST( movw %dx, (%edi) )
465 DST( movb %dl, (%edi) )
/linux-4.4.14/scripts/
H A Dobjdiff95 DST="`git rev-parse --short HEAD`"
98 DST="`git rev-parse --short $2`"
108 DSTD="$TMPD/$DST"
/linux-4.4.14/arch/sh/include/asm/
H A Drtc.h14 #define RTC_DST_EN 0x01 /* auto switch DST - works f. USA only */
/linux-4.4.14/drivers/video/fbdev/core/
H A Dsyscopyarea.c103 because in case SRC and DST overlap bitwise (e.g. bitcpy()
105 collect one full long for DST and that might bitcpy()
248 because in case SRC and DST overlap bitwise (e.g. bitcpy_rev()
250 collect one full long for DST and that might bitcpy_rev()
H A Dcfbcopyarea.c136 SRC and DST overlap bitwise (e.g. when moving just one pixel in bitcpy()
137 1bpp), we always collect one full long for DST and that might bitcpy()
308 SRC and DST overlap bitwise (e.g. when moving just one pixel in bitcpy_rev()
309 1bpp), we always collect one full long for DST and that might bitcpy_rev()
/linux-4.4.14/net/bridge/netfilter/
H A Debt_log.c108 printk(" IP SRC=%pI4 IP DST=%pI4, IP tos=0x%02X, IP proto=%d", ebt_log_packet()
128 printk(" IPv6 SRC=%pI6 IPv6 DST=%pI6, IPv6 priority=0x%01X, Next Header=%d", ebt_log_packet()
168 printk(" ARP MAC SRC=%pM ARP IP SRC=%pI4 ARP MAC DST=%pM ARP IP DST=%pI4", ebt_log_packet()
/linux-4.4.14/arch/powerpc/include/asm/
H A Drtc.h43 #define RTC_DST_EN 0x01 /* auto switch DST - works f. USA only */
/linux-4.4.14/arch/m68k/include/asm/
H A Drtc.h29 #define RTC_DST_EN 0x01 /* auto switch DST - works f. USA only */
/linux-4.4.14/fs/isofs/
H A Dutil.c13 * The time stored should be localtime (with or without DST in effect),
/linux-4.4.14/arch/parisc/include/asm/
H A Drtc.h33 #define RTC_DST_EN 0x01 /* auto switch DST - works f. USA only */
/linux-4.4.14/drivers/media/usb/dvb-usb/
H A Dvp702x-fe.c11 * This file can be removed soon, after the DST-driver is rewritten to provice
351 .name = "Twinhan DST-like frontend (VP7021/VP7020) DVB-S",
/linux-4.4.14/net/ipv4/netfilter/
H A Dnf_log_ipv4.c59 /* Max length: 40 "SRC=255.255.255.255 DST=255.255.255.255 " */ dump_ipv4_packet()
60 nf_log_buf_add(m, "SRC=%pI4 DST=%pI4 ", &ih->saddr, &ih->daddr); dump_ipv4_packet()
H A Dnf_nat_pptp.c101 /* For DST manip, map port here to where it's expected. */ pptp_nat_expected()
H A Dnf_nat_h323.c414 /* For DST manip, map port here to where it's expected. */ ip_nat_q931_expect()
508 /* For DST manip, map port here to where it's expected. */ ip_nat_callforwarding_expect()
H A Dnf_nat_l3proto_ipv4.c323 maniptype == NF_NAT_MANIP_SRC ? "SRC" : "DST", nf_nat_ipv4_fn()
H A Dip_tables.c94 dprintf("DST: %pI4 Mask: %pI4 Target: %pI4.%s\n", ip_packet_match()
/linux-4.4.14/net/ipv6/netfilter/
H A Dnf_log_ipv6.c63 /* Max length: 88 "SRC=0000.0000.0000.0000.0000.0000.0000.0000 DST=0000.0000.0000.0000.0000.0000.0000.0000 " */ dump_ipv6_packet()
64 nf_log_buf_add(m, "SRC=%pI6 DST=%pI6 ", &ih->saddr, &ih->daddr); dump_ipv6_packet()
H A Dnf_nat_l3proto_ipv6.c332 maniptype == NF_NAT_MANIP_SRC ? "SRC" : "DST", nf_nat_ipv6_fn()
H A Dip6_tables.c109 dprintf("DST: %u. Mask: %u. Target: %u.%s\n", ip->daddr, ip6_packet_match()
/linux-4.4.14/arch/mips/include/asm/
H A Dvdso.h69 * @tz_dsttime: Type of DST correction (from timezone).
/linux-4.4.14/drivers/gpu/drm/gma500/
H A Dpsb_reg.h243 /* Colour Key Colour (SRC/DST)*/
247 /* Colour Key Mask (SRC/DST)*/
/linux-4.4.14/drivers/net/ethernet/emulex/benet/
H A Dbe_cmds.h1149 * RSS_ENABLE_IPV4 SRC IPv4, DST IPv4
1150 * RSS_ENABLE_TCP_IPV4 SRC IPv4, DST IPv4, TCP SRC PORT, TCP DST PORT
1151 * RSS_ENABLE_IPV6 SRC IPv6, DST IPv6
1152 * RSS_ENABLE_TCP_IPV6 SRC IPv6, DST IPv6, TCP SRC PORT, TCP DST PORT
1153 * RSS_ENABLE_UDP_IPV4 SRC IPv4, DST IPv4, UDP SRC PORT, UDP DST PORT
1154 * RSS_ENABLE_UDP_IPV6 SRC IPv6, DST IPv6, UDP SRC PORT, UDP DST PORT
/linux-4.4.14/drivers/media/platform/exynos-gsc/
H A Dgsc-core.h191 * @f_width: SRC : SRCIMG_WIDTH, DST : OUTPUTDMA_WHOLE_IMG_WIDTH
192 * @f_height: SRC : SRCIMG_HEIGHT, DST : OUTPUTDMA_WHOLE_IMG_HEIGHT
/linux-4.4.14/arch/powerpc/kernel/
H A Dl2cr_6xx.S108 /* Stop DST streams */
306 /* Stop DST streams */
/linux-4.4.14/arch/x86/net/
H A Dbpf_jit_comp.c68 #define EMIT_mov(DST, SRC) \
69 do {if (DST != SRC) \
70 EMIT3(add_2mod(0x48, DST, SRC), 0x89, add_2reg(0xC0, DST, SRC)); \
/linux-4.4.14/include/asm-generic/
H A Drtc.h32 #define RTC_DST_EN 0x01 /* auto switch DST - works f. USA only */
/linux-4.4.14/include/uapi/linux/netfilter_ipv4/
H A Dip_tables.h96 #define IPT_INV_DSTIP 0x10 /* Invert the sense of DST OP. */
/linux-4.4.14/include/uapi/linux/netfilter_ipv6/
H A Dip6_tables.h100 #define IP6T_INV_DSTIP 0x10 /* Invert the sense of DST OP. */
/linux-4.4.14/arch/powerpc/platforms/powermac/
H A Dtime.c80 printk("GMT Delta read from XPRAM: %d minutes, DST: %s\n", delta/60, pmac_time_init()
H A Dcache.S53 /* Stop DST streams */
/linux-4.4.14/net/netfilter/
H A Dnf_nat_helper.c205 /* For DST manip, map port here to where it's expected. */ nf_nat_follow_master()
H A Dnf_nat_sip.c324 /* For DST manip, map port here to where it's expected. */ nf_nat_sip_expected()
/linux-4.4.14/drivers/media/platform/vsp1/
H A Dvsp1_bru.c135 /* Select the virtual RPF as the Blend/ROP unit A DST input to bru_s_stream()
/linux-4.4.14/include/sound/
H A Dasoundef.h193 #define CEA861_AUDIO_INFOFRAME_DB1CT_DST (13<<4) /* DST */
/linux-4.4.14/net/batman-adv/
H A Dbridge_loop_avoidance.c291 /* IP DST: 0.0.0.0 */ batadv_bla_send_claim()
296 /* Ethernet DST: Broadcast */ batadv_bla_send_claim()
300 /* HW DST: FF:43:05:XX:YY:YY batadv_bla_send_claim()
/linux-4.4.14/fs/afs/
H A Dfsclient.c48 #define EXTRACT(DST) \ xdr_decode_AFSFetchStatus()
51 changed |= DST - x; \ xdr_decode_AFSFetchStatus()
52 DST = x; \ xdr_decode_AFSFetchStatus()
/linux-4.4.14/drivers/target/
H A Dtarget_core_xcopy.c510 pr_debug("Honoring local DST port from ec_cmd->se_dev:" target_xcopy_setup_pt_port()
513 pr_debug("Honoring local DST port from ec_cmd->se_lun: %p\n", target_xcopy_setup_pt_port()
/linux-4.4.14/arch/arc/mm/
H A Dcache.c854 * Note that while @u_vaddr refers to DST page's userspace vaddr, it is copy_user_highpage()
868 * Mark DST page K-mapping as dirty for a later finalization by copy_user_highpage()
/linux-4.4.14/drivers/gpu/drm/radeon/
H A Devergreen_cs.c2188 DRM_ERROR("bad CP DMA DST\n"); evergreen_packet3_check()
2585 /* DST is memory. */ evergreen_packet3_check()
2602 /* DST is a reg. */ evergreen_packet3_check()
3426 DRM_ERROR("CP DMA Bad DST register\n"); evergreen_vm_packet3_check()
3433 DRM_ERROR("CP DMA Bad DST register\n"); evergreen_vm_packet3_check()
H A Dr600_cs.c1829 DRM_ERROR("bad CP DMA DST\n"); r600_packet3_check()
2236 /* DST is memory. */ r600_packet3_check()
2253 /* DST is a reg. */ r600_packet3_check()
H A Dr300_reg.h1073 * - apparently, there's no quick DST operation
H A Dsi.c4500 DRM_ERROR("CP DMA Bad DST register\n"); si_vm_packet3_cp_dma_check()
4507 DRM_ERROR("CP DMA Bad DST register\n"); si_vm_packet3_cp_dma_check()
/linux-4.4.14/arch/cris/arch-v10/lib/
H A Dusercopy.c156 updated SRC, DST and N. */ __copy_user()
/linux-4.4.14/sound/pci/hda/
H A Dhda_eld.c111 /* 13 */ "DST",
/linux-4.4.14/drivers/media/pci/cx88/
H A Dcx88-video.c381 bits 8 and 9: DMA complete for: SRC, DST start_video_dma()
383 bits 12 to 15: BERR signal asserted for: BRDG, SRC, DST, IPB start_video_dma()
/linux-4.4.14/drivers/crypto/caam/
H A Ddesc.h221 /* SRC/DST - Destination for LOAD, Source for STORE */
263 /* LDOFF definitions used when DST = LDST_SRCDST_WORD_DECOCTRL */
/linux-4.4.14/drivers/dma/
H A Dpl330.c300 * For now, the SRC & DST protection levels
344 DST, enumerator in enum:pl330_dst
1351 /* We set same protection levels for Src and DST for now */ _prepare_ccr()
/linux-4.4.14/drivers/rtc/
H A Drtc-ds1685.c847 "DST\t\t: %s\n" ds1685_rtc_proc()
1961 * obselete. We'll let the OS deal with DST settings instead. ds1685_rtc_probe()
/linux-4.4.14/drivers/video/
H A Dhdmi.c789 return "DST"; hdmi_audio_coding_type_get_name()
/linux-4.4.14/drivers/media/pci/cx25821/
H A Dcx25821-core.c424 * select 656/VIP DST for downstream Channel A - C */ cx25821_registers_init()
/linux-4.4.14/sound/pci/
H A Dbt87x.c841 {0x270f, 0xfc00}, /* Chaintech Digitop DST-1000 DVB-S */
/linux-4.4.14/arch/m68k/ifpsp060/src/
H A Disp.S3217 # (13)Write update operand to the DST locations. Use BUSCR to #
3830 # (10)Unequal. No update occurs. But, we do write the DST op back #
3834 # (12)Write update operand to the DST location. Use BUSCR to #
H A Dpfpsp.S404 set DST, 0 # offsets within an
5402 # If the DST exponent is > the SRC exponent, set the DST exponent #
5404 # DST exponent was scaled by. If the SRC exponent is greater or equal, #
8424 fmovm.x DST(%a1),&0x80 # return INF result in fp0
9211 fmovm.x DST(%a1),&0x80 # return result in fp0
9218 fmovm.x DST(%a1),&0x80 # return result in fp0
10199 fmovm.x DST(%a1),&0x80 # load dst op
11475 fmovm.x DST(%a1),&0x80 # return dst INF
11921 fmovm.x DST(%a1),&0x80 # return dst INF
H A Dfplsp.S385 set DST, 0 # offsets within an
9295 fmovm.x DST(%a1),&0x80 # load fp0 with normalized src
9333 fmov.x DST(%a1),%fp0 # simply return dest
10252 fmov.x DST(%a1),%fp0
10718 lea DST(%a1),%a0
10723 fmov.x DST(%a1),%fp0
H A Dfpsp.S405 set DST, 0 # offsets within an
9654 fmovm.x DST(%a1),&0x80 # load fp0 with normalized src
9692 fmov.x DST(%a1),%fp0 # simply return dest
10807 lea DST(%a1),%a0
10812 fmov.x DST(%a1),%fp0
10942 fmov.x DST(%a1),%fp0 # the fmove sets the SNAN bit
10952 fmov.x DST(%a1),%fp0 # return the non-signalling nan
11993 fmovm.x DST(%a1),&0x80 # return INF result in fp0
12780 fmovm.x DST(%a1),&0x80 # return result in fp0
12787 fmovm.x DST(%a1),&0x80 # return result in fp0
13768 fmovm.x DST(%a1),&0x80 # load dst op
15044 fmovm.x DST(%a1),&0x80 # return dst INF
15490 fmovm.x DST(%a1),&0x80 # return dst INF
15856 # If the DST exponent is > the SRC exponent, set the DST exponent #
15858 # DST exponent was scaled by. If the SRC exponent is greater or equal, #
/linux-4.4.14/drivers/net/wireless/
H A Dwl3501_cs.c285 * | PLCP | MAC Header | DST SRC Data ... |

Completed in 2824 milliseconds