Searched refs:SRC (Results 1 - 178 of 178) sorted by relevance

/linux-4.4.14/tools/include/linux/
H A Dfilter.h33 #define BPF_ALU64_REG(OP, DST, SRC) \
37 .src_reg = SRC, \
41 #define BPF_ALU32_REG(OP, DST, SRC) \
45 .src_reg = SRC, \
79 #define BPF_MOV64_REG(DST, SRC) \
83 .src_reg = SRC, \
87 #define BPF_MOV32_REG(DST, SRC) \
91 .src_reg = SRC, \
115 #define BPF_MOV64_RAW(TYPE, DST, SRC, IMM) \
119 .src_reg = SRC, \
123 #define BPF_MOV32_RAW(TYPE, DST, SRC, IMM) \
127 .src_reg = SRC, \
143 #define BPF_LD_IND(SIZE, SRC, IMM) \
147 .src_reg = SRC, \
153 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \
157 .src_reg = SRC, \
163 #define BPF_STX_MEM(SIZE, DST, SRC, OFF) \
167 .src_reg = SRC, \
183 #define BPF_JMP_REG(OP, DST, SRC, OFF) \
187 .src_reg = SRC, \
213 #define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM) \
217 .src_reg = SRC, \
/linux-4.4.14/samples/bpf/
H A Dlibbpf.h26 #define BPF_ALU64_REG(OP, DST, SRC) \
30 .src_reg = SRC, \
34 #define BPF_ALU32_REG(OP, DST, SRC) \
38 .src_reg = SRC, \
62 #define BPF_MOV64_REG(DST, SRC) \
66 .src_reg = SRC, \
70 #define BPF_MOV32_REG(DST, SRC) \
74 .src_reg = SRC, \
92 #define BPF_LD_IMM64_RAW(DST, SRC, IMM) \
96 .src_reg = SRC, \
127 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \
131 .src_reg = SRC, \
137 #define BPF_STX_MEM(SIZE, DST, SRC, OFF) \
141 .src_reg = SRC, \
157 #define BPF_JMP_REG(OP, DST, SRC, OFF) \
161 .src_reg = SRC, \
177 #define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM) \
181 .src_reg = SRC, \
/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 Dstrcat.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 Dev67-strcat.S5 * Append a null-terminated string from SRC to DST.
H A Dstrncat.S5 * Append no more than COUNT characters from the null-terminated string SRC
H A Dev67-strncat.S5 * Append no more than COUNT characters from the null-terminated string SRC
H A Dev6-stxcpy.S5 * Copy a null-terminated string from SRC to DST.
14 * a1 = SRC
H A Dev6-stxncpy.S6 * SRC to DST.
15 * a1 = SRC
H A Dstxcpy.S5 * Copy a null-terminated string from SRC to DST.
14 * a1 = SRC
H A Dstxncpy.S6 * SRC to DST.
15 * a1 = SRC
/linux-4.4.14/include/linux/
H A Dfilter.h52 #define BPF_ALU64_REG(OP, DST, SRC) \
56 .src_reg = SRC, \
60 #define BPF_ALU32_REG(OP, DST, SRC) \
64 .src_reg = SRC, \
98 #define BPF_MOV64_REG(DST, SRC) \
102 .src_reg = SRC, \
106 #define BPF_MOV32_REG(DST, SRC) \
110 .src_reg = SRC, \
136 #define BPF_LD_IMM64_RAW(DST, SRC, IMM) \
140 .src_reg = SRC, \
156 #define BPF_MOV64_RAW(TYPE, DST, SRC, IMM) \
160 .src_reg = SRC, \
164 #define BPF_MOV32_RAW(TYPE, DST, SRC, IMM) \
168 .src_reg = SRC, \
184 #define BPF_LD_IND(SIZE, SRC, IMM) \
188 .src_reg = SRC, \
194 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \
198 .src_reg = SRC, \
204 #define BPF_STX_MEM(SIZE, DST, SRC, OFF) \
208 .src_reg = SRC, \
214 #define BPF_STX_XADD(SIZE, DST, SRC, OFF) \
218 .src_reg = SRC, \
234 #define BPF_JMP_REG(OP, DST, SRC, OFF) \
238 .src_reg = SRC, \
264 #define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM) \
268 .src_reg = SRC, \
/linux-4.4.14/arch/sh/lib/
H A Dchecksum.S186 * The macros SRC and DST specify the type of access for the instruction.
189 * FIXME: could someone double-check whether I haven't mixed up some SRC and
194 #define SRC(...) \ define
207 ! r4: const char *SRC
249 SRC( mov.b @r4+,r1 )
250 SRC( mov.b @r4+,r0 )
282 SRC( mov.w @r4+,r0 )
298 SRC( mov.l @r4+,r0 )
299 SRC( mov.l @r4+,r1 )
305 SRC( mov.l @r4+,r0 )
306 SRC( mov.l @r4+,r1 )
312 SRC( mov.l @r4+,r0 )
313 SRC( mov.l @r4+,r1 )
319 SRC( mov.l @r4+,r0 )
320 SRC( mov.l @r4+,r1 )
341 SRC( mov.l @r4+,r0 )
359 SRC( mov.w @r4+,r0 )
369 SRC( mov.b @r4+,r0 )
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/x86/lib/
H A Dchecksum_32.S263 * The macros SRC and DST specify the type of access for the instruction.
266 * FIXME: could someone double-check whether I haven't mixed up some SRC and
271 #define SRC(y...) \ define
300 SRC(1: movw (%esi), %bx )
311 SRC(1: movl (%esi), %ebx )
312 SRC( movl 4(%esi), %edx )
318 SRC( movl 8(%esi), %ebx )
319 SRC( movl 12(%esi), %edx )
325 SRC( movl 16(%esi), %ebx )
326 SRC( movl 20(%esi), %edx )
332 SRC( movl 24(%esi), %ebx )
333 SRC( movl 28(%esi), %edx )
349 SRC(3: movl (%esi), %ebx )
361 SRC( movw (%esi), %cx )
367 SRC(5: movb (%esi), %cl )
409 SRC(movl x(%esi), %ebx ) ; \
414 SRC(movl x(%esi), %ebx ) ; \
443 SRC(movb -32(%edx),%bl) ; SRC(movb (%edx),%bl)
457 SRC( movw (%esi), %dx )
464 SRC( movb (%esi), %dl )
/linux-4.4.14/sound/soc/sh/rcar/
H A Dsrc.c2 * Renesas R-Car SRC support
49 * image of SRC (Sampling Rate Converter)
52 * 48kHz <-> | SRC | <------> | SSI | <-----> | codec |
68 * [mem] -> [SRC] -> [SSIU] -> [SSI]
73 * How to use SRC bypass mode for debugging
75 * SRC has bypass mode, and it is useful for debugging.
77 * SRCm_MODE controls whether SRC is used or not
78 * SSI_MODE0 controls whether SSIU which receives SRC data
80 * Both SRCm_MODE/SSI_MODE0 settings are needed if you use SRC,
81 * but SRC bypass mode needs SSI_MODE0 only.
91 * whether SRC is used or not.
93 * ex) doesn't use SRC
98 * ex) uses SRC
107 * ex) uses SRC bypass mode
274 * return convert rate if SRC is used, rsnd_src_get_ssi_rate()
326 * SRC assumes that it is used under DPCM if user want to use rsnd_src_hw_params()
327 * sampling rate convert. Then, SRC should be FE. rsnd_src_hw_params()
463 * ADG is used as source clock if SRC was used, rsnd_src_set_convert_timing_gen1()
465 * SSI WS is used as source clock if SRC is not used rsnd_src_set_convert_timing_gen1()
511 /* Select SRC mode (fixed value) */ rsnd_src_set_convert_rate_gen1()
674 * Enable SRC output if you want to use sync convert together with DVC _rsnd_src_start_gen2()
724 dev_warn(dev, "no more SRC restart\n"); __rsnd_src_interrupt_gen2()
931 * enable SRC sync convert if possible rsnd_src_pcm_new_gen2()
935 * SRC sync convert needs clock master rsnd_src_pcm_new_gen2()
941 * SRC In doesn't work if DVC was enabled rsnd_src_pcm_new_gen2()
951 "SRC Out Rate Switch" : rsnd_src_pcm_new_gen2()
952 "SRC In Rate Switch", rsnd_src_pcm_new_gen2()
960 "SRC Out Rate" : rsnd_src_pcm_new_gen2()
961 "SRC In Rate", rsnd_src_pcm_new_gen2()
1060 * init SRC rsnd_src_probe()
H A Ddma.c437 /* SRC */ rsnd_gen2_dma_addr()
470 dev_err(dev, "DVC is selected without SRC\n"); rsnd_gen2_dma_addr()
529 * [S] -*-> SRC -o-> [E] rsnd_dma_of_path()
530 * [S] -*-> SRC -> DVC -o-> [E] rsnd_dma_of_path()
531 * [S] -*-> SRC -> CTU -> MIX -> DVC -o-> [E] rsnd_dma_of_path()
564 * | SSI | SRC | rsnd_dma_of_path()
H A Dcore.c21 * - SRC : Sampling Rate Converter
31 * - SRC : Sampling Rate Converter
290 * exchange channeles on SRC if possible, rsnd_get_dalign()
700 /* SRC */ rsnd_path_init()
1169 * call "remove" for SSI/SRC/DVC rsnd_rdai_continuance_probe()
1178 * remove SRC/DVC from DAI, rsnd_rdai_continuance_probe()
H A Drsnd.h583 * R-Car 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.
183 #define SRC(y...) \ define
247 SRC( l32i a9, a2, 0 )
248 SRC( l32i a8, a2, 4 )
253 SRC( l32i a9, a2, 8 )
254 SRC( l32i a8, a2, 12 )
259 SRC( l32i a9, a2, 16 )
260 SRC( l32i a8, a2, 20 )
265 SRC( l32i a9, a2, 24 )
266 SRC( l32i a8, a2, 28 )
287 SRC( l32i a9, a2, 0 )
318 SRC( l16ui a9, a2, 0 )
329 SRC( l8ui a9, a2, 0 )
353 SRC( l8ui a9, a2, 0 )
354 SRC( l8ui a8, a2, 1 )
H A Dusercopy.S34 * do the same, but use SRC to align the source data.
H A Dmemcopy.S52 * do the same, but use SRC to align the source data.
/linux-4.4.14/kernel/bpf/
H A Dcore.c48 #define SRC regs[insn->src_reg] macro
319 DST = DST OP SRC; \ __bpf_prog_run()
322 DST = (u32) DST OP (u32) SRC; \ __bpf_prog_run()
347 DST = (u32) SRC; __bpf_prog_run()
353 DST = SRC; __bpf_prog_run()
363 (*(s64 *) &DST) >>= SRC; __bpf_prog_run()
369 if (unlikely(SRC == 0)) __bpf_prog_run()
371 div64_u64_rem(DST, SRC, &tmp); __bpf_prog_run()
375 if (unlikely(SRC == 0)) __bpf_prog_run()
378 DST = do_div(tmp, (u32) SRC); __bpf_prog_run()
389 if (unlikely(SRC == 0)) __bpf_prog_run()
391 DST = div64_u64(DST, SRC); __bpf_prog_run()
394 if (unlikely(SRC == 0)) __bpf_prog_run()
397 do_div(tmp, (u32) SRC); __bpf_prog_run()
478 if (DST == SRC) { __bpf_prog_run()
490 if (DST != SRC) { __bpf_prog_run()
502 if (DST > SRC) { __bpf_prog_run()
514 if (DST >= SRC) { __bpf_prog_run()
526 if (((s64) DST) > ((s64) SRC)) { __bpf_prog_run()
538 if (((s64) DST) >= ((s64) SRC)) { __bpf_prog_run()
550 if (DST & SRC) { __bpf_prog_run()
567 *(SIZE *)(unsigned long) (DST + insn->off) = SRC; \ __bpf_prog_run()
573 DST = *(SIZE *)(unsigned long) (SRC + insn->off); \ __bpf_prog_run()
582 atomic_add((u32) SRC, (atomic_t *)(unsigned long) __bpf_prog_run()
586 atomic64_add((u64) SRC, (atomic64_t *)(unsigned long) __bpf_prog_run()
607 * SRC == any register __bpf_prog_run()
642 off = IMM + SRC; __bpf_prog_run()
645 off = IMM + SRC; __bpf_prog_run()
648 off = IMM + SRC; __bpf_prog_run()
H A Dverifier.c1343 * SRC == any register
/linux-4.4.14/scripts/
H A Dobjdiff94 SRC="`git rev-parse --short HEAD^`"
97 SRC="`git rev-parse --short $1`"
107 SRCD="$TMPD/$SRC"
/linux-4.4.14/sound/pci/ctxfi/
H A Dctsrc.h50 struct src *intlv; /* Pointer to next interleaved SRC in a series */
51 const struct src_rsc_ops *ops; /* SRC specific operations */
54 unsigned char mode; /* Working mode of this SRC resource */
103 /* Define the descriptor of a SRC Input Mapper resource */
145 /* Constructor and destructor of SRC resource manager */
H A Dctresource.c100 /* SRC channel is at Audio Ring slot 1 every 16 slots. */
101 [SRC] = 0x1,
154 case SRC: rsc_init()
183 case SRC: rsc_uninit()
221 case SRC: rsc_mgr_init()
268 case SRC: rsc_mgr_uninit()
H A Dctatc.h66 void *src; /* SRC for interacting with host memory */
68 void **srcimps; /* SRC Input Mappers */
72 unsigned char n_srcimp; /* Number of SRC Input Mappers */
H A Dct20k2reg.h36 /* SRC Registers */
H A Dctatc.c116 [SRC] = { .create = (create_t)src_mgr_create,
245 struct src_mgr *src_mgr = atc->rsc_mgrs[SRC]; atc_pcm_playback_prepare()
259 /* Get SRC resource */ atc_pcm_playback_prepare()
323 struct src_mgr *src_mgr = atc->rsc_mgrs[SRC]; atc_pcm_release_resources()
472 if (1 == atc->msr) { /* FIXME: do we really need SRC here if pitch==1 */ setup_src_node_conf()
505 struct src_mgr *src_mgr = atc->rsc_mgrs[SRC]; atc_pcm_capture_get_resources()
624 /* Allocate a SRC for writing data to host memory */ atc_pcm_capture_get_resources()
728 struct src_mgr *src_mgr = atc->rsc_mgrs[SRC]; atc_pcm_capture_start()
743 /* Set up recording SRC */ atc_pcm_capture_start()
788 struct src_mgr *src_mgr = atc->rsc_mgrs[SRC]; spdif_passthru_playback_get_resources()
800 /* Get SRC resource */ spdif_passthru_playback_get_resources()
1193 src_mgr = atc->rsc_mgrs[SRC]; atc_release_resources()
1413 src_mgr = atc->rsc_mgrs[SRC]; atc_get_resources()
1510 atc_connect_dai(atc->rsc_mgrs[SRC], dai, atc_connect_resources()
1521 atc_connect_dai(atc->rsc_mgrs[SRC], dai, atc_connect_resources()
1531 atc_connect_dai(atc->rsc_mgrs[SRC], dai, atc_connect_resources()
H A Dctresource.h25 SRC, enumerator in enum:RSCTYP
H A Dcthardware.h88 /* SRC operations */
125 /* SRC Input Mapper operations */
215 #define SRC_INT (1 << 0) /* SRC channels */
H A Dctsrc.c369 err = rsc_init(&p->rsc, idx + i, SRC, desc->msr, mgr->mgr.hw); src_rsc_init()
381 (--p)->intlv = NULL; /* Set @intlv of the last SRC to NULL */ src_rsc_init()
435 "Can't meet SRC resource request!\n"); get_src_rsc()
557 err = rsc_mgr_init(&src_mgr->mgr, SRC, SRC_RESOURCE_NUM, hw); src_mgr_create()
572 /* Disable all SRC resources. */ src_mgr_create()
H A Dcthw20k1.c53 * SRC control block definitions.
56 /* SRC resource control block */
89 /* SRC resource register dirty flags */
114 /* SRC manager control block */
2038 /* Reset all SRC pending interrupts */ hw_card_init()
H A Dcthw20k2.c54 * SRC control block definitions.
57 /* SRC resource control block */
89 /* SRC resource register dirty flags */
114 /* SRC manager control block */
2161 /* Reset all SRC pending interrupts */ hw_card_init()
H A Dct20k1reg.h458 /* SRC HERE */
H A Dctdaio.c488 /* default to disabling control of a SRC */ dai_rsc_init()
/linux-4.4.14/arch/sh/kernel/cpu/sh2a/
H A Dsetup-sh7203.c38 /* ROM-DEC, SDHI, SRC, and IEB are SH7263 specific */
40 SRC, IEBI, enumerator in enum:__anon2624
127 INTC_IRQ(SRC, 244), INTC_IRQ(SRC, 245),
128 INTC_IRQ(SRC, 246),
163 { 0xfffe0c16, 0, 16, 4, /* IPR17 */ { RCAN1, SRC, IEBI, 0 } },
/linux-4.4.14/sound/pci/ca0106/
H A Dca0106.h98 #define IPR_SRC_LOCKED 0x00000040 /* SRC lock status changed */
118 #define INTE_SRC_LOCKED 0x00000040 /* SRC lock status changed */
131 #define HCFG_CAPTURE_I2S_BYPASS 0x08000000 /* 1 = bypass I2S input async SRC. */
132 #define HCFG_CAPTURE_SPDIF_BYPASS 0x04000000 /* 1 = bypass SPDIF input async SRC. */
134 #define HCFG_FORCE_LOCK 0x01000000 /* For test only. Force input SRC tracker to lock. */
344 * 5 - SRC output.
367 /* SRC is input from the capture inputs. */
368 /* SRC channel 0 [2:0] -> SPDIF Mixer/Router channel 0-7.
369 * SRC channel 1 [6:4] -> SPDIF Mixer/Router channel 0-7.
370 * SRC channel 2 [10:8] -> SPDIF Mixer/Router channel 0-7.
371 * SRC channel 3 [14:12] -> SPDIF Mixer/Router channel 0-7.
372 * SRC channel 4 [18:16] -> SPDIF Mixer/Router channel 0-7.
373 * SRC channel 5 [22:20] -> SPDIF Mixer/Router channel 0-7.
374 * SRC channel 6 [26:24] -> SPDIF Mixer/Router channel 0-7.
375 * SRC channel 7 [30:28] -> SPDIF Mixer/Router channel 0-7.
380 * Invert SRC to SPDIF Mixer [7-0] (One bit per channel)
382 * SRC to SPDIF Mixer disable [23:16] (One bit per channel)
389 /* SRC Right volume [7:0]
390 * SRC Left volume [15:8]
433 * SRC input source select [4] 0=Audio from digital mixer, 1=Audio from analog source.
438 * I2S output source select [18] (0=Audio from host, 1=Audio from SRC)
444 * SPDIF output source select [26] (0=host, 1=SRC)
H A Dca0106_mixer.c189 "IEC958 out", "i2s mixer out", "IEC958 in", "i2s in", "AC97 in", "SRC out" snd_ca0106_capture_source_info()
/linux-4.4.14/drivers/media/platform/vsp1/
H A Dvsp1_bru.c108 /* Route BRU input 1 as SRC input to the ROP unit and configure the ROP bru_s_stream()
110 * Blend/ROP unit B SRC input. bru_s_stream()
123 * SRC input. bru_s_stream()
141 /* Route BRU inputs 0 to 3 as SRC inputs to Blend/ROP units A to bru_s_stream()
142 * D in that order. The Blend/ROP unit B SRC is hardwired to the bru_s_stream()
156 * when the SRC input isn't premultiplied, and to bru_s_stream()
/linux-4.4.14/arch/parisc/lib/
H A Dio.c124 * SRC.
161 * SRC. SRC must be at least short aligned. This is used by the
234 * SRC. Now works with any alignment in SRC. Performance is important,
404 * driver to write disk sectors. Works with any alignment in SRC.
/linux-4.4.14/drivers/video/fbdev/core/
H A Dsyscopyarea.c103 because in case SRC and DST overlap bitwise (e.g. bitcpy()
106 overlap with the current long from SRC. We store bitcpy()
248 because in case SRC and DST overlap bitwise (e.g. bitcpy_rev()
251 overlap with the current long from SRC. We store bitcpy_rev()
H A Dcfbcopyarea.c136 SRC and DST overlap bitwise (e.g. when moving just one pixel in bitcpy()
138 overlap with the current long from SRC. We store this value in bitcpy()
308 SRC and DST overlap bitwise (e.g. when moving just one pixel in bitcpy_rev()
310 overlap with the current long from SRC. We store this value in 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/include/net/netfilter/
H A Dnf_nat.h12 /* SRC manip occurs POST_ROUTING or LOCAL_IN */
/linux-4.4.14/tools/perf/
H A Dbuiltin-probe.c452 "[EVENT=]FUNC[@SRC][+OFF|%return|:RL|;PT]|SRC:AL|SRC;PT" __cmd_probe()
478 "FUNC[:RLN[+NUM|-RLN2]]|SRC:ALN[+NUM|-ALN2]", __cmd_probe()
481 "FUNC[@SRC][+OFF|%return|:RL|;PT]|SRC:AL|SRC;PT", __cmd_probe()
/linux-4.4.14/drivers/clk/
H A Dclk-nomadik.c8 #define pr_fmt(fmt) "Nomadik SRC clocks: " fmt
61 /* Base address of the SRC */
95 pr_crit("no matching node for SRC, aborting clock init\n"); nomadik_src_init()
292 * The Nomadik SRC clocks are gated, but not in the sense that
358 pr_err("could not allocate SRC clock %s\n", src_clk_register()
567 pr_err("%s: SRC clock \"%s\" missing clock-id property\n", of_nomadik_src_clk_setup()
/linux-4.4.14/arch/alpha/kernel/
H A Dio.c211 * Read COUNT 8-bit bytes from port PORT into memory starting at SRC.
251 * SRC. SRC must be at least short aligned. This is used by the
292 * SRC. Now works with any alignment in SRC. Performance is important,
386 * driver to write disk sectors. Works with any alignment in SRC.
/linux-4.4.14/sound/soc/codecs/
H A Dadau1373.c742 SND_SOC_DAPM_SUPPLY("AIF1 IN SRC", ADAU1373_SRC_DAI_CTRL(0), 2, 0,
744 SND_SOC_DAPM_SUPPLY("AIF1 OUT SRC", ADAU1373_SRC_DAI_CTRL(0), 1, 0,
746 SND_SOC_DAPM_SUPPLY("AIF2 IN SRC", ADAU1373_SRC_DAI_CTRL(1), 2, 0,
748 SND_SOC_DAPM_SUPPLY("AIF2 OUT SRC", ADAU1373_SRC_DAI_CTRL(1), 1, 0,
750 SND_SOC_DAPM_SUPPLY("AIF3 IN SRC", ADAU1373_SRC_DAI_CTRL(2), 2, 0,
752 SND_SOC_DAPM_SUPPLY("AIF3 OUT SRC", ADAU1373_SRC_DAI_CTRL(2), 1, 0,
1015 { "AIF1 IN", NULL, "AIF1 IN SRC", adau1373_check_src },
1016 { "AIF1 OUT", NULL, "AIF1 OUT SRC", adau1373_check_src },
1017 { "AIF2 IN", NULL, "AIF2 IN SRC", adau1373_check_src },
1018 { "AIF2 OUT", NULL, "AIF2 OUT SRC", adau1373_check_src },
1019 { "AIF3 IN", NULL, "AIF3 IN SRC", adau1373_check_src },
1020 { "AIF3 OUT", NULL, "AIF3 OUT SRC", adau1373_check_src },
H A Drt5631.c769 SOC_DAPM_ENUM("Left SPKVOL SRC", rt5631_spkvoll_enum);
778 SOC_DAPM_ENUM("Left HPVOL SRC", rt5631_hpvoll_enum);
787 SOC_DAPM_ENUM("Left OUTVOL SRC", rt5631_outvoll_enum);
796 SOC_DAPM_ENUM("Right OUTVOL SRC", rt5631_outvolr_enum);
805 SOC_DAPM_ENUM("Right HPVOL SRC", rt5631_hpvolr_enum);
814 SOC_DAPM_ENUM("Right SPKVOL SRC", rt5631_spkvolr_enum);
824 SOC_DAPM_ENUM("SPOL SRC", rt5631_spol_src_enum);
834 SOC_DAPM_ENUM("SPOR SRC", rt5631_spor_src_enum);
843 SOC_DAPM_ENUM("MONO SRC", rt5631_mono_src_enum);
852 SOC_DAPM_ENUM("HPL SRC", rt5631_hpl_src_enum);
861 SOC_DAPM_ENUM("HPR SRC", rt5631_hpr_src_enum);
H A Drt5677.c1681 /* In/OutBound Source Pass SRC */ /* MX-A5 [3] [4] [0] [1] [2] */
1683 "Bypass", "Pass SRC"
3065 SND_SOC_DAPM_MUX("DAC12 SRC Mux", SND_SOC_NOPM, 0, 0,
3067 SND_SOC_DAPM_MUX("DAC3 SRC Mux", SND_SOC_NOPM, 0, 0,
3567 { "IB01 Bypass Mux", "Pass SRC", "IB01 Mux" },
3577 { "IB23 Bypass Mux", "Pass SRC", "IB23 Mux" },
3586 { "IB45 Bypass Mux", "Pass SRC", "IB45 Mux" },
3670 { "OB01 Bypass Mux", "Pass SRC", "OB01 MIX" },
3672 { "OB23 Bypass Mux", "Pass SRC", "OB23 MIX" },
4051 { "DAC12 SRC Mux", "STO1 DAC MIX", "Stereo DAC MIX" },
4052 { "DAC12 SRC Mux", "MONO DAC MIX", "Mono DAC MIX" },
4053 { "DAC12 SRC Mux", "DD MIX1", "DD1 MIX" },
4054 { "DAC12 SRC Mux", "DD MIX2", "DD2 MIX" },
4056 { "DAC3 SRC Mux", "MONO DAC MIXL", "Mono DAC MIXL" },
4057 { "DAC3 SRC Mux", "MONO DAC MIXR", "Mono DAC MIXR" },
4058 { "DAC3 SRC Mux", "DD MIX1L", "DD1 MIXL" },
4059 { "DAC3 SRC Mux", "DD MIX2L", "DD2 MIXL" },
4061 { "DAC 1", NULL, "DAC12 SRC Mux" },
4062 { "DAC 2", NULL, "DAC12 SRC Mux" },
4063 { "DAC 3", NULL, "DAC3 SRC Mux" },
H A Dwm8995.c472 SOC_ENUM("DMIC1 SRC", dmic_src1_enum),
473 SOC_ENUM("DMIC2 SRC", dmic_src2_enum),
904 SOC_DAPM_ENUM("SPK1L SRC", spk1l_src_enum);
906 SOC_DAPM_ENUM("SPK1R SRC", spk1r_src_enum);
908 SOC_DAPM_ENUM("SPK2L SRC", spk2l_src_enum);
910 SOC_DAPM_ENUM("SPK2R SRC", spk2r_src_enum);
H A Dlm49453.c531 SOC_DAPM_ENUM("DMIC12 SRC", lm49453_dmic12_cfg_enum),
532 SOC_DAPM_ENUM("DMIC34 SRC", lm49453_dmic34_cfg_enum),
H A Dwm8994.c1378 dev_dbg(codec->dev, "SRC status: %x\n", post_ev()
/linux-4.4.14/drivers/net/arcnet/
H A Dcom20020.h19 * modified by SRC, incorporated herein by reference.
H A Darc-rawmode.c18 * modified by SRC, incorporated herein by reference.
H A Dcom20020-isa.c20 * modified by SRC, incorporated herein by reference.
H A Dcapmode.c20 * modified by SRC, incorporated herein by reference.
H A Dcom20020_cs.c21 * modified by SRC, incorporated herein by reference.
H A Drfc1051.c18 * modified by SRC, incorporated herein by reference.
H A Darc-rimi.c19 * modified by SRC, incorporated herein by reference.
H A Dcom20020-pci.c21 * modified by SRC, incorporated herein by reference.
H A Dcom90io.c20 * modified by SRC, incorporated herein by reference.
H A Dcom20020.c20 * modified by SRC, incorporated herein by reference.
H A Dcom90xx.c19 * modified by SRC, incorporated herein by reference.
H A Drfc1201.c18 * modified by SRC, incorporated herein by reference.
H A Darcnet.c20 * modified by SRC, incorporated herein by reference.
/linux-4.4.14/drivers/media/rc/keymaps/
H A Drc-medion-x10.c63 { 0x1c, KEY_SEARCH }, /* TV/RAD, CH SRC */
/linux-4.4.14/drivers/power/
H A Dwm831x_power.c584 irq = wm831x_irq(wm831x, platform_get_irq_byname(pdev, "PWR SRC")); wm831x_power_probe()
589 dev_err(&pdev->dev, "Failed to request PWR SRC IRQ %d: %d\n", wm831x_power_probe()
618 irq = wm831x_irq(wm831x, platform_get_irq_byname(pdev, "PWR SRC")); wm831x_power_probe()
647 irq = wm831x_irq(wm831x, platform_get_irq_byname(pdev, "PWR SRC")); wm831x_power_remove()
/linux-4.4.14/arch/sh/kernel/cpu/sh4a/
H A Dsetup-sh7770.c366 TMU, DMAC, I2S, SRC, GFX3D, SPI, SCIF, BBDMAC, enumerator in enum:__anon2671
423 INTC_GROUP(SRC, SRC_RX, SRC_TX, SRC_SPDIF),
436 GPS, CAN, ATAPI, USB, YUV, REMOTE, VIDEO_IN, DU, SRC, I2S,
443 { 0xffe00008, 0, 32, 8, /* INT2PRI2 */ { DMAC, I2S, SRC, DU } },
H A Dsetup-sh7734.c488 SRC_M, /* SRC 0,1 */
/linux-4.4.14/include/uapi/linux/netfilter_arp/
H A Darp_tables.h81 #define ARPT_INV_SRCIP 0x0004 /* Invert the sense of SRC IP. */
83 #define ARPT_INV_SRCDEVADDR 0x0010 /* Invert the sense of SRC DEV ADDR. */
/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_l3proto_ipv4.c268 /* maniptype == SRC for postrouting. */ nf_nat_ipv4_fn()
323 maniptype == NF_NAT_MANIP_SRC ? "SRC" : "DST", nf_nat_ipv4_fn()
H A Darp_tables.c170 dprintf("SRC: %pI4. Mask: %pI4. Target: %pI4.%s\n", arp_packet_match()
H A Dip_tables.c91 dprintf("SRC: %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.c106 dprintf("SRC: %u. Mask: %u. Target: %u.%s\n", ip->saddr, ip6_packet_match()
/linux-4.4.14/sound/pci/lola/
H A Dlola_mixer.c430 /* SRC can be activated and the dwInputSRCMask is valid? */ lola_set_src_config()
433 /* handle all even Inputs - SRC is a stereo setting !!! */ lola_set_src_config()
439 /* if one IO needs SRC, both stereo IO will get SRC */ lola_set_src_config()
649 .name = "Digital SRC Capture Switch",
H A Dlola.c442 /* update SRC configuration if applicable */ lola_reset_setups()
/linux-4.4.14/sound/pci/pcxhr/
H A Dpcxhr_mixer.c621 /* set codec SRC on off */ pcxhr_set_audio_source()
631 /* set codec SRC on off */ pcxhr_set_audio_source()
652 "Line", "Digital", "Digi+SRC", "Mic", "Line+Mic" pcxhr_audio_src_info()
657 i = 2; /* no SRC, no Mic available */ pcxhr_audio_src_info()
659 i = 3; /* SRC available */ pcxhr_audio_src_info()
679 int i = 2; /* no SRC, no Mic available */ pcxhr_audio_src_put()
681 i = 3; /* SRC available */ pcxhr_audio_src_put()
H A Dpcxhr.h97 unsigned int board_has_aes1:1; /* if 1 board has AES1 plug and SRC */
H A Dpcxhr_mix22.c69 #define PCXHR_CFG_SRC_MASK 0x04 /* 0 (Bypass), 1 (SRC Actif) */
579 /*texts[5] = {"Line", "Digital", "Digi+SRC", "Mic", "Line+Mic"}*/
H A Dpcxhr.c189 /* boards without hw AES1 and SRC onboard are all using fw_file_set==4 */
/linux-4.4.14/arch/arm/mach-nomadik/
H A Dcpu-8815.c55 #define NOMADIK_SRC_BASE 0x101E0000 /* SRC base */
/linux-4.4.14/sound/pci/au88x0/
H A Dau8820.h125 /* SRC */
H A Dau8810.h125 /* SRC */
H A Dau8830.h145 /* SRC */
H A Dau88x0.h199 /* SRC */
H A Dau88x0_core.c62 Now the SRC is working too! Yeah! XMMS works !
441 /* SRC (CAsp4Src.s and CAsp4SrcBlock) */
559 Objective: Set samplerate for given SRC module.
562 src: Integer index of the SRC module.
637 //printk(KERN_INFO "vortex: SRC %d, d=0x%x, esi=0x%x, esp10=0x%x, ebp=0x%x\n", src, d, esi, esp10, ebp); vortex_src_setupchannel()
1843 // Connect SRC to mixin.
2147 /* Get SRC and MIXER hardware resources. */ vortex_adb_allocroute()
2285 /* Get SRC and MIXER hardware resources. */ vortex_adb_allocroute()
2352 Set the SampleRate of the SRC's attached to the given DMA engine.
2366 /* Setup SRC's */ vortex_adb_setsrc()
/linux-4.4.14/drivers/scsi/aacraid/
H A Ddpcsup.c239 * Handles the AIFs - new method (SRC)
327 } else if (isAif == 2) { /* AIF - new (SRC) */ aac_intr_normal()
H A Daacraid.h519 __le32 HostRRQ_AddrHigh; /* Host RRQ (response queue) for SRC */
805 * PMC SRC message unit registers
H A Dsrc.c28 * Abstract: Hardware Device Interface for PMC SRC based controllers
/linux-4.4.14/drivers/misc/
H A Dics932s401.c244 /* Calculate SRC frequency from the M/N registers. */ calculate_src_freq()
292 /* Calculate PCI frequency from the SRC M/N registers. */ calculate_pci_freq()
/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/net/batman-adv/
H A Dbridge_loop_avoidance.c294 /* IP SRC: 0.0.0.0 */ batadv_bla_send_claim()
298 /* Ethernet SRC/HW SRC: originator mac */ batadv_bla_send_claim()
316 * set Ethernet SRC to the clients mac batadv_bla_send_claim()
325 * set HW SRC to the clients mac batadv_bla_send_claim()
334 * set HW SRC to the special mac containg the crc batadv_bla_send_claim()
343 * set HW SRC and header destination to the receiving backbone batadv_bla_send_claim()
/linux-4.4.14/sound/pci/cs46xx/
H A Ddsp_spos_scb_lib.c1282 /* Hack to bypass creating a new SRC */ cs46xx_dsp_create_pcm_channel()
1293 /* search for a already created SRC SCB with the same sample rate */ cs46xx_dsp_create_pcm_channel()
1322 "dsp_spos: to many SRC instances\n!"); cs46xx_dsp_create_pcm_channel()
1337 /* we need to create a new SRC SCB */ cs46xx_dsp_create_pcm_channel()
1349 "dsp_spos: creating SRC \"%s\"\n", scb_name); cs46xx_dsp_create_pcm_channel()
H A Dcs46xx_dsp_scb_types.h621 /* inputBufConsumerPtr: Input buffer read pointer (into SRC filter)
676 /* inputBufConsumerPtr: Input buffer read pointer (into SRC filter) */
H A Ddsp_spos.c1500 sample rate we will use this SRC to adjust it */ cs46xx_dsp_scb_and_task_init()
1779 /* unmute SRC volume */ cs46xx_dsp_enable_spdif_in()
/linux-4.4.14/sound/soc/intel/skylake/
H A Dskl-messages.c418 * DSP needs SRC module for frequency conversion, SRC takes base module
507 * DSP firmware supports various modules like copier, SRC, updown etc.
H A Dskl-topology.c157 * A pipeline may have modules which impact the pcm parameters, like SRC,
/linux-4.4.14/drivers/media/pci/cx25821/
H A Dcx25821-video-upstream.c559 /* 656/VIP SRC Upstream Channel I & J and 7 - Host Bus Interface for cx25821_start_video_dma_upstream()
625 /* 656/VIP SRC Upstream Channel I & J and 7 - Host Bus Interface for cx25821_vidupstream_init()
H A Dcx25821-core.c422 /* 656/VIP SRC Upstream Channel I & J and 7 - Host Bus Interface for cx25821_registers_init()
/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/sound/pci/
H A Dens1370.c148 #define ES_1373_BYPASS_P1 (1<<31) /* bypass SRC for PB1 */
149 #define ES_1373_BYPASS_P2 (1<<30) /* bypass SRC for PB2 */
150 #define ES_1373_BYPASS_R (1<<29) /* bypass SRC for REC */
540 /* expose the SRC state bits */ snd_es1371_src_read()
644 /* restore SRC reg */ snd_es1371_codec_write()
687 /* restore SRC reg */ snd_es1371_codec_read()
900 /* 48k doesn't need SRC (it breaks AC3-passthru) */ snd_ensoniq_playback1_prepare()
2018 * its parameters causes the chip to lock up (the SRC busy bit will snd_ensoniq_chip_init()
H A Dcs4281.c324 #define BA0_SSPM_MIXEN (1<<6) /* Playback SRC + FM/Wavetable MIX */
331 #define BA0_DACSR 0x0744 /* DAC Sample Rate - Playback SRC */
332 #define BA0_ADCSR 0x0748 /* ADC Sample Rate - Capture SRC */
340 #define BA0_SSCR_XLPSRC (1<<8) /* External SRC Loopback Mode */
341 #define BA0_SSCR_LPSRC (1<<7) /* SRC Loopback Mode */
347 #define BA0_SRCSA 0x075c /* SRC Slot Assignments */
H A Des1968.c1161 0 = mono/left SRC snd_es1968_capture_setup()
1162 1 = right SRC snd_es1968_capture_setup()
1167 the 'mixbuf' bit of page, then through the SRC apu snd_es1968_capture_setup()
1175 /* SRC (left/mono); get input from inputing apu */ snd_es1968_capture_setup()
1184 /* SRC (right) */ snd_es1968_capture_setup()
H A Dvia82xx.c387 unsigned int dxs_src: 1; /* use full SRC capabilities of DXS */
1201 /* use full SRC capabilities of DXS */ snd_via82xx_pcm_open()
/linux-4.4.14/drivers/video/fbdev/
H A Ddnfb.c89 #define SRC 0x3 macro
/linux-4.4.14/drivers/memory/
H A Dfsl_ifc.c190 dev_err(ctrl->dev, "SRC ID of the error" fsl_ifc_ctrl_irq()
/linux-4.4.14/drivers/net/ethernet/i825xx/
H A Dlasi_82596.c63 according to the terms of the GNU General Public License as modified by SRC,
H A D82596.c35 according to the terms of the GNU General Public License as modified by SRC,
H A Dlib82596.c63 according to the terms of the GNU General Public License as modified by SRC,
/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/uapi/linux/netfilter_ipv4/
H A Dip_tables.h95 #define IPT_INV_SRCIP 0x08 /* Invert the sense of SRC IP. */
/linux-4.4.14/include/uapi/linux/netfilter_ipv6/
H A Dip6_tables.h99 #define IP6T_INV_SRCIP 0x08 /* Invert the sense of SRC IP. */
/linux-4.4.14/include/linux/mlx4/
H A Dqp.h304 * High 24 bits are SRC remote buffer; low 8 bits are flags:
/linux-4.4.14/Documentation/DocBook/
H A DMakefile5 # to document the SRC - and how to read it.
/linux-4.4.14/drivers/net/ethernet/broadcom/bnx2x/
H A Dbnx2x_init.h530 * SRC configuration
608 BLOCK_PRTY_INFO(SRC, 0x4, 0x7, 0x7, 0x7, 0x7),
H A Dbnx2x_init_ops.h910 * SRC initializations
H A Dbnx2x_reg.h725 * function that is used is always SRC-PCI; 2.VF_Valid = 0; 3.VFID=0;
1040 interrupt; [22] SRC Parity error; [23] SRC Hw interrupt; [24] TSDM Parity
1054 BRB Hw interrupt; [20] PRS Parity error; [21] PRS Hw interrupt; [22] SRC
1055 Parity error; [23] SRC Hw interrupt; [24] TSDM Parity error; [25] TSDM Hw
1168 [20] PRS Parity error; [21] PRS Hw interrupt; [22] SRC Parity error; [23]
1169 SRC Hw interrupt; [24] TSDM Parity error; [25] TSDM Hw interrupt; [26]
1188 [20] PRS Parity error; [21] PRS Hw interrupt; [22] SRC Parity error; [23]
1189 SRC Hw interrupt; [24] TSDM Parity error; [25] TSDM Hw interrupt; [26]
1208 [20] PRS Parity error; [21] PRS Hw interrupt; [22] SRC Parity error; [23]
1209 SRC Hw interrupt; [24] TSDM Parity error; [25] TSDM Hw interrupt; [26]
1223 [20] PRS Parity error; [21] PRS Hw interrupt; [22] SRC Parity error; [23]
1224 SRC Hw interrupt; [24] TSDM Parity error; [25] TSDM Hw interrupt; [26]
1450 Parity error; [21] PRS Hw interrupt; [22] SRC Parity error; [23] SRC Hw
1486 BRB Hw interrupt; [20] PRS Parity error; [21] PRS Hw interrupt; [22] SRC
1487 Parity error; [23] SRC Hw interrupt; [24] TSDM Parity error; [25] TSDM Hw
3375 /* [R 4] debug only: SRC current credit. Transaction based. */
3597 /* [RW 2] SRC byte swapping mode configuration for master read requests */
3787 /* [RW 3] page size in L2P table for SRC module; -4k; -8k; -16k; -32k; -64k;
H A Dbnx2x_cmn.h444 * bnx2x_ilt_set_cnic_info - prepare ILT configurations for SRC
H A Dbnx2x.h1213 /* SRC (Searcher) host DB constants */
H A Dbnx2x_main.c8639 /* SRC */ bnx2x_ilt_set_info()
8649 "ilt client[SRC]: start %d, end %d, psz 0x%x, flags 0x%x, hw psz %d\n", bnx2x_ilt_set_info()
/linux-4.4.14/arch/sparc/net/
H A Dbpf_jit_comp.c247 #define emit_stmem(OFF, SRC) \
248 do { *prog++ = ST32I | RS1(SP) | S13(BIAS - (OFF)) | RD(SRC); \
/linux-4.4.14/arch/alpha/math-emu/
H A Dmath.c218 SRC == T_floating. It is also interesting that alpha_fp_emul()
/linux-4.4.14/arch/arm/mach-imx/
H A Dsuspend-imx6.S162 * to set it in SRC register.
/linux-4.4.14/arch/arc/mm/
H A Dcache.c850 * If SRC page was already mapped in userspace AND it's U-mapping is copy_user_highpage()
855 * equally valid for SRC page as well copy_user_highpage()
878 * if SRC was already usermapped and non-congruent to kernel mapping copy_user_highpage()
/linux-4.4.14/drivers/media/dvb-frontends/
H A Dstv0367.c2551 /* Set Correction factor of SRC gain */ stv0367cab_set_srate()
2588 /* Symbol rate and SRC gain calculation */ stv0367cab_set_srate()
2602 /* SRC Gain Calculation */ stv0367cab_set_srate()
2618 /* SRC Gain Calculation */ stv0367cab_set_srate()
2633 /* SRC Gain Calculation */ stv0367cab_set_srate()
2648 /* SRC Gain Calculation */ stv0367cab_set_srate()
/linux-4.4.14/tools/perf/util/
H A Dprobe-event.c1068 * SRC[:SLN[+NUM|-ELN]]
1069 * FNC[@SRC][:SLN[+NUM|-ELN]]
1157 * perf probe [EVENT=]SRC[:LN|;PTN] parse_perf_probe_point()
1158 * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT] parse_perf_probe_point()
1273 semantic_error("SRC@SRC is not allowed.\n"); parse_perf_probe_point()
/linux-4.4.14/drivers/mmc/host/
H A Domap_hsmmc.c108 #define SRC (1 << 25) macro
1105 * SRC or SRD bit of SYSCTL register
1142 omap_hsmmc_reset_controller_fsm(host, SRC); hsmmc_command_incomplete()
1611 omap_hsmmc_reset_controller_fsm(host, SRC); omap_hsmmc_request()
/linux-4.4.14/drivers/mfd/
H A Dmax14577.c303 * I2C dummy device), except masking the INT SRC register.
H A Dwm831x-core.c899 .name = "PWR SRC",
/linux-4.4.14/drivers/media/i2c/cx25840/
H A Dcx25840-audio.c27 * Note: The PLL and SRC parameters are based on a reference frequency that
H A Dcx25840-core.c1784 /* Check for status of Horizontal lock (SRC lock isn't reliable) */ cx25840_g_input_status()
/linux-4.4.14/drivers/target/
H A Dtarget_core_xcopy.c491 pr_debug("Honoring local SRC port from ec_cmd->se_dev:" target_xcopy_setup_pt_port()
494 pr_debug("Honoring local SRC port from ec_cmd->se_lun: %p\n", target_xcopy_setup_pt_port()
/linux-4.4.14/arch/frv/kernel/
H A Dsetup.c577 #define CLOCK(SRC,RATIO) ((SRC) * (((RATIO) >> 4) & 0x0f) / ((RATIO) & 0x0f)) determine_clocks()
/linux-4.4.14/sound/pci/hda/
H A Dpatch_cirrus.c253 * the clock and write enable to the S/PDIF SRC RAMs is not properly
258 * Workaround: The following verb sequence briefly turns on the S/PDIF SRC
H A Dpatch_ca0132.c557 /* SRC clock is 98 MHz/196 MHz (196 MHz forces rate to 96 KHz) */
559 /* SRC rate is 48 kHz/96 kHz (48 kHz disabled when clock is 196 MHz) */
561 /* Decode Loop (DSP->SRC->DSP) is disabled/enabled */
/linux-4.4.14/drivers/gpu/drm/radeon/
H A Devergreen_cs.c2150 DRM_ERROR("bad CP DMA SRC\n"); evergreen_packet3_check()
2558 /* SRC is memory. */ evergreen_packet3_check()
2575 /* SRC is a reg. */ evergreen_packet3_check()
3405 DRM_ERROR("CP DMA Bad SRC register\n"); evergreen_vm_packet3_check()
3412 DRM_ERROR("CP DMA Bad SRC register\n"); evergreen_vm_packet3_check()
H A Dr600_cs.c1799 DRM_ERROR("bad CP DMA SRC\n"); r600_packet3_check()
2212 /* SRC is memory. */ r600_packet3_check()
2229 /* SRC is a reg. */ r600_packet3_check()
H A Dsi.c4479 DRM_ERROR("CP DMA Bad SRC register\n"); si_vm_packet3_cp_dma_check()
4486 DRM_ERROR("CP DMA Bad SRC register\n"); si_vm_packet3_cp_dma_check()
/linux-4.4.14/sound/pci/asihpi/
H A Dasihpi.c377 /* on cards without SRC, snd_card_asihpi_pcm_samplerates()
1016 /* on cards without SRC, must query at valid rate, snd_card_asihpi_playback_formats()
1199 /* on cards without SRC, must query at valid rate, snd_card_asihpi_capture_formats()
/linux-4.4.14/drivers/s390/block/
H A Ddasd_3990_erp.c2070 /* print SIM SRC from RefCode */ dasd_3990_erp_handle_sim()
2071 dev_err(&device->cdev->dev, "SIM - SRC: " dasd_3990_erp_handle_sim()
2075 /* print SIM SRC Refcode */ dasd_3990_erp_handle_sim()
2076 dev_warn(&device->cdev->dev, "log SIM - SRC: " dasd_3990_erp_handle_sim()
/linux-4.4.14/drivers/net/ethernet/intel/i40evf/
H A Di40evf_ethtool.c473 /* We need at least the IP SRC and DEST fields for hashing */ i40evf_set_rss_hash_opt()
/linux-4.4.14/drivers/edac/
H A Dmce_amd.c52 const char * const pp_msgs[] = { "SRC", "RES", "OBS", "GEN" };
/linux-4.4.14/arch/cris/arch-v10/lib/
H A Dusercopy.c156 updated SRC, DST and N. */ __copy_user()
/linux-4.4.14/arch/ia64/kernel/
H A Dacpi.c744 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n"); acpi_boot_init()
/linux-4.4.14/net/ipv4/
H A Desp4.c333 * SRC ports. esp_input_done2()
H A Digmp.c2866 seq_puts(seq, "Idx Device MCA SRC INC EXC\n"); igmp_mcf_seq_show()
/linux-4.4.14/net/netfilter/
H A Dnf_nat_core.c185 /* Only called for SRC manip */
/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/arch/m68k/ifpsp060/src/
H A Dpfpsp.S409 set SRC, 0 # offsets within an
5402 # If the DST exponent is > the SRC exponent, set the DST exponent #
5403 # equal to 0x3fff and scale the SRC exponent by the value that the #
5404 # DST exponent was scaled by. If the SRC exponent is greater or equal, #
7127 fmovm.x SRC(%a0),&0x80 # load value
7173 fmovm.x SRC(%a0),&0x80 # load value
7219 fmovm.x SRC(%a0),&0x80 # load value
7267 # what's at SRC(a0).
7273 fmovm.x SRC(%a0),&0x80 # return result
7359 fmovm.x SRC(%a0),&0x80 # fetch fop from stack
7597 fmovm.x SRC(%a0),&0x80 # fetch fop from stack
8441 fmovm.x SRC(%a0),&0x80 # return INF result in fp0
8516 fmovm.x SRC(%a0),&0x80 # return result in fp0
8532 fmovm.x SRC(%a0),&0x80 # return result in fp0
8763 fmov.x SRC(%a0),%fp0 # do fmove in
9674 fint.x SRC(%a0),%fp0 # execute fint
9730 fmovm.x SRC(%a0),&0x80 # return result in fp0
9777 fintrz.x SRC(%a0),%fp0 # execute fintrz
9832 fmovm.x SRC(%a0),&0x80 # return result in fp0
10153 fabs.x SRC(%a0),%fp0 # force absolute value
10201 fcmp.x %fp0,SRC(%a0) # do compare
11465 fmovm.x SRC(%a0),&0x80 # return src INF
11914 fmovm.x SRC(%a0),&0x80 # return src INF
12263 fmovm.x SRC(%a0),&0x80 # return +INF in fp0
H A Dfpsp.S410 set SRC, 0 # offsets within an
9598 fintrz.x SRC(%a0),%fp0 # calc int of src
10967 fmov.x SRC(%a0),%fp0 # the fmove sets the SNAN bit
10977 fmov.x SRC(%a0),%fp0 # return the non-signalling nan
12010 fmovm.x SRC(%a0),&0x80 # return INF result in fp0
12085 fmovm.x SRC(%a0),&0x80 # return result in fp0
12101 fmovm.x SRC(%a0),&0x80 # return result in fp0
12332 fmov.x SRC(%a0),%fp0 # do fmove in
13243 fint.x SRC(%a0),%fp0 # execute fint
13299 fmovm.x SRC(%a0),&0x80 # return result in fp0
13346 fintrz.x SRC(%a0),%fp0 # execute fintrz
13401 fmovm.x SRC(%a0),&0x80 # return result in fp0
13722 fabs.x SRC(%a0),%fp0 # force absolute value
13770 fcmp.x %fp0,SRC(%a0) # do compare
15034 fmovm.x SRC(%a0),&0x80 # return src INF
15483 fmovm.x SRC(%a0),&0x80 # return src INF
15832 fmovm.x SRC(%a0),&0x80 # return +INF in fp0
15856 # If the DST exponent is > the SRC exponent, set the DST exponent #
15857 # equal to 0x3fff and scale the SRC exponent by the value that the #
15858 # DST exponent was scaled by. If the SRC exponent is greater or equal, #
20226 fmovm.x SRC(%a0),&0x80 # load value
20272 fmovm.x SRC(%a0),&0x80 # load value
20318 fmovm.x SRC(%a0),&0x80 # load value
20366 # what's at SRC(a0).
20372 fmovm.x SRC(%a0),&0x80 # return result
20458 fmovm.x SRC(%a0),&0x80 # fetch fop from stack
20696 fmovm.x SRC(%a0),&0x80 # fetch fop from stack
H A Dfplsp.S390 set SRC, 0 # offsets within an
9239 fintrz.x SRC(%a0),%fp0 # calc int of src
10267 fmov.x SRC(%a0),%fp0
/linux-4.4.14/drivers/staging/netlogic/
H A Dxlr_net.c638 /* Configure to extract SRC port and Dest port for TCP and UDP pkts */ xlr_config_parser()
/linux-4.4.14/drivers/tty/
H A Drocket.c3007 SRCINT_EN: Interrupt on SRC (Special Rx Condition)
3058 SRCINT_EN: Interrupt on SRC (Special Rx Condition)
/linux-4.4.14/drivers/dma/
H A Dpl330.c300 * For now, the SRC & DST protection levels
343 SRC = 0, enumerator in enum:pl330_dst
/linux-4.4.14/drivers/media/pci/cx18/
H A Dcx18-av-core.c294 * Video ADC crystal clock to pixel clock SRC decimation ratio cx18_av_std_setup()
/linux-4.4.14/drivers/crypto/caam/
H A Ddesc.h221 /* SRC/DST - Destination for LOAD, Source for STORE */
/linux-4.4.14/arch/x86/kernel/acpi/
H A Dboot.c1173 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n"); acpi_parse_madt_ioapic_entries()
/linux-4.4.14/drivers/media/pci/cx23885/
H A Dcx23885-core.c1349 /* If the port supports SRC SELECT, configure it */ cx23885_start_dma()
/linux-4.4.14/drivers/net/wireless/
H A Dwl3501_cs.c285 * | PLCP | MAC Header | DST SRC Data ... |
/linux-4.4.14/drivers/staging/xgifb/
H A Dvb_setmode.c423 Tempbx = XGI_CRT1Table[index].CR[6]; /* SRC */ XGI_SetXG21CRTC()
518 Tempax = XGI_CRT1Table[index].CR[6]; /* SRC */ XGI_SetXG27CRTC()
/linux-4.4.14/drivers/video/fbdev/sis/
H A Dinit.c3380 SiS_Pr->CCRT1CRTC[15] = /* SRC */ SiS_CalcCRRegisters()
/linux-4.4.14/drivers/media/usb/cx231xx/
H A Dcx231xx-avcore.c1159 /* Setup SRC sources and clocks */ cx231xx_set_audio_decoder_input()
/linux-4.4.14/drivers/net/ethernet/intel/i40e/
H A Di40e_ethtool.c2158 /* We need at least the IP SRC and DEST fields for hashing */ i40e_set_rss_hash_opt()
/linux-4.4.14/net/core/
H A Dpktgen.c366 We fill in SRC address later
/linux-4.4.14/include/sound/
H A Demu10k1.h840 /* S/PDIF Host Record Index (bypasses SRC) */
/linux-4.4.14/arch/powerpc/kernel/
H A Dprom_init.c437 /* ToDo: should put up an SRC here on pSeries */ prom_panic()
/linux-4.4.14/drivers/net/ethernet/sfc/
H A Dmcdi_pcol.h716 /* FC Port index that matches the MC port index in SRC */
/linux-4.4.14/include/linux/mfd/arizona/
H A Dregisters.h8100 * R3841 (0xF01) - ANC SRC
/linux-4.4.14/drivers/gpu/drm/i915/
H A Dintel_display.c15774 err_printf(m, " SRC: %08x\n", error->pipe[i].source); for_each_pipe()

Completed in 9424 milliseconds