Home
last modified time | relevance | path

Searched refs:src (Results 1 – 25 of 1430) sorted by relevance

12345678910>>...58

/linux/sound/pci/ctxfi/
H A Dctsrc.c24 static int src_default_config_memrd(struct src *src);
25 static int src_default_config_memwr(struct src *src);
26 static int src_default_config_arcrw(struct src *src);
28 static int (*src_default_config[3])(struct src *) = {
34 static int src_set_state(struct src *src, unsigned int state) in src_set_state() argument
38 hw = src in src_set_state()
44 src_set_bm(struct src * src,unsigned int bm) src_set_bm() argument
54 src_set_sf(struct src * src,unsigned int sf) src_set_sf() argument
64 src_set_pm(struct src * src,unsigned int pm) src_set_pm() argument
74 src_set_rom(struct src * src,unsigned int rom) src_set_rom() argument
84 src_set_vo(struct src * src,unsigned int vo) src_set_vo() argument
94 src_set_st(struct src * src,unsigned int st) src_set_st() argument
104 src_set_bp(struct src * src,unsigned int bp) src_set_bp() argument
114 src_set_cisz(struct src * src,unsigned int cisz) src_set_cisz() argument
124 src_set_ca(struct src * src,unsigned int ca) src_set_ca() argument
134 src_set_sa(struct src * src,unsigned int sa) src_set_sa() argument
144 src_set_la(struct src * src,unsigned int la) src_set_la() argument
154 src_set_pitch(struct src * src,unsigned int pitch) src_set_pitch() argument
164 src_set_clear_zbufs(struct src * src) src_set_clear_zbufs() argument
174 src_commit_write(struct src * src) src_commit_write() argument
204 src_get_ca(struct src * src) src_get_ca() argument
213 src_init(struct src * src) src_init() argument
220 src_next_interleave(struct src * src) src_next_interleave() argument
225 src_default_config_memrd(struct src * src) src_default_config_memrd() argument
265 src_default_config_memwr(struct src * src) src_default_config_memwr() argument
293 src_default_config_arcrw(struct src * src) src_default_config_arcrw() argument
356 src_rsc_init(struct src * src,u32 idx,const struct src_desc * desc,struct src_mgr * mgr) src_rsc_init() argument
392 src_rsc_uninit(struct src * src,struct src_mgr * mgr) src_rsc_uninit() argument
416 struct src *src; get_src_rsc() local
464 put_src_rsc(struct src_mgr * mgr,struct src * src) put_src_rsc() argument
480 src_enable_s(struct src_mgr * mgr,struct src * src) src_enable_s() argument
496 src_enable(struct src_mgr * mgr,struct src * src) src_enable() argument
512 src_disable(struct src_mgr * mgr,struct src * src) src_disable() argument
611 srcimp_map(struct srcimp * srcimp,struct src * src,struct rsc * input) srcimp_map() argument
[all...]
H A Dctsrc.h34 /* Define the descriptor of a src resource */
44 struct src { struct
46 struct src *intlv; /* Pointer to next interleaved SRC in a series */ argument
54 int (*set_state)(struct src *src, unsigned int state); argument
55 int (*set_bm)(struct src *src, unsigned int bm);
56 int (*set_sf)(struct src *src, unsigned int sf);
57 int (*set_pm)(struct src *sr
47 opssrc global() argument
[all...]
H A Dctatc.c251 struct src *src; in atc_pcm_playback_prepare() local
265 err = src_mgr->get_src(src_mgr, &desc, (struct src **)&apcm->src); in atc_pcm_playback_prepare()
271 src = apcm->src; in atc_pcm_playback_prepare()
272 src->ops->set_pitch(src, pitch); in atc_pcm_playback_prepare()
273 src->ops->set_rom(src, select_rom(pitch)); in atc_pcm_playback_prepare()
274 src->ops->set_sf(src, convert_format(apcm->substream->runtime->format, in atc_pcm_playback_prepare()
276 src->ops->set_pm(src, (src->ops->next_interleave(src) != NULL)); in atc_pcm_playback_prepare()
301 src = apcm->src; in atc_pcm_playback_prepare()
305 amixer->ops->setup(amixer, &src->rsc, in atc_pcm_playback_prepare()
308 src = src->ops->next_interleave(src); in atc_pcm_playback_prepare()
[all …]
/linux/arch/m68k/math-emu/
H A Dfp_arith.c31 struct fp_ext *fp_fabs(struct fp_ext *dest, struct fp_ext *src) in fp_fabs() argument
35 fp_monadic_check(dest, src); in fp_fabs()
42 struct fp_ext *fp_fneg(struct fp_ext *dest, struct fp_ext *src) in fp_fneg() argument
46 fp_monadic_check(dest, src); in fp_fneg()
58 struct fp_ext *fp_fadd(struct fp_ext *dest, struct fp_ext *src) in fp_fadd() argument
64 fp_dyadic_check(dest, src); in fp_fadd()
68 if (IS_INF(src) && (src->sign != dest->sign)) in fp_fadd()
72 if (IS_INF(src)) { in fp_fadd()
73 fp_copy_ext(dest, src); in fp_fadd()
78 if (IS_ZERO(src)) { in fp_fadd()
[all …]
H A Dfp_trig.c21 struct fp_ext *fp_fsin(struct fp_ext *dest, struct fp_ext *src) in fp_fsin() argument
25 fp_monadic_check(dest, src); in fp_fsin()
30 struct fp_ext *fp_fcos(struct fp_ext *dest, struct fp_ext *src) in fp_fcos() argument
34 fp_monadic_check(dest, src); in fp_fcos()
39 struct fp_ext *fp_ftan(struct fp_ext *dest, struct fp_ext *src) in fp_ftan() argument
43 fp_monadic_check(dest, src); in fp_ftan()
48 struct fp_ext *fp_fasin(struct fp_ext *dest, struct fp_ext *src) in fp_fasin() argument
52 fp_monadic_check(dest, src); in fp_fasin()
57 struct fp_ext *fp_facos(struct fp_ext *dest, struct fp_ext *src) in fp_facos() argument
61 fp_monadic_check(dest, src); in fp_facos()
[all …]
H A Dfp_trig.h32 struct fp_ext *fp_fsin(struct fp_ext *dest, struct fp_ext *src);
33 struct fp_ext *fp_fcos(struct fp_ext *dest, struct fp_ext *src);
34 struct fp_ext *fp_ftan(struct fp_ext *dest, struct fp_ext *src);
35 struct fp_ext *fp_fasin(struct fp_ext *dest, struct fp_ext *src);
36 struct fp_ext *fp_facos(struct fp_ext *dest, struct fp_ext *src);
37 struct fp_ext *fp_fatan(struct fp_ext *dest, struct fp_ext *src);
38 struct fp_ext *fp_fsinh(struct fp_ext *dest, struct fp_ext *src);
39 struct fp_ext *fp_fcosh(struct fp_ext *dest, struct fp_ext *src);
40 struct fp_ext *fp_ftanh(struct fp_ext *dest, struct fp_ext *src);
41 struct fp_ext *fp_fatanh(struct fp_ext *dest, struct fp_ext *src);
[all …]
H A Dfp_log.c26 struct fp_ext *fp_fsqrt(struct fp_ext *dest, struct fp_ext *src) in fp_fsqrt() argument
33 fp_monadic_check(dest, src); in fp_fsqrt()
99 struct fp_ext *fp_fetoxm1(struct fp_ext *dest, struct fp_ext *src) in fp_fetoxm1() argument
103 fp_monadic_check(dest, src); in fp_fetoxm1()
108 struct fp_ext *fp_fetox(struct fp_ext *dest, struct fp_ext *src) in fp_fetox() argument
112 fp_monadic_check(dest, src); in fp_fetox()
117 struct fp_ext *fp_ftwotox(struct fp_ext *dest, struct fp_ext *src) in fp_ftwotox() argument
121 fp_monadic_check(dest, src); in fp_ftwotox()
126 struct fp_ext *fp_ftentox(struct fp_ext *dest, struct fp_ext *src) in fp_ftentox() argument
130 fp_monadic_check(dest, src); in fp_ftentox()
[all …]
/linux/tools/testing/selftests/drivers/usb/usbip/
H A Dusbip_test.sh68 if [ ! -f src/usbip ]; then
75 src/usbip list -l;
82 src/usbipd -D;
85 src/usbip list -r localhost;
89 src/usbip bind -b $busid;
97 src/usbip bind -b $busid;
101 src/usbip list -r localhost;
105 src/usbip unbind -b $busid;
113 src/usbip unbind -b $busid;
117 src/usbip list -r localhost;
[all …]
/linux/drivers/phy/
H A Dphy-xgene.c86 #define SATA_MEM_RESET_RD(src) (((src) & 0x00000020) >> 5) argument
95 #define REGSPEC_CFG_I_TX_WORDMODE0_SET(dst, src) \ argument
96 (((dst) & ~0x00070000) | (((u32) (src) << 16) & 0x00070000))
97 #define REGSPEC_CFG_I_RX_WORDMODE0_SET(dst, src) \ argument
98 (((dst) & ~0x00e00000) | (((u32) (src) << 21) & 0x00e00000))
100 #define REGSPEC_CFG_I_CUSTOMER_PIN_MODE0_SET(dst, src) \ argument
101 (((dst) & ~0x00007fff) | (((u32) (src)) & 0x00007fff))
103 #define CFG_I_SPD_SEL_CDR_OVR1_SET(dst, src) \ argument
104 (((dst) & ~0x0000000f) | (((u32) (src)) & 0x0000000f))
110 #define CFG_IND_ADDR_SET(dst, src) \ argument
[all …]
/linux/arch/parisc/math-emu/
H A Dsfsqrt.c44 register unsigned int src, result; in sgl_fsqrt() local
49 src = *srcptr; in sgl_fsqrt()
53 if ((src_exponent = Sgl_exponent(src)) == SGL_INFINITY_EXPONENT) { in sgl_fsqrt()
57 if (Sgl_isone_signaling(src)) { in sgl_fsqrt()
62 Sgl_set_quiet(src); in sgl_fsqrt()
68 if (Sgl_iszero_sign(src) || Sgl_isnotzero_mantissa(src)) { in sgl_fsqrt()
69 *dstptr = src; in sgl_fsqrt()
77 if (Sgl_iszero_exponentmantissa(src)) { in sgl_fsqrt()
78 *dstptr = src; in sgl_fsqrt()
85 if (Sgl_isone_sign(src)) { in sgl_fsqrt()
[all …]
/linux/arch/nios2/lib/
H A Dmemmove.c15 unsigned long dst, src; in memmove() local
22 src = (unsigned long) s; in memmove()
24 if ((count < 8) || ((dst ^ src) & 3)) in memmove()
28 *(char *)dst++ = *(char *)src++; in memmove()
32 *(short *)dst = *(short *)src; in memmove()
33 src += 2; in memmove()
38 *(long *)dst = *(long *)src; in memmove()
39 src += 4; in memmove()
45 *(char *)dst++ = *(char *)src++; in memmove()
48 src = (unsigned long) s + count; in memmove()
[all …]
/linux/arch/x86/lib/
H A Dmemmove_32.S21 .set src, %esi define
42 movl src_in, src
50 cmpl dest, src
60 movl src, tmp0
70 movl 0*4(src), tmp0
71 movl 1*4(src), tmp1
74 movl 2*4(src), tmp0
75 movl 3*4(src), tmp1
78 leal 0x10(src), src
87 movl -4(src, n), tmp0
[all …]
/linux/net/ceph/
H A Darmor.c5 int ceph_armor(char *dst, const char *src, const char *end);
6 int ceph_unarmor(char *dst, const char *src, const char *end);
37 int ceph_armor(char *dst, const char *src, const char *end) in ceph_armor() argument
42 while (src < end) { in ceph_armor()
45 a = *src++; in ceph_armor()
47 if (src < end) { in ceph_armor()
48 b = *src++; in ceph_armor()
50 if (src < end) { in ceph_armor()
51 c = *src++; in ceph_armor()
75 int ceph_unarmor(char *dst, const char *src, const char *end) in ceph_unarmor() argument
[all …]
/linux/tools/perf/tests/
H A Dmem.c32 union perf_mem_data_src src; in test__mem()
34 memset(&src, 0, sizeof(src)); in test__mem()
36 src.mem_lvl = PERF_MEM_LVL_HIT; in test__mem()
37 src.mem_lvl_num = 4; in test__mem()
39 ret |= check(src, "N/AL4 hit"); in test__mem()
41 src.mem_remote = 1; in test__mem()
43 ret |= check(src, "N/ARemote L4 hit"); in test__mem()
45 src.mem_lvl = PERF_MEM_LVL_MISS; in test__mem()
46 src in test__mem()
29 union perf_mem_data_src src; test__mem() local
[all...]
/linux/drivers/gpu/drm/i915/
H A Di915_memcpy.c42 static void __memcpy_ntdqa(void *dst, const void *src, unsigned long len) in __memcpy_ntdqa() argument
55 :: "r" (src), "r" (dst) : "memory"); in __memcpy_ntdqa()
56 src += 64; in __memcpy_ntdqa()
63 :: "r" (src), "r" (dst) : "memory"); in __memcpy_ntdqa()
64 src += 16; in __memcpy_ntdqa()
71 static void __memcpy_ntdqu(void *dst, const void *src, unsigned long len) in __memcpy_ntdqu() argument
84 :: "r" (src), "r" (dst) : "memory"); in __memcpy_ntdqu()
85 src += 64; in __memcpy_ntdqu()
92 :: "r" (src), "r" (dst) : "memory"); in __memcpy_ntdqu()
93 src += 16; in __memcpy_ntdqu()
[all …]
/linux/arch/microblaze/lib/
H A Dmemmove.c36 const char *src = v_src; in memmove() local
57 src += c; in memmove()
67 *--dst = *--src; in memmove()
71 *--dst = *--src; in memmove()
75 *--dst = *--src; in memmove()
82 switch ((unsigned long)src & 3) { in memmove()
85 i_src = (const void *)src; in memmove()
90 src = (const void *)i_src; in memmove()
94 i_src = (const void *) (((unsigned)src + 4) & ~3); in memmove()
116 src = (const void *)i_src; in memmove()
[all …]
H A Dmemcpy.c37 const char *src = v_src; in memcpy() local
56 *dst++ = *src++; in memcpy()
60 *dst++ = *src++; in memcpy()
64 *dst++ = *src++; in memcpy()
72 switch ((unsigned long)src & 3) { in memcpy()
74 i_src = (const void *)src; in memcpy()
79 src = (const void *)i_src; in memcpy()
83 i_src = (const void *) ((unsigned)src & ~3); in memcpy()
104 src = (const void *)i_src; in memcpy()
105 src -= 3; in memcpy()
[all …]
/linux/tools/testing/selftests/bpf/progs/
H A Dtest_sock_fields.c65 const struct bpf_sock *src) in skcpy() argument
67 dst->bound_dev_if = src->bound_dev_if; in skcpy()
68 dst->family = src->family; in skcpy()
69 dst->type = src->type; in skcpy()
70 dst->protocol = src->protocol; in skcpy()
71 dst->mark = src->mark; in skcpy()
72 dst->priority = src->priority; in skcpy()
73 dst->src_ip4 = src->src_ip4; in skcpy()
74 dst->src_ip6[0] = src->src_ip6[0]; in skcpy()
75 dst->src_ip6[1] = src->src_ip6[1]; in skcpy()
[all …]
/linux/arch/x86/crypto/
H A Daria-avx.h17 const u8 *src);
19 const u8 *src);
21 const u8 *src,
24 const u8 *src);
26 const u8 *src);
28 const u8 *src,
32 const u8 *src);
34 const u8 *src);
36 const u8 *src,
39 const u8 *src);
[all …]
H A Dglue_helper-asm-avx2.S8 #define load_16way(src, x0, x1, x2, x3, x4, x5, x6, x7) \ argument
9 vmovdqu (0*32)(src), x0; \
10 vmovdqu (1*32)(src), x1; \
11 vmovdqu (2*32)(src), x2; \
12 vmovdqu (3*32)(src), x3; \
13 vmovdqu (4*32)(src), x4; \
14 vmovdqu (5*32)(src), x5; \
15 vmovdqu (6*32)(src), x6; \
16 vmovdqu (7*32)(src), x7;
28 #define store_cbc_16way(src, dst, x0, x1, x2, x3, x4, x5, x6, x7, t0) \ argument
[all …]
H A Dglue_helper-asm-avx.S8 #define load_8way(src, x0, x1, x2, x3, x4, x5, x6, x7) \ argument
9 vmovdqu (0*16)(src), x0; \
10 vmovdqu (1*16)(src), x1; \
11 vmovdqu (2*16)(src), x2; \
12 vmovdqu (3*16)(src), x3; \
13 vmovdqu (4*16)(src), x4; \
14 vmovdqu (5*16)(src), x5; \
15 vmovdqu (6*16)(src), x6; \
16 vmovdqu (7*16)(src), x7;
28 #define store_cbc_8way(src, dst, x0, x1, x2, x3, x4, x5, x6, x7) \ argument
[all …]
H A Dserpent-sse2.h13 const u8 *src, bool xor);
15 const u8 *src);
17 static inline void serpent_enc_blk_xway(const void *ctx, u8 *dst, const u8 *src) in serpent_enc_blk_xway() argument
19 __serpent_enc_blk_4way(ctx, dst, src, false); in serpent_enc_blk_xway()
23 u8 *dst, const u8 *src) in serpent_enc_blk_xway_xor() argument
25 __serpent_enc_blk_4way(ctx, dst, src, true); in serpent_enc_blk_xway_xor()
28 static inline void serpent_dec_blk_xway(const void *ctx, u8 *dst, const u8 *src) in serpent_dec_blk_xway() argument
30 serpent_dec_blk_4way(ctx, dst, src); in serpent_dec_blk_xway()
38 const u8 *src, bool xor);
40 const u8 *src);
[all …]
/linux/fs/
H A Dstack.c11 void fsstack_copy_inode_size(struct inode *dst, struct inode *src) in fsstack_copy_inode_size() argument
22 i_size = i_size_read(src); in fsstack_copy_inode_size()
35 spin_lock(&src->i_lock); in fsstack_copy_inode_size()
36 i_blocks = src->i_blocks; in fsstack_copy_inode_size()
38 spin_unlock(&src->i_lock); in fsstack_copy_inode_size()
63 void fsstack_copy_attr_all(struct inode *dest, const struct inode *src) in fsstack_copy_attr_all() argument
65 dest->i_mode = src->i_mode; in fsstack_copy_attr_all()
66 dest->i_uid = src->i_uid; in fsstack_copy_attr_all()
67 dest->i_gid = src->i_gid; in fsstack_copy_attr_all()
68 dest->i_rdev = src->i_rdev; in fsstack_copy_attr_all()
[all …]
/linux/drivers/comedi/drivers/
H A Dni_routes.c48 #define RVi(table, src, dest) ((table)[(dest) * NI_NUM_NAMES + (src)]) argument
159 const int src = R->src[j]; in ni_count_valid_routes() local
163 if (RVi(rv, B(src), B(dest))) in ni_count_valid_routes()
167 (RVi(rv, B(src), B(NI_RGOUT0)) || in ni_count_valid_routes()
168 RVi(rv, B(src), B(NI_RTSI_BRD(0))) || in ni_count_valid_routes()
169 RVi(rv, B(src), B(NI_RTSI_BRD(1))) || in ni_count_valid_routes()
170 RVi(rv, B(src), B(NI_RTSI_BRD(2))) || in ni_count_valid_routes()
171 RVi(rv, B(src), B(NI_RTSI_BRD(3))))) { in ni_count_valid_routes()
213 const int src = R->src[j]; in ni_get_valid_routes() local
218 if (RVi(rv, B(src), B(dest))) in ni_get_valid_routes()
[all …]
/linux/drivers/comedi/drivers/ni_routing/ni_device_routes/
H A Dpxi-6030e.c35 .src = (int[]){
42 .src = (int[]){
49 .src = (int[]){
56 .src = (int[]){
63 .src = (int[]){
70 .src = (int[]){
77 .src = (int[]){
84 .src = (int[]){
91 .src = (int[]){
98 .src = (int[]){
[all …]

12345678910>>...58