Searched refs:src (Results 1 - 25 of 1871) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v10/lib/
H A Dstring.c7 /*# void* src; Source address. */
12 /*# DESCRIPTION: Copies len bytes of memory from src to dst. No guarantees */
26 /*# 950216 HP N==0 forgotten if non-aligned src/dst. */
28 /*# 001025 HP Make src and dst char *. Align dst to */
29 /*# dword, not just word-if-both-src-and-dst- */
49 register const char *src __asm__ ("r11") = psrc;
53 /* When src is aligned but not dst, this makes a few extra needless
64 *(char*)dst = *(char*)src;
65 src++;
72 *(short*)dst = *(short*)src;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v32/lib/
H A Dstring.c7 /*# void* src; Source address. */
12 /*# DESCRIPTION: Copies len bytes of memory from src to dst. No guarantees */
26 /*# 950216 HP N==0 forgotten if non-aligned src/dst. */
28 /*# 001025 HP Make src and dst char *. Align dst to */
29 /*# dword, not just word-if-both-src-and-dst- */
49 register const char *src __asm__ ("r11") = psrc;
53 /* When src is aligned but not dst, this makes a few extra needless
64 *(char*)dst = *(char*)src;
65 src++;
72 *(short*)dst = *(short*)src;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/pptp/
H A Dinststr.h6 void inststr(int argc, char **argv, char **envp, char *src);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Dstack.c10 void fsstack_copy_inode_size(struct inode *dst, const struct inode *src) argument
12 i_size_write(dst, i_size_read((struct inode *)src));
13 dst->i_blocks = src->i_blocks;
20 void fsstack_copy_attr_all(struct inode *dest, const struct inode *src, argument
23 dest->i_mode = src->i_mode;
24 dest->i_uid = src->i_uid;
25 dest->i_gid = src->i_gid;
26 dest->i_rdev = src->i_rdev;
27 dest->i_atime = src->i_atime;
28 dest->i_mtime = src
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/core/
H A Duverbs_marshall.c36 struct ib_ah_attr *src)
38 memcpy(dst->grh.dgid, src->grh.dgid.raw, sizeof src->grh.dgid);
39 dst->grh.flow_label = src->grh.flow_label;
40 dst->grh.sgid_index = src->grh.sgid_index;
41 dst->grh.hop_limit = src->grh.hop_limit;
42 dst->grh.traffic_class = src->grh.traffic_class;
43 dst->dlid = src->dlid;
44 dst->sl = src->sl;
45 dst->src_path_bits = src
35 ib_copy_ah_attr_to_user(struct ib_uverbs_ah_attr *dst, struct ib_ah_attr *src) argument
52 ib_copy_qp_attr_to_user(struct ib_uverbs_qp_attr *dst, struct ib_qp_attr *src) argument
89 ib_copy_path_rec_to_user(struct ib_user_path_rec *dst, struct ib_sa_path_rec *src) argument
115 ib_copy_path_rec_from_user(struct ib_sa_path_rec *dst, struct ib_user_path_rec *src) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/math-emu/
H A Dfp_arith.h22 fp_fabs(struct fp_ext *dest, struct fp_ext *src);
24 fp_fneg(struct fp_ext *dest, struct fp_ext *src);
28 fp_fadd(struct fp_ext *dest, struct fp_ext *src);
30 fp_fsub(struct fp_ext *dest, struct fp_ext *src);
32 fp_fcmp(struct fp_ext *dest, struct fp_ext *src);
34 fp_ftst(struct fp_ext *dest, struct fp_ext *src);
36 fp_fmul(struct fp_ext *dest, struct fp_ext *src);
38 fp_fdiv(struct fp_ext *dest, struct fp_ext *src);
42 fp_fmod(struct fp_ext *dest, struct fp_ext *src);
44 fp_frem(struct fp_ext *dest, struct fp_ext *src);
[all...]
H A Dfp_trig.c22 fp_fsin(struct fp_ext *dest, struct fp_ext *src) argument
26 fp_monadic_check(dest, src);
32 fp_fcos(struct fp_ext *dest, struct fp_ext *src) argument
36 fp_monadic_check(dest, src);
42 fp_ftan(struct fp_ext *dest, struct fp_ext *src) argument
46 fp_monadic_check(dest, src);
52 fp_fasin(struct fp_ext *dest, struct fp_ext *src) argument
56 fp_monadic_check(dest, src);
62 fp_facos(struct fp_ext *dest, struct fp_ext *src) argument
66 fp_monadic_check(dest, src);
72 fp_fatan(struct fp_ext *dest, struct fp_ext *src) argument
82 fp_fsinh(struct fp_ext *dest, struct fp_ext *src) argument
92 fp_fcosh(struct fp_ext *dest, struct fp_ext *src) argument
102 fp_ftanh(struct fp_ext *dest, struct fp_ext *src) argument
112 fp_fatanh(struct fp_ext *dest, struct fp_ext *src) argument
122 fp_fsincos0(struct fp_ext *dest, struct fp_ext *src) argument
130 fp_fsincos1(struct fp_ext *dest, struct fp_ext *src) argument
138 fp_fsincos2(struct fp_ext *dest, struct fp_ext *src) argument
146 fp_fsincos3(struct fp_ext *dest, struct fp_ext *src) argument
154 fp_fsincos4(struct fp_ext *dest, struct fp_ext *src) argument
162 fp_fsincos5(struct fp_ext *dest, struct fp_ext *src) argument
170 fp_fsincos6(struct fp_ext *dest, struct fp_ext *src) argument
178 fp_fsincos7(struct fp_ext *dest, struct fp_ext *src) argument
[all...]
H A Dfp_log.c25 extern struct fp_ext *fp_fadd(struct fp_ext *dest, const struct fp_ext *src);
26 extern struct fp_ext *fp_fdiv(struct fp_ext *dest, const struct fp_ext *src);
27 extern struct fp_ext *fp_fmul(struct fp_ext *dest, const struct fp_ext *src);
30 fp_fsqrt(struct fp_ext *dest, struct fp_ext *src) argument
37 fp_monadic_check(dest, src);
103 fp_fetoxm1(struct fp_ext *dest, struct fp_ext *src) argument
107 fp_monadic_check(dest, src);
116 fp_fetox(struct fp_ext *dest, struct fp_ext *src) argument
120 fp_monadic_check(dest, src);
126 fp_ftwotox(struct fp_ext *dest, struct fp_ext *src) argument
136 fp_ftentox(struct fp_ext *dest, struct fp_ext *src) argument
146 fp_flogn(struct fp_ext *dest, struct fp_ext *src) argument
156 fp_flognp1(struct fp_ext *dest, struct fp_ext *src) argument
166 fp_flog10(struct fp_ext *dest, struct fp_ext *src) argument
176 fp_flog2(struct fp_ext *dest, struct fp_ext *src) argument
186 fp_fgetexp(struct fp_ext *dest, struct fp_ext *src) argument
207 fp_fgetman(struct fp_ext *dest, struct fp_ext *src) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/lib/
H A Dsrm_printk.c14 char *src, *dst; local
23 for (src = buf; *src; ++src) {
24 if (*src == '\n') {
31 for (dst = src + num_lf; src >= buf; ) {
32 if (*src == '\n') {
35 *dst-- = *src--;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/jpeg-7/
H A Djdatasrc.c46 my_src_ptr src = (my_src_ptr) cinfo->src; local
52 src->start_of_file = TRUE;
92 my_src_ptr src = (my_src_ptr) cinfo->src; local
95 nbytes = JFREAD(src->infile, src->buffer, INPUT_BUF_SIZE);
98 if (src->start_of_file) /* Treat empty input file as fatal error */
102 src->buffer[0] = (JOCTET) 0xFF;
103 src
130 my_src_ptr src = (my_src_ptr) cinfo->src; local
184 my_src_ptr src; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dvc1dsp.c33 static void vc1_v_overlap_c(uint8_t* src, int stride) argument
40 a = src[-2*stride];
41 b = src[-stride];
42 c = src[0];
43 d = src[stride];
47 src[-2*stride] = a - d1;
48 src[-stride] = av_clip_uint8(b - d2);
49 src[0] = av_clip_uint8(c + d2);
50 src[stride] = d + d1;
51 src
58 vc1_h_overlap_c(uint8_t* src, int stride) argument
88 DCTELEM *src, *dst; local
159 DCTELEM *src, *dst; local
216 DCTELEM *src, *dst; local
273 DCTELEM *src, *dst; local
334 vc1_mspel_filter(const uint8_t *src, int stride, int mode, int r) argument
351 vc1_mspel_mc(uint8_t *dst, const uint8_t *src, int stride, int hmode, int vmode, int rnd) argument
[all...]
H A Deaidct.c35 #define IDCT_TRANSFORM(dest,s0,s1,s2,s3,s4,s5,s6,s7,d0,d1,d2,d3,d4,d5,d6,d7,munge,src) {\
36 const int a1 = (src)[s1] + (src)[s7]; \
37 const int a7 = (src)[s1] - (src)[s7]; \
38 const int a5 = (src)[s5] + (src)[s3]; \
39 const int a3 = (src)[s5] - (src)[s3]; \
40 const int a2 = (src)[s
65 ea_idct_col(DCTELEM *dest, const DCTELEM *src) argument
[all...]
H A Drv30dsp.c31 static av_unused void OPNAME ## rv30_tpel8_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, const int C1, const int C2){\
37 OP(dst[0], (-(src[-1]+src[2]) + src[0]*C1 + src[1]*C2 + 8)>>4);\
38 OP(dst[1], (-(src[ 0]+src[3]) + src[1]*C1 + src[2]*C2 + 8)>>4);\
39 OP(dst[2], (-(src[
[all...]
H A Dh264pred.c32 static void pred4x4_vertical_c(uint8_t *src, uint8_t *topright, int stride){ argument
33 const uint32_t a= ((uint32_t*)(src-stride))[0];
34 ((uint32_t*)(src+0*stride))[0]= a;
35 ((uint32_t*)(src+1*stride))[0]= a;
36 ((uint32_t*)(src+2*stride))[0]= a;
37 ((uint32_t*)(src+3*stride))[0]= a;
40 static void pred4x4_horizontal_c(uint8_t *src, uint8_t *topright, int stride){ argument
41 ((uint32_t*)(src+0*stride))[0]= src[-1+0*stride]*0x01010101;
42 ((uint32_t*)(src
47 pred4x4_dc_c(uint8_t *src, uint8_t *topright, int stride) argument
57 pred4x4_left_dc_c(uint8_t *src, uint8_t *topright, int stride) argument
66 pred4x4_top_dc_c(uint8_t *src, uint8_t *topright, int stride) argument
75 pred4x4_128_dc_c(uint8_t *src, uint8_t *topright, int stride) argument
107 pred4x4_down_right_c(uint8_t *src, uint8_t *topright, int stride) argument
112 src[0+3*stride]=(l3 + 2*l2 + l1 + 2)>>2; local
130 pred4x4_down_left_c(uint8_t *src, uint8_t *topright, int stride) argument
135 src[0+0*stride]=(t0 + t2 + 2*t1 + 2)>>2; local
153 pred4x4_down_left_svq3_c(uint8_t *src, uint8_t *topright, int stride) argument
177 pred4x4_down_left_rv40_c(uint8_t *src, uint8_t *topright, int stride) argument
183 src[0+0*stride]=(t0 + t2 + 2*t1 + 2 + l0 + l2 + 2*l1 + 2)>>3; local
201 pred4x4_down_left_rv40_nodown_c(uint8_t *src, uint8_t *topright, int stride) argument
206 src[0+0*stride]=(t0 + t2 + 2*t1 + 2 + l0 + l2 + 2*l1 + 2)>>3; local
224 pred4x4_vertical_right_c(uint8_t *src, uint8_t *topright, int stride) argument
229 src[0+0*stride]= local
247 pred4x4_vertical_left_c(uint8_t *src, uint8_t *topright, int stride) argument
251 src[0+0*stride]=(t0 + t1 + 1)>>1; local
269 pred4x4_vertical_left_rv40(uint8_t *src, uint8_t *topright, int stride, const int l0, const int l1, const int l2, const int l3, const int l4) argument
274 src[0+0*stride]=(2*t0 + 2*t1 + l1 + 2*l2 + l3 + 4)>>3; local
292 pred4x4_vertical_left_rv40_c(uint8_t *src, uint8_t *topright, int stride) argument
299 pred4x4_vertical_left_rv40_nodown_c(uint8_t *src, uint8_t *topright, int stride) argument
305 pred4x4_horizontal_up_c(uint8_t *src, uint8_t *topright, int stride) argument
308 src[0+0*stride]=(l0 + l1 + 1)>>1; local
326 pred4x4_horizontal_up_rv40_c(uint8_t *src, uint8_t *topright, int stride) argument
332 src[0+0*stride]=(t1 + 2*t2 + t3 + 2*l0 + 2*l1 + 4)>>3; local
350 pred4x4_horizontal_up_rv40_nodown_c(uint8_t *src, uint8_t *topright, int stride) argument
355 src[0+0*stride]=(t1 + 2*t2 + t3 + 2*l0 + 2*l1 + 4)>>3; local
373 pred4x4_horizontal_down_c(uint8_t *src, uint8_t *topright, int stride) argument
378 src[0+0*stride]= local
396 pred16x16_vertical_c(uint8_t *src, int stride) argument
411 pred16x16_horizontal_c(uint8_t *src, int stride) argument
422 pred16x16_dc_c(uint8_t *src, int stride) argument
443 pred16x16_left_dc_c(uint8_t *src, int stride) argument
460 pred16x16_top_dc_c(uint8_t *src, int stride) argument
476 pred16x16_128_dc_c(uint8_t *src, int stride) argument
487 pred16x16_plane_compat_c(uint8_t *src, int stride, const int svq3, const int rv40) argument
530 pred16x16_plane_c(uint8_t *src, int stride) argument
534 pred16x16_plane_svq3_c(uint8_t *src, int stride) argument
538 pred16x16_plane_rv40_c(uint8_t *src, int stride) argument
542 pred8x8_vertical_c(uint8_t *src, int stride) argument
553 pred8x8_horizontal_c(uint8_t *src, int stride) argument
562 pred8x8_128_dc_c(uint8_t *src, int stride) argument
571 pred8x8_left_dc_c(uint8_t *src, int stride) argument
593 pred8x8_left_dc_rv40_c(uint8_t *src, int stride) argument
608 pred8x8_top_dc_c(uint8_t *src, int stride) argument
630 pred8x8_top_dc_rv40_c(uint8_t *src, int stride) argument
646 pred8x8_dc_c(uint8_t *src, int stride) argument
672 pred8x8_mad_cow_dc_l0t(uint8_t *src, int stride) argument
677 pred8x8_mad_cow_dc_0lt(uint8_t *src, int stride) argument
682 pred8x8_mad_cow_dc_l00(uint8_t *src, int stride) argument
688 pred8x8_mad_cow_dc_0l0(uint8_t *src, int stride) argument
694 pred8x8_dc_rv40_c(uint8_t *src, int stride) argument
715 pred8x8_plane_c(uint8_t *src, int stride) argument
786 pred8x8l_128_dc_c(uint8_t *src, int has_topleft, int has_topright, int stride) argument
790 pred8x8l_left_dc_c(uint8_t *src, int has_topleft, int has_topright, int stride) argument
796 pred8x8l_top_dc_c(uint8_t *src, int has_topleft, int has_topright, int stride) argument
802 pred8x8l_dc_c(uint8_t *src, int has_topleft, int has_topright, int stride) argument
810 pred8x8l_horizontal_c(uint8_t *src, int has_topleft, int has_topright, int stride) argument
818 pred8x8l_vertical_c(uint8_t *src, int has_topleft, int has_topright, int stride) argument
833 pred8x8l_down_left_c(uint8_t *src, int has_topleft, int has_topright, int stride) argument
853 pred8x8l_down_right_c(uint8_t *src, int has_topleft, int has_topright, int stride) argument
875 pred8x8l_vertical_right_c(uint8_t *src, int has_topleft, int has_topright, int stride) argument
903 pred8x8l_horizontal_down_c(uint8_t *src, int has_topleft, int has_topright, int stride) argument
931 pred8x8l_vertical_left_c(uint8_t *src, int has_topleft, int has_topright, int stride) argument
958 pred8x8l_horizontal_up_c(uint8_t *src, int has_topleft, int has_topright, int stride) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/include/
H A Dsrvstr.h23 #define srvstr_pull(base_ptr, dest, src, dest_len, src_len, flags) \
24 pull_string(base_ptr, dest, src, dest_len, src_len, flags)
31 #define srvstr_pull_buf(inbuf, dest, src, dest_len, flags) \
32 pull_string(inbuf, dest, src, dest_len, smb_bufrem(inbuf, src), flags)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/parisc/math-emu/
H A Dsfsqrt.c57 register unsigned int src, result; local
62 src = *srcptr;
66 if ((src_exponent = Sgl_exponent(src)) == SGL_INFINITY_EXPONENT) {
70 if (Sgl_isone_signaling(src)) {
75 Sgl_set_quiet(src);
81 if (Sgl_iszero_sign(src) || Sgl_isnotzero_mantissa(src)) {
82 *dstptr = src;
90 if (Sgl_iszero_exponentmantissa(src)) {
91 *dstptr = src;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libbb/
H A Dsafe_strncpy.c13 char * safe_strncpy(char *dst, const char *src, size_t size) argument
17 return strncpy(dst, src, size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dfs_stack.h11 extern void fsstack_copy_attr_all(struct inode *dest, const struct inode *src,
14 extern void fsstack_copy_inode_size(struct inode *dst, const struct inode *src);
18 const struct inode *src)
20 dest->i_atime = src->i_atime;
24 const struct inode *src)
26 dest->i_atime = src->i_atime;
27 dest->i_mtime = src->i_mtime;
28 dest->i_ctime = src->i_ctime;
17 fsstack_copy_attr_atime(struct inode *dest, const struct inode *src) argument
23 fsstack_copy_attr_times(struct inode *dest, const struct inode *src) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/hnd/
H A DMakefile23 SRC := ../../../../../../src
25 WLCFGDIR := $(src)/../../../../../wl/config
26 WLSYSDIR := $(src)/../../../../../wl/sys
34 HND_OBJS := $(addprefix $(src)/$(SHARED)/, $(sort $(WLFILES:.c=.o)))
39 HND_OBJS += $(src)/$(SHARED)/nvramstubs.o
44 HND_OBJS += $(src)/$(SHARED)/bcmrobo.o
48 HND_OBJS += $(src)/$(SHARED)/bcmrobo.o
63 ifeq ($(wildcard $(src)/$(SHARED)/bcmutils.c),)
64 $(src)/$(SHARED)/bcmutils.o: $(src)/
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/lib/
H A Dmemmove.c9 void *memmove(void * dest,const void *src,size_t count) argument
11 if (dest < src) {
12 return memcpy(dest,src,count);
15 char *s = (char *) src + count;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/squashfs/
H A Dsqlzma.h5 int LzmaUncompress(void *dst, int *dstlen, void *src, int srclen);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sh64/
H A Dstring.h19 extern void *memcpy(void *dest, const void *src, size_t count);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dxstriconv.c32 xmem_cd_iconv (const char *src, size_t srclen, iconv_t cd, argument
35 int retval = mem_cd_iconv (src, srclen, cd, resultp, lengthp);
43 xstr_cd_iconv (const char *src, iconv_t cd) argument
45 char *result = str_cd_iconv (src, cd);
55 xstr_iconv (const char *src, const char *from_codeset, const char *to_codeset) argument
57 char *result = str_iconv (src, from_codeset, to_codeset);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dxstriconv.c32 xmem_cd_iconv (const char *src, size_t srclen, iconv_t cd, argument
35 int retval = mem_cd_iconv (src, srclen, cd, resultp, lengthp);
43 xstr_cd_iconv (const char *src, iconv_t cd) argument
45 char *result = str_cd_iconv (src, cd);
55 xstr_iconv (const char *src, const char *from_codeset, const char *to_codeset) argument
57 char *result = str_iconv (src, from_codeset, to_codeset);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/
H A Dxstriconv.c32 xmem_cd_iconv (const char *src, size_t srclen, iconv_t cd, argument
35 int retval = mem_cd_iconv (src, srclen, cd, resultp, lengthp);
43 xstr_cd_iconv (const char *src, iconv_t cd) argument
45 char *result = str_cd_iconv (src, cd);
55 xstr_iconv (const char *src, const char *from_codeset, const char *to_codeset) argument
57 char *result = str_iconv (src, from_codeset, to_codeset);

Completed in 392 milliseconds

1234567891011>>