/linux-4.1.27/samples/bpf/ |
H A D | libbpf.h | 23 #define BPF_ALU64_REG(OP, DST, SRC) \ 26 .dst_reg = DST, \ 31 #define BPF_ALU32_REG(OP, DST, SRC) \ 34 .dst_reg = DST, \ 41 #define BPF_ALU64_IMM(OP, DST, IMM) \ 44 .dst_reg = DST, \ 49 #define BPF_ALU32_IMM(OP, DST, IMM) \ 52 .dst_reg = DST, \ 59 #define BPF_MOV64_REG(DST, SRC) \ 62 .dst_reg = DST, \ 69 #define BPF_MOV64_IMM(DST, IMM) \ 72 .dst_reg = DST, \ 78 #define BPF_LD_IMM64(DST, IMM) \ 79 BPF_LD_IMM64_RAW(DST, 0, IMM) 81 #define BPF_LD_IMM64_RAW(DST, SRC, IMM) \ 84 .dst_reg = DST, \ 100 #define BPF_LD_MAP_FD(DST, MAP_FD) \ 101 BPF_LD_IMM64_RAW(DST, BPF_PSEUDO_MAP_FD, MAP_FD) 116 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \ 119 .dst_reg = DST, \ 126 #define BPF_STX_MEM(SIZE, DST, SRC, OFF) \ 129 .dst_reg = DST, \ 136 #define BPF_ST_MEM(SIZE, DST, OFF, IMM) \ 139 .dst_reg = DST, \ 146 #define BPF_JMP_REG(OP, DST, SRC, OFF) \ 149 .dst_reg = DST, \ 156 #define BPF_JMP_IMM(OP, DST, IMM, OFF) \ 159 .dst_reg = DST, \ 166 #define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM) \ 169 .dst_reg = DST, \
|
/linux-4.1.27/include/linux/ |
H A D | filter.h | 50 #define BPF_ALU64_REG(OP, DST, SRC) \ 53 .dst_reg = DST, \ 58 #define BPF_ALU32_REG(OP, DST, SRC) \ 61 .dst_reg = DST, \ 68 #define BPF_ALU64_IMM(OP, DST, IMM) \ 71 .dst_reg = DST, \ 76 #define BPF_ALU32_IMM(OP, DST, IMM) \ 79 .dst_reg = DST, \ 86 #define BPF_ENDIAN(TYPE, DST, LEN) \ 89 .dst_reg = DST, \ 96 #define BPF_MOV64_REG(DST, SRC) \ 99 .dst_reg = DST, \ 104 #define BPF_MOV32_REG(DST, SRC) \ 107 .dst_reg = DST, \ 114 #define BPF_MOV64_IMM(DST, IMM) \ 117 .dst_reg = DST, \ 122 #define BPF_MOV32_IMM(DST, IMM) \ 125 .dst_reg = DST, \ 131 #define BPF_LD_IMM64(DST, IMM) \ 132 BPF_LD_IMM64_RAW(DST, 0, IMM) 134 #define BPF_LD_IMM64_RAW(DST, SRC, IMM) \ 137 .dst_reg = DST, \ 149 #define BPF_LD_MAP_FD(DST, MAP_FD) \ 150 BPF_LD_IMM64_RAW(DST, BPF_PSEUDO_MAP_FD, MAP_FD) 154 #define BPF_MOV64_RAW(TYPE, DST, SRC, IMM) \ 157 .dst_reg = DST, \ 162 #define BPF_MOV32_RAW(TYPE, DST, SRC, IMM) \ 165 .dst_reg = DST, \ 192 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \ 195 .dst_reg = DST, \ 202 #define BPF_STX_MEM(SIZE, DST, SRC, OFF) \ 205 .dst_reg = DST, \ 212 #define BPF_ST_MEM(SIZE, DST, OFF, IMM) \ 215 .dst_reg = DST, \ 222 #define BPF_JMP_REG(OP, DST, SRC, OFF) \ 225 .dst_reg = DST, \ 232 #define BPF_JMP_IMM(OP, DST, IMM, OFF) \ 235 .dst_reg = DST, \ 252 #define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM) \ 255 .dst_reg = DST, \
|
H A D | mc146818rtc.h | 98 # define RTC_DST_EN 0x01 /* auto switch DST - works f. USA only */
|
/linux-4.1.27/kernel/bpf/ |
H A D | core.c | 46 #define DST regs[insn->dst_reg] macro 308 DST = DST OP SRC; \ __bpf_prog_run() 311 DST = (u32) DST OP (u32) SRC; \ __bpf_prog_run() 314 DST = DST OP IMM; \ __bpf_prog_run() 317 DST = (u32) DST OP (u32) IMM; \ __bpf_prog_run() 330 DST = (u32) -DST; __bpf_prog_run() 333 DST = -DST; __bpf_prog_run() 336 DST = (u32) SRC; __bpf_prog_run() 339 DST = (u32) IMM; __bpf_prog_run() 342 DST = SRC; __bpf_prog_run() 345 DST = IMM; __bpf_prog_run() 348 DST = (u64) (u32) insn[0].imm | ((u64) (u32) insn[1].imm) << 32; __bpf_prog_run() 352 (*(s64 *) &DST) >>= SRC; __bpf_prog_run() 355 (*(s64 *) &DST) >>= IMM; __bpf_prog_run() 360 div64_u64_rem(DST, SRC, &tmp); __bpf_prog_run() 361 DST = tmp; __bpf_prog_run() 366 tmp = (u32) DST; __bpf_prog_run() 367 DST = do_div(tmp, (u32) SRC); __bpf_prog_run() 370 div64_u64_rem(DST, IMM, &tmp); __bpf_prog_run() 371 DST = tmp; __bpf_prog_run() 374 tmp = (u32) DST; __bpf_prog_run() 375 DST = do_div(tmp, (u32) IMM); __bpf_prog_run() 380 DST = div64_u64(DST, SRC); __bpf_prog_run() 385 tmp = (u32) DST; __bpf_prog_run() 387 DST = (u32) tmp; __bpf_prog_run() 390 DST = div64_u64(DST, IMM); __bpf_prog_run() 393 tmp = (u32) DST; __bpf_prog_run() 395 DST = (u32) tmp; __bpf_prog_run() 400 DST = (__force u16) cpu_to_be16(DST); __bpf_prog_run() 403 DST = (__force u32) cpu_to_be32(DST); __bpf_prog_run() 406 DST = (__force u64) cpu_to_be64(DST); __bpf_prog_run() 413 DST = (__force u16) cpu_to_le16(DST); __bpf_prog_run() 416 DST = (__force u32) cpu_to_le32(DST); __bpf_prog_run() 419 DST = (__force u64) cpu_to_le64(DST); __bpf_prog_run() 439 if (DST == SRC) { __bpf_prog_run() 445 if (DST == IMM) { __bpf_prog_run() 451 if (DST != SRC) { __bpf_prog_run() 457 if (DST != IMM) { __bpf_prog_run() 463 if (DST > SRC) { __bpf_prog_run() 469 if (DST > IMM) { __bpf_prog_run() 475 if (DST >= SRC) { __bpf_prog_run() 481 if (DST >= IMM) { __bpf_prog_run() 487 if (((s64) DST) > ((s64) SRC)) { __bpf_prog_run() 493 if (((s64) DST) > ((s64) IMM)) { __bpf_prog_run() 499 if (((s64) DST) >= ((s64) SRC)) { __bpf_prog_run() 505 if (((s64) DST) >= ((s64) IMM)) { __bpf_prog_run() 511 if (DST & SRC) { __bpf_prog_run() 517 if (DST & IMM) { __bpf_prog_run() 528 *(SIZE *)(unsigned long) (DST + insn->off) = SRC; \ __bpf_prog_run() 531 *(SIZE *)(unsigned long) (DST + insn->off) = IMM; \ __bpf_prog_run() 534 DST = *(SIZE *)(unsigned long) (SRC + insn->off); \ __bpf_prog_run() 544 (DST + insn->off)); __bpf_prog_run() 548 (DST + insn->off)); __bpf_prog_run()
|
/linux-4.1.27/drivers/media/pci/bt8xx/ |
H A D | dst_priv.h | 2 * dst-bt878.h: part of the DST driver for the TwinHan DST Frontend
|
H A D | dst.c | 2 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() 562 dprintk(verbose, DST_ERROR, 0, "DST type flags :"); dst_type_flags_print() 607 dprintk(verbose, DST_INFO, 1, "DST type: %s", otype); dst_type_print() 624 .fw_name = "DST-MOT" 631 .fw_name = "DST-03T" 638 .fw_name = "DST-03T" 645 .fw_name = "DST-03T" 652 .fw_name = "DST-CI" 738 VP-1020 DST-MOT LG(old), TS=188 740 VP-1020 DST-03T LG(new), TS=204 741 VP-1022 DST-03T LG(new), TS=204 742 VP-1025 DST-03T LG(new), TS=204 779 .device_id = "DST-020", 788 .device_id = "DST-030", 797 .device_id = "DST-03T", 807 .device_id = "DST-MOT", 816 .device_id = "DST-CI", 961 dprintk(verbose, DST_ERROR, 1, "DST has [%s] tuner, tuner type=[%d]", dst_card_type() 1043 dprintk(verbose, DST_ERROR, 1, "DST TYpe = MULTI FE"); dst_get_tuner_info() 1057 dprintk(verbose, DST_ERROR, 1, "DST type has TS=188"); dst_get_tuner_info() 1067 dprintk(verbose, DST_ERROR, 1, "DST has Daughterboard"); dst_get_tuner_info() 1108 return -1; /* DST not ready yet */ dst_get_device_id() 1185 dprintk(verbose, DST_ERROR, 1, "DST Initialization Failed."); dst_probe() 1227 dprintk(verbose, DST_NOTICE, 1, "DST Communication Initialization Failed."); dst_command() 1397 dprintk(verbose, DST_DEBUG, 1, "DST Communication initialization failed."); dst_write_tuna() 1416 dprintk(verbose, DST_DEBUG, 1, "DST PIO disable failed !"); dst_write_tuna() 1750 dprintk(verbose, DST_ERROR, 1, "unknown DST type. please report to the LinuxTV.org DVB mailinglist."); dst_attach() 1756 return state; /* Manu (DST is a card not a frontend) */ dst_attach() 1764 .name = "DST DVB-T", 1793 .name = "DST DVB-S", 1822 .name = "DST DVB-C", 1851 .name = "DST ATSC", 1871 MODULE_DESCRIPTION("DST DVB-S/T/C/ATSC Combo Frontend driver");
|
H A D | dst_common.h | 2 Frontend-driver for TwinHan DST Frontend 88 /* DST Communication */
|
H A D | dst_ca.h | 2 CA-driver for TwinHan DST Frontend/Card
|
H A D | dst_ca.c | 2 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() 382 dprintk(verbose, DST_CA_ERROR, 1, " DST-CI Command failed."); write_to_8820() 383 dprintk(verbose, DST_CA_NOTICE, 1, " Resetting DST."); write_to_8820() 387 dprintk(verbose, DST_CA_NOTICE, 1, " DST-CI Command success."); write_to_8820() 599 dprintk(verbose, DST_CA_ERROR, 1, " Resetting DST"); dst_ca_ioctl() 711 dprintk(verbose, DST_CA_ERROR, 1, "registering DST-CA device"); dst_ca_attach() 722 MODULE_DESCRIPTION("DST DVB-S/T/C Combo CA driver");
|
H A D | bt878.c | 221 * Hacked for DST to: bt878_start() 393 "ChainTech digitop DST-1000 DVB-S"),
|
H A D | dvb-bt8xx.c | 669 /* 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 D | bttv-cards.c | 324 { 0xfc00270f, BTTV_BOARD_TWINHAN_DST, "ChainTech digitop DST-1000 DVB-S" }, 2083 .name = "Twinhan DST + clones",
|
/linux-4.1.27/arch/alpha/lib/ |
H A D | strcpy.S | 5 * Copy a null-terminated string from SRC to DST. Return a pointer
|
H A D | strncat.S | 6 * 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 D | ev67-strncat.S | 6 * 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 D | strcat.S | 5 * Append a null-terminated string from SRC to DST.
|
H A D | ev67-strcat.S | 5 * Append a null-terminated string from SRC to DST.
|
H A D | strncpy.S | 6 * SRC to DST. If SRC does not cover all of COUNT, the balance is
|
H A D | ev6-stxcpy.S | 5 * Copy a null-terminated string from SRC to DST. 13 * a0 = DST
|
H A D | ev6-stxncpy.S | 6 * SRC to DST. 14 * a0 = DST
|
H A D | stxcpy.S | 5 * Copy a null-terminated string from SRC to DST. 13 * a0 = DST
|
H A D | stxncpy.S | 6 * SRC to DST. 14 * a0 = DST
|
/linux-4.1.27/arch/sh/lib/ |
H A D | checksum.S | 186 * 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 D | memcpy.S | 11 * No overlap between the memory of DST and of SRC are assumed. 28 ! r4 --> [ ... ] DST [ ... ] SRC
|
H A D | memmove.S | 36 ! [ ... ] DST [ ... ] SRC
|
/linux-4.1.27/arch/xtensa/lib/ |
H A D | checksum.S | 179 * 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.1.27/arch/x86/lib/ |
H A D | checksum_32.S | 268 * The macros SRC and DST specify the type of access for the instruction. 272 * DST definitions? It's damn hard to trigger all cases. I hope I got 280 #define DST(y...) \ define 309 DST( movw %bx, (%edi) ) 321 DST( movl %ebx, (%edi) ) 323 DST( movl %edx, 4(%edi) ) 328 DST( movl %ebx, 8(%edi) ) 330 DST( movl %edx, 12(%edi) ) 335 DST( movl %ebx, 16(%edi) ) 337 DST( movl %edx, 20(%edi) ) 342 DST( movl %ebx, 24(%edi) ) 344 DST( movl %edx, 28(%edi) ) 358 DST( movl %ebx, (%edi) ) 370 DST( movw %cx, (%edi) ) 375 DST( movb %cl, (%edi) ) 419 DST(movl %ebx, x(%edi) ) ; 424 DST(movl %ebx, x(%edi) ) ; 468 DST( movw %dx, (%edi) ) 474 DST( movb %dl, (%edi) )
|
/linux-4.1.27/scripts/ |
H A D | objdiff | 95 DST="`git rev-parse --short HEAD`" 98 DST="`git rev-parse --short $2`" 108 DSTD="$TMPD/$DST"
|
/linux-4.1.27/arch/sh/include/asm/ |
H A D | rtc.h | 14 #define RTC_DST_EN 0x01 /* auto switch DST - works f. USA only */
|
/linux-4.1.27/drivers/video/fbdev/core/ |
H A D | syscopyarea.c | 103 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 D | cfbcopyarea.c | 136 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.1.27/arch/powerpc/include/asm/ |
H A D | rtc.h | 43 #define RTC_DST_EN 0x01 /* auto switch DST - works f. USA only */
|
/linux-4.1.27/arch/m68k/include/asm/ |
H A D | rtc.h | 29 #define RTC_DST_EN 0x01 /* auto switch DST - works f. USA only */
|
/linux-4.1.27/net/bridge/netfilter/ |
H A D | ebt_log.c | 108 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.1.27/fs/isofs/ |
H A D | util.c | 13 * The time stored should be localtime (with or without DST in effect),
|
/linux-4.1.27/arch/parisc/include/asm/ |
H A D | rtc.h | 33 #define RTC_DST_EN 0x01 /* auto switch DST - works f. USA only */
|
/linux-4.1.27/drivers/media/usb/dvb-usb/ |
H A D | vp702x-fe.c | 11 * This file can be removed soon, after the DST-driver is rewritten to provice 348 .name = "Twinhan DST-like frontend (VP7021/VP7020) DVB-S",
|
/linux-4.1.27/net/ipv4/netfilter/ |
H A D | nf_log_ipv4.c | 59 /* 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 D | nf_nat_pptp.c | 101 /* For DST manip, map port here to where it's expected. */ pptp_nat_expected()
|
H A D | nf_nat_h323.c | 414 /* 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 D | nf_nat_l3proto_ipv4.c | 323 maniptype == NF_NAT_MANIP_SRC ? "SRC" : "DST", nf_nat_ipv4_fn()
|
H A D | ip_tables.c | 94 dprintf("DST: %pI4 Mask: %pI4 Target: %pI4.%s\n", ip_packet_match()
|
/linux-4.1.27/net/ipv6/netfilter/ |
H A D | nf_log_ipv6.c | 63 /* 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 D | nf_nat_l3proto_ipv6.c | 332 maniptype == NF_NAT_MANIP_SRC ? "SRC" : "DST", nf_nat_ipv6_fn()
|
H A D | ip6_tables.c | 109 dprintf("DST: %u. Mask: %u. Target: %u.%s\n", ip->daddr, ip6_packet_match()
|
/linux-4.1.27/include/asm-generic/ |
H A D | rtc.h | 29 #define RTC_DST_EN 0x01 /* auto switch DST - works f. USA only */
|
/linux-4.1.27/drivers/gpu/drm/gma500/ |
H A D | psb_reg.h | 243 /* Colour Key Colour (SRC/DST)*/ 247 /* Colour Key Mask (SRC/DST)*/
|
/linux-4.1.27/drivers/net/ethernet/emulex/benet/ |
H A D | be_cmds.h | 1128 * RSS_ENABLE_IPV4 SRC IPv4, DST IPv4 1129 * RSS_ENABLE_TCP_IPV4 SRC IPv4, DST IPv4, TCP SRC PORT, TCP DST PORT 1130 * RSS_ENABLE_IPV6 SRC IPv6, DST IPv6 1131 * RSS_ENABLE_TCP_IPV6 SRC IPv6, DST IPv6, TCP SRC PORT, TCP DST PORT 1132 * RSS_ENABLE_UDP_IPV4 SRC IPv4, DST IPv4, UDP SRC PORT, UDP DST PORT 1133 * RSS_ENABLE_UDP_IPV6 SRC IPv6, DST IPv6, UDP SRC PORT, UDP DST PORT
|
/linux-4.1.27/drivers/media/platform/exynos-gsc/ |
H A D | gsc-core.h | 191 * @f_width: SRC : SRCIMG_WIDTH, DST : OUTPUTDMA_WHOLE_IMG_WIDTH 192 * @f_height: SRC : SRCIMG_HEIGHT, DST : OUTPUTDMA_WHOLE_IMG_HEIGHT
|
/linux-4.1.27/arch/powerpc/kernel/ |
H A D | l2cr_6xx.S | 108 /* Stop DST streams */ 306 /* Stop DST streams */
|
/linux-4.1.27/arch/x86/net/ |
H A D | bpf_jit_comp.c | 66 #define EMIT_mov(DST, SRC) \ 67 do {if (DST != SRC) \ 68 EMIT3(add_2mod(0x48, DST, SRC), 0x89, add_2reg(0xC0, DST, SRC)); \
|
/linux-4.1.27/include/uapi/linux/netfilter_ipv4/ |
H A D | ip_tables.h | 96 #define IPT_INV_DSTIP 0x10 /* Invert the sense of DST OP. */
|
/linux-4.1.27/include/uapi/linux/netfilter_ipv6/ |
H A D | ip6_tables.h | 100 #define IP6T_INV_DSTIP 0x10 /* Invert the sense of DST OP. */
|
/linux-4.1.27/arch/powerpc/platforms/powermac/ |
H A D | time.c | 80 printk("GMT Delta read from XPRAM: %d minutes, DST: %s\n", delta/60, pmac_time_init()
|
H A D | cache.S | 53 /* Stop DST streams */
|
/linux-4.1.27/net/netfilter/ |
H A D | nf_nat_helper.c | 205 /* For DST manip, map port here to where it's expected. */ nf_nat_follow_master()
|
H A D | nf_nat_sip.c | 324 /* For DST manip, map port here to where it's expected. */ nf_nat_sip_expected()
|
/linux-4.1.27/drivers/video/fbdev/msm/ |
H A D | mdp_ppp.c | 62 PPP_ARRAY1(CFG, DST) 81 PPP_ARRAY1(CHROMA_SAMP, DST)
|
/linux-4.1.27/arch/arc/mm/ |
H A D | cache_arc700.c | 675 * Note that while @u_vaddr refers to DST page's userspace vaddr, it is copy_user_highpage() 686 * Mark DST page K-mapping as dirty for a later finalization by copy_user_highpage()
|
/linux-4.1.27/drivers/media/platform/vsp1/ |
H A D | vsp1_bru.c | 135 /* Select the virtual RPF as the Blend/ROP unit A DST input to bru_s_stream()
|
/linux-4.1.27/include/sound/ |
H A D | asoundef.h | 193 #define CEA861_AUDIO_INFOFRAME_DB1CT_DST (13<<4) /* DST */
|
/linux-4.1.27/fs/afs/ |
H A D | fsclient.c | 48 #define EXTRACT(DST) \ xdr_decode_AFSFetchStatus() 51 changed |= DST - x; \ xdr_decode_AFSFetchStatus() 52 DST = x; \ xdr_decode_AFSFetchStatus()
|
/linux-4.1.27/net/batman-adv/ |
H A D | bridge_loop_avoidance.c | 276 /* IP DST: 0.0.0.0 */ batadv_bla_send_claim() 281 /* Ethernet DST: Broadcast */ batadv_bla_send_claim() 285 /* HW DST: FF:43:05:XX:YY:YY batadv_bla_send_claim()
|
/linux-4.1.27/drivers/target/ |
H A D | target_core_xcopy.c | 533 pr_debug("Honoring local DST port from ec_cmd->se_dev:" target_xcopy_setup_pt_port() 536 pr_debug("Honoring local DST port from ec_cmd->se_lun: %p\n", target_xcopy_setup_pt_port()
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
H A D | evergreen_cs.c | 2210 DRM_ERROR("bad CP DMA DST\n"); evergreen_packet3_check() 2602 /* DST is memory. */ evergreen_packet3_check() 2619 /* DST is a reg. */ evergreen_packet3_check() 3436 DRM_ERROR("CP DMA Bad DST register\n"); evergreen_vm_packet3_check() 3443 DRM_ERROR("CP DMA Bad DST register\n"); evergreen_vm_packet3_check()
|
H A D | r600_cs.c | 1829 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 D | r300_reg.h | 1073 * - apparently, there's no quick DST operation
|
H A D | si.c | 4497 DRM_ERROR("CP DMA Bad DST register\n"); si_vm_packet3_cp_dma_check() 4504 DRM_ERROR("CP DMA Bad DST register\n"); si_vm_packet3_cp_dma_check()
|
/linux-4.1.27/arch/cris/arch-v10/lib/ |
H A D | usercopy.c | 156 updated SRC, DST and N. */ __copy_user()
|
/linux-4.1.27/sound/pci/hda/ |
H A D | hda_eld.c | 111 /* 13 */ "DST",
|
/linux-4.1.27/drivers/media/pci/cx88/ |
H A D | cx88-video.c | 381 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.1.27/drivers/crypto/caam/ |
H A D | desc.h | 204 /* SRC/DST - Destination for LOAD, Source for STORE */ 246 /* LDOFF definitions used when DST = LDST_SRCDST_WORD_DECOCTRL */
|
/linux-4.1.27/drivers/dma/ |
H A D | pl330.c | 300 * For now, the SRC & DST protection levels 344 DST, enumerator in enum:pl330_dst 1348 /* We set same protection levels for Src and DST for now */ _prepare_ccr()
|
/linux-4.1.27/drivers/rtc/ |
H A D | rtc-ds1685.c | 847 "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.1.27/drivers/media/pci/cx25821/ |
H A D | cx25821-core.c | 424 * select 656/VIP DST for downstream Channel A - C */ cx25821_registers_init()
|
/linux-4.1.27/drivers/video/ |
H A D | hdmi.c | 789 return "DST"; hdmi_audio_coding_type_get_name()
|
/linux-4.1.27/sound/pci/ |
H A D | bt87x.c | 841 {0x270f, 0xfc00}, /* Chaintech Digitop DST-1000 DVB-S */
|
/linux-4.1.27/arch/m68k/ifpsp060/src/ |
H A D | isp.S | 3217 # (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 D | pfpsp.S | 404 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 D | fplsp.S | 385 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 D | fpsp.S | 405 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.1.27/drivers/net/wireless/ |
H A D | wl3501_cs.c | 285 * | PLCP | MAC Header | DST SRC Data ... |
|