Searched refs:dst (Results 176 - 200 of 1233) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dinet_pton.c47 static int inet_pton4(const char *src, unsigned char *dst);
49 static int inet_pton6(const char *src, unsigned char *dst);
53 * inet_pton(af, src, dst)
58 * 0 if the address wasn't valid (`dst' is untouched in this case)
59 * -1 if some other error occurred (`dst' is untouched in this case, too)
69 Curl_inet_pton(int af, const char *src, void *dst) argument
73 return (inet_pton4(src, (unsigned char *)dst));
76 return (inet_pton6(src, (unsigned char *)dst));
86 * inet_pton4(src, dst)
91 * does not touch `dst' unles
96 inet_pton4(const char *src, unsigned char *dst) argument
153 inet_pton6(const char *src, unsigned char *dst) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/include/sysdep-i386/
H A Dchecksum.h34 __wsum csum_partial_copy_nocheck(const void *src, void *dst, argument
37 memcpy(dst, src, len);
38 return csum_partial(dst, len, sum);
45 * here even more important to align src and dst on a 32-bit (or even
50 __wsum csum_partial_copy_from_user(const void __user *src, void *dst, argument
53 if (copy_from_user(dst, src, len)) {
58 return csum_partial(dst, len, sum);
182 void __user *dst,
185 if (access_ok(VERIFY_WRITE, dst, len)) {
186 if (copy_to_user(dst, sr
181 csum_and_copy_to_user(const void *src, void __user *dst, int len, __wsum sum, int *err_ptr) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/boot/
H A Dgunzip_util.c88 * @dst: buffer to store extracted data
101 int gunzip_partial(struct gunzip_state *state, void *dst, int dstlen) argument
109 state->s.next_out = dst;
114 len = state->s.next_out - (unsigned char *)dst;
118 memcpy(dst, state->s.next_in, len);
128 * @dst: buffer to store extracted data
139 void gunzip_exactly(struct gunzip_state *state, void *dst, int dstlen) argument
143 len = gunzip_partial(state, dst, dstlen);
180 * @dst: buffer to store extracted data
192 int gunzip_finish(struct gunzip_state *state, void *dst, in argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-powerpc/
H A Dchecksum.h44 * and adds in "sum" (32-bit), while copying the block to dst.
45 * If an access exception occurs on src or dst, it stores -EFAULT
47 * NULL), and, for an error on src, zeroes the rest of dst.
52 extern __wsum csum_partial_copy_generic(const void *src, void *dst,
56 * the same as csum_partial, but copies from src to dst while it
59 #define csum_partial_copy_from_user(src, dst, len, sum, errp) \
60 csum_partial_copy_generic((__force const void *)(src), (dst), (len), (sum), (errp), NULL)
62 #define csum_partial_copy_nocheck(src, dst, len, sum) \
63 csum_partial_copy_generic((src), (dst), (len), (sum), NULL, NULL)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-avr32/
H A Dchecksum.h29 * here even more important to align src and dst on a 32-bit (or even
32 __wsum csum_partial_copy_generic(const void *src, void *dst, int len,
44 __wsum csum_partial_copy_nocheck(const void *src, void *dst, argument
47 return csum_partial_copy_generic(src, dst, len, sum, NULL, NULL);
51 __wsum csum_partial_copy_from_user(const void __user *src, void *dst, argument
54 return csum_partial_copy_generic((const void __force *)src, dst, len,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/decnet/
H A Ddn_route.c16 * Steve Whitehouse : Use dst cache for input routes too.
82 #include <net/dst.h>
113 static void dn_dst_update_pmtu(struct dst_entry *dst, u32 mtu);
137 static __inline__ unsigned dn_hash(__le16 src, __le16 dst) argument
139 __u16 tmp = (__u16 __force)(src ^ dst);
148 call_rcu_bh(&rt->u.dst.rcu_head, dst_rcu_free);
153 dst_release(&rt->u.dst);
154 call_rcu_bh(&rt->u.dst.rcu_head, dst_rcu_free);
169 if (atomic_read(&rt->u.dst.__refcnt) ||
170 (now - rt->u.dst
226 dn_dst_update_pmtu(struct dst_entry *dst, u32 mtu) argument
253 dn_dst_check(struct dst_entry *dst, __u32 cookie) argument
258 dn_dst_negative_advice(struct dst_entry *dst) argument
386 __le16 *dst; local
686 struct dst_entry *dst = skb->dst; local
725 struct dst_entry *dst = skb->dst; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dimgconvert.c940 void ff_img_copy_plane(uint8_t *dst, int dst_wrap, argument
944 if((!dst) || (!src))
947 memcpy(dst, src, width);
948 dst += dst_wrap;
994 void av_picture_copy(AVPicture *dst, const AVPicture *src, argument
1011 ff_img_copy_plane(dst->data[i], dst->linesize[i],
1017 ff_img_copy_plane(dst->data[0], dst->linesize[0],
1021 ff_img_copy_plane(dst
1030 yuyv422_to_yuv420p(AVPicture *dst, const AVPicture *src, int width, int height) argument
1086 uyvy422_to_yuv420p(AVPicture *dst, const AVPicture *src, int width, int height) argument
1144 uyvy422_to_yuv422p(AVPicture *dst, const AVPicture *src, int width, int height) argument
1178 yuyv422_to_yuv422p(AVPicture *dst, const AVPicture *src, int width, int height) argument
1211 yuv422p_to_yuyv422(AVPicture *dst, const AVPicture *src, int width, int height) argument
1244 yuv422p_to_uyvy422(AVPicture *dst, const AVPicture *src, int width, int height) argument
1277 uyyvyy411_to_yuv411p(AVPicture *dst, const AVPicture *src, int width, int height) argument
1313 yuv420p_to_yuyv422(AVPicture *dst, const AVPicture *src, int width, int height) argument
1346 yuv420p_to_uyvy422(AVPicture *dst, const AVPicture *src, int width, int height) argument
1380 ff_shrink22(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height) argument
1413 ff_shrink44(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height) argument
1444 ff_shrink88(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height) argument
1628 mono_to_gray(AVPicture *dst, const AVPicture *src, int width, int height, int xor_mask) argument
1669 monowhite_to_gray(AVPicture *dst, const AVPicture *src, int width, int height) argument
1675 monoblack_to_gray(AVPicture *dst, const AVPicture *src, int width, int height) argument
1681 gray_to_mono(AVPicture *dst, const AVPicture *src, int width, int height, int xor_mask) argument
1725 gray_to_monowhite(AVPicture *dst, const AVPicture *src, int width, int height) argument
1731 gray_to_monoblack(AVPicture *dst, const AVPicture *src, int width, int height) argument
1737 gray_to_gray16(AVPicture *dst, const AVPicture *src, int width, int height) argument
1756 gray16_to_gray(AVPicture *dst, const AVPicture *src, int width, int height) argument
1775 gray16be_to_gray(AVPicture *dst, const AVPicture *src, int width, int height) argument
1781 gray16le_to_gray(AVPicture *dst, const AVPicture *src, int width, int height) argument
1789 gray16_to_gray16(AVPicture *dst, const AVPicture *src, int width, int height) argument
2117 av_picture_crop(AVPicture *dst, const AVPicture *src, int pix_fmt, int top_band, int left_band) argument
2139 av_picture_pad(AVPicture *dst, const AVPicture *src, int height, int width, int pix_fmt, int padtop, int padbottom, int padleft, int padright, int *color) argument
2220 img_apply_table(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height, const uint8_t *table1) argument
2258 shrink41(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height) argument
2280 shrink21(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height) argument
2302 shrink12(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height) argument
2334 grow21_line(uint8_t *dst, const uint8_t *src, int width) argument
2361 grow41_line(uint8_t *dst, const uint8_t *src, int width) argument
2382 grow21(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height) argument
2394 grow12(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height) argument
2408 grow22(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height) argument
2421 grow41(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height) argument
2433 grow44(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height) argument
2446 conv411(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height) argument
2474 img_convert(AVPicture *dst, int dst_pix_fmt, const AVPicture *src, int src_pix_fmt, int src_width, int src_height) argument
2820 deinterlace_line(uint8_t *dst, const uint8_t *lum_m4, const uint8_t *lum_m3, const uint8_t *lum_m2, const uint8_t *lum_m1, const uint8_t *lum, int size) argument
2902 deinterlace_bottom_field(uint8_t *dst, int dst_wrap, const uint8_t *src1, int src_wrap, int width, int height) argument
2956 avpicture_deinterlace(AVPicture *dst, const AVPicture *src, int pix_fmt, int width, int height) argument
[all...]
H A Ddsputil.c52 void ff_add_png_paeth_prediction(uint8_t *dst, uint8_t *src, uint8_t *top, int w, int bpp);
257 static void bswap_buf(uint32_t *dst, const uint32_t *src, int w){ argument
261 dst[i+0]= bswap_32(src[i+0]);
262 dst[i+1]= bswap_32(src[i+1]);
263 dst[i+2]= bswap_32(src[i+2]);
264 dst[i+3]= bswap_32(src[i+3]);
265 dst[i+4]= bswap_32(src[i+4]);
266 dst[i+5]= bswap_32(src[i+5]);
267 dst[i+6]= bswap_32(src[i+6]);
268 dst[
1269 put_no_rnd_pixels16_l2_c(uint8_t *dst, const uint8_t *a, const uint8_t *b, int stride, int h) argument
1273 put_no_rnd_pixels8_l2_c(uint8_t *dst, const uint8_t *a, const uint8_t *b, int stride, int h) argument
1277 gmc1_c(uint8_t *dst, uint8_t *src, int stride, int h, int x16, int y16, int rounder) argument
1300 ff_gmc_c(uint8_t *dst, uint8_t *src, int stride, int h, int ox, int oy, int dxx, int dxy, int dyx, int dyy, int shift, int r, int width, int height) argument
1358 put_tpel_pixels_mc00_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height) argument
1367 put_tpel_pixels_mc10_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height) argument
1378 put_tpel_pixels_mc20_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height) argument
1389 put_tpel_pixels_mc01_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height) argument
1400 put_tpel_pixels_mc11_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height) argument
1411 put_tpel_pixels_mc12_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height) argument
1422 put_tpel_pixels_mc02_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height) argument
1433 put_tpel_pixels_mc21_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height) argument
1444 put_tpel_pixels_mc22_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height) argument
1455 avg_tpel_pixels_mc00_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height) argument
1464 avg_tpel_pixels_mc10_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height) argument
1475 avg_tpel_pixels_mc20_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height) argument
1486 avg_tpel_pixels_mc01_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height) argument
1497 avg_tpel_pixels_mc11_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height) argument
1508 avg_tpel_pixels_mc12_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height) argument
1519 avg_tpel_pixels_mc02_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height) argument
1530 avg_tpel_pixels_mc21_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height) argument
1541 avg_tpel_pixels_mc22_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height) argument
2697 wmv2_mspel8_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int h) argument
2719 ff_put_cavs_qpel8_mc00_c(uint8_t *dst, uint8_t *src, int stride) argument
2722 ff_avg_cavs_qpel8_mc00_c(uint8_t *dst, uint8_t *src, int stride) argument
2725 ff_put_cavs_qpel16_mc00_c(uint8_t *dst, uint8_t *src, int stride) argument
2728 ff_avg_cavs_qpel16_mc00_c(uint8_t *dst, uint8_t *src, int stride) argument
2737 ff_put_vc1_mspel_mc00_c(uint8_t *dst, uint8_t *src, int stride, int rnd) argument
2752 put_rv40_qpel16_mc33_c(uint8_t *dst, uint8_t *src, int stride) argument
2755 avg_rv40_qpel16_mc33_c(uint8_t *dst, uint8_t *src, int stride) argument
2758 put_rv40_qpel8_mc33_c(uint8_t *dst, uint8_t *src, int stride) argument
2761 avg_rv40_qpel8_mc33_c(uint8_t *dst, uint8_t *src, int stride) argument
2768 wmv2_mspel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int w) argument
2797 put_mspel8_mc00_c(uint8_t *dst, uint8_t *src, int stride) argument
2801 put_mspel8_mc10_c(uint8_t *dst, uint8_t *src, int stride) argument
2807 put_mspel8_mc20_c(uint8_t *dst, uint8_t *src, int stride) argument
2811 put_mspel8_mc30_c(uint8_t *dst, uint8_t *src, int stride) argument
2817 put_mspel8_mc02_c(uint8_t *dst, uint8_t *src, int stride) argument
2821 put_mspel8_mc12_c(uint8_t *dst, uint8_t *src, int stride) argument
2830 put_mspel8_mc32_c(uint8_t *dst, uint8_t *src, int stride) argument
2839 put_mspel8_mc22_c(uint8_t *dst, uint8_t *src, int stride) argument
3498 add_bytes_c(uint8_t *dst, uint8_t *src, int w) argument
3509 add_bytes_l2_c(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w) argument
3520 diff_bytes_c(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w) argument
3545 add_hfyu_median_prediction_c(uint8_t *dst, uint8_t *src1, uint8_t *diff, int w, int *left, int *left_top) argument
3562 sub_hfyu_median_prediction_c(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w, int *left, int *left_top) argument
3595 hadamard8_diff8x8_c( void *s, uint8_t *dst, uint8_t *src, int stride, int h) argument
4027 vector_fmul_c(float *dst, const float *src, int len) argument
4033 vector_fmul_reverse_c(float *dst, const float *src0, const float *src1, int len) argument
4040 ff_vector_fmul_add_add_c(float *dst, const float *src0, const float *src1, const float *src2, int src3, int len, int step) argument
4046 ff_vector_fmul_window_c(float *dst, const float *src0, const float *src1, const float *win, float add_bias, int len) argument
4061 int32_to_float_fmul_scalar_c(float *dst, const int *src, float mul, int len) argument
4078 ff_float_to_int16_c(int16_t *dst, const float *src, long len) argument
4084 ff_float_to_int16_interleave_c(int16_t *dst, const float **src, long len, int channels) argument
[all...]
H A Dvp6dsp.c28 void ff_vp6_filter_diag4_c(uint8_t *dst, uint8_t *src, int stride, argument
51 dst[x] = av_clip_uint8(( t[x-8 ] * v_weights[0]
56 dst += stride;
H A Dindeo2.c47 static int ir2_decode_plane(Ir2Context *ctx, int width, int height, uint8_t *dst, int stride, argument
67 dst[out++] = 0x80;
69 dst[out++] = table[c * 2];
70 dst[out++] = table[(c * 2) + 1];
73 dst += stride;
84 dst[out] = dst[out - stride];
88 t = dst[out - stride] + (table[c * 2] - 128);
90 dst[out] = t;
92 t = dst[ou
103 ir2_decode_plane_inter(Ir2Context *ctx, int width, int height, uint8_t *dst, int stride, const uint8_t *table) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/x86/
H A Dh264dsp_mmx.c57 static void ff_h264_idct_add_mmx(uint8_t *dst, int16_t *block, int stride) argument
91 : "+r"(dst)
157 static void ff_h264_idct8_add_mmx(uint8_t *dst, int16_t *block, int stride) argument
214 add_pixels_clamped_mmx(b2, dst, stride);
270 static void ff_h264_idct8_add_sse2(uint8_t *dst, int16_t *block, int stride) argument
299 :"+r"(dst)
304 static void ff_h264_idct_dc_add_mmx2(uint8_t *dst, int16_t *block, int stride) argument
333 :"+m"(*(uint32_t*)(dst+0*stride)),
334 "+m"(*(uint32_t*)(dst+1*stride)),
335 "+m"(*(uint32_t*)(dst
340 ff_h264_idct8_dc_add_mmx2(uint8_t *dst, int16_t *block, int stride) argument
391 ff_h264_idct_add16_mmx(uint8_t *dst, const int *block_offset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]) argument
399 ff_h264_idct8_add4_mmx(uint8_t *dst, const int *block_offset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]) argument
408 ff_h264_idct_add16_mmx2(uint8_t *dst, const int *block_offset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]) argument
419 ff_h264_idct_add16intra_mmx(uint8_t *dst, const int *block_offset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]) argument
427 ff_h264_idct_add16intra_mmx2(uint8_t *dst, const int *block_offset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]) argument
435 ff_h264_idct8_add4_mmx2(uint8_t *dst, const int *block_offset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]) argument
446 ff_h264_idct8_add4_sse2(uint8_t *dst, const int *block_offset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]) argument
476 ff_h264_idct_dc_add8_mmx2(uint8_t *dst, int16_t *block, int stride) argument
519 ff_h264_idct_add16_sse2(uint8_t *dst, const int *block_offset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]) argument
526 ff_h264_idct_add16intra_sse2(uint8_t *dst, const int *block_offset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]) argument
1923 put_h264_qpel16_mc00_sse2(uint8_t *dst, uint8_t *src, int stride) argument
1926 avg_h264_qpel16_mc00_sse2(uint8_t *dst, uint8_t *src, int stride) argument
2203 ff_h264_weight_WxH_mmx2(uint8_t *dst, int stride, int log2_denom, int weight, int offset, int w, int h) argument
2242 ff_h264_biweight_WxH_mmx2(uint8_t *dst, uint8_t *src, int stride, int log2_denom, int weightd, int weights, int offset, int w, int h) argument
[all...]
H A Dvp6dsp_sse2.c50 void ff_vp6_filter_diag4_sse2(uint8_t *dst, uint8_t *src, int stride, argument
95 : "+r"(t), "+r"(dst)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dsecdesc.c185 SEC_DESC *dst; local
190 if(( dst = TALLOC_ZERO_P(ctx, SEC_DESC)) == NULL)
193 dst->revision = revision;
194 dst->type = type;
197 dst->type |= SEC_DESC_SACL_PRESENT;
199 dst->type |= SEC_DESC_DACL_PRESENT;
201 dst->off_owner_sid = 0;
202 dst->off_grp_sid = 0;
203 dst->off_sacl = 0;
204 dst
285 SEC_DESC_BUF *dst; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/squashfs/
H A Dsqlzma.c13 int LzmaUncompress(void *dst, int *dstlen, void *src, int srclen) argument
21 memcpy(dst, src, srclen);
25 res = LzmaDecode(dst, dstlen, src + LZMA_PROPS_SIZE, &inSizePure,
/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;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-x86_64/
H A Dstring.h33 #define memcpy(dst,src,len) \
37 __ret = __memcpy((dst),(src),__len); \
39 __ret = __builtin_memcpy((dst),(src),__len); \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/h8300/lib/
H A Dchecksum.c147 csum_partial_copy_from_user(const void __user *src, void *dst, int len, argument
151 memcpy(dst, (__force const void *)src, len);
152 return csum_partial(dst, len, sum);
160 csum_partial_copy_nocheck(const void *src, void *dst, int len, __wsum sum) argument
162 memcpy(dst, src, len);
163 return csum_partial(dst, len, sum);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68knommu/lib/
H A Dchecksum.c143 csum_partial_copy_from_user(const void __user *src, void *dst, argument
147 memcpy(dst, (__force const void *)src, len);
148 return csum_partial(dst, len, sum);
156 csum_partial_copy_nocheck(const void *src, void *dst, int len, __wsum sum) argument
158 memcpy(dst, src, len);
159 return csum_partial(dst, len, sum);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-s390/
H A Dstring.h85 static inline char *strcat(char *dst, const char *src) argument
89 char *ret = dst;
96 : "=&a" (dummy), "+a" (dst), "+a" (src)
101 static inline char *strcpy(char *dst, const char *src) argument
104 char *ret = dst;
109 : "+&a" (dst), "+&a" (src) : "d" (r0)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh/kernel/
H A Dtraps.c160 unsigned char *src, *dst; local
177 dst = (unsigned char*) rn;
178 *(unsigned long*)dst = 0;
181 if (copy_from_user(dst, src, count))
184 if ((count == 2) && dst[1] & 0x80) {
185 dst[2] = 0xff;
186 dst[3] = 0xff;
189 dst += 4-count;
191 if (__copy_user(dst, src, count))
194 if ((count == 2) && dst[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libswscale/
H A Dswscale_bfin.c49 int srcSliceH, uint8_t* dst[], int dstStride[])
51 uint8_t *dsty = dst[0] + dstStride[0]*srcSliceY;
52 uint8_t *dstu = dst[1] + dstStride[1]*srcSliceY/2;
53 uint8_t *dstv = dst[2] + dstStride[2]*srcSliceY/2;
63 int srcSliceH, uint8_t* dst[], int dstStride[])
65 uint8_t *dsty = dst[0] + dstStride[0]*srcSliceY;
66 uint8_t *dstu = dst[1] + dstStride[1]*srcSliceY/2;
67 uint8_t *dstv = dst[2] + dstStride[2]*srcSliceY/2;
48 uyvytoyv12_unscaled(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, int srcSliceH, uint8_t* dst[], int dstStride[]) argument
62 yuyvtoyv12_unscaled(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, int srcSliceH, uint8_t* dst[], int dstStride[]) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/include/openssl/
H A Dbuffer.h83 size_t BUF_strlcpy(char *dst,const char *src,size_t siz);
84 size_t BUF_strlcat(char *dst,const char *src,size_t siz);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/buffer/
H A Dbuffer.h83 size_t BUF_strlcpy(char *dst,const char *src,size_t siz);
84 size_t BUF_strlcat(char *dst,const char *src,size_t siz);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/isdn/hisax/
H A Disdnhdlc.h63 unsigned char *dst, int dsize);
68 unsigned char *dst,int dsize);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m32r/lib/
H A Dusercopy.c41 #define __do_strncpy_from_user(dst,src,count,res) \
69 "4"(dst) \
75 #define __do_strncpy_from_user(dst,src,count,res) \
106 "4"(dst) \
113 __strncpy_from_user(char *dst, const char __user *src, long count) argument
116 __do_strncpy_from_user(dst, src, count, res);
121 strncpy_from_user(char *dst, const char __user *src, long count) argument
125 __do_strncpy_from_user(dst, src, count, res);

Completed in 246 milliseconds

1234567891011>>