Searched refs:dst_size (Results 1 - 9 of 9) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dtiertexseqv.c38 static const unsigned char *seq_unpack_rle_block(const unsigned char *src, unsigned char *dst, int dst_size) argument
46 for (i = 0, sz = 0; i < 64 && sz < dst_size; i++) {
53 for (i = 0; i < 64 && dst_size > 0; i++) {
57 memset(dst, *src++, FFMIN(len, dst_size));
59 memcpy(dst, src, FFMIN(len, dst_size));
63 dst_size -= len;
H A Ddsicinav.c115 static int cin_decode_huffman(const unsigned char *src, int src_size, unsigned char *dst, int dst_size) argument
120 unsigned char *dst_end = dst + dst_size;
148 static void cin_decode_lzss(const unsigned char *src, int src_size, unsigned char *dst, int dst_size) argument
152 unsigned char *dst_end = dst + dst_size;
176 static void cin_decode_rle(const unsigned char *src, int src_size, unsigned char *dst, int dst_size) argument
179 unsigned char *dst_end = dst + dst_size;
H A Dresample2.c211 int av_resample(AVResampleContext *c, short *dst, short *src, int *consumed, int src_size, int dst_size, int update_ctx){ argument
222 dst_size= FFMIN(dst_size, (src_size-1-index) * (int64_t)c->src_incr / c->dst_incr);
224 for(dst_index=0; dst_index < dst_size; dst_index++){
233 for(dst_index=0; dst_index < dst_size; dst_index++){
H A Davcodec.h2612 * @param dst_size the amount of space in samples available in dst
2616 int av_resample(struct AVResampleContext *c, short *dst, short *src, int *consumed, int src_size, int dst_size, int update_ctx);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/archival/libunarchive/
H A Ddecompress_unlzma.c175 uint64_t dst_size; member in struct:__anon11170
267 header.dst_size = SWAP_LE64(header.dst_size);
272 buffer = xmalloc(MIN(header.dst_size, header.dict_size));
282 while (global_pos + buffer_pos < header.dst_size) {
486 } while (len != 0 && buffer_pos < header.dst_size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/isa/wavefront/
H A Dwavefront_synth.c530 unsigned int dst_size)
534 for (i = 0; i < dst_size; i++) {
560 munge_buf (unsigned char *src, unsigned char *dst, unsigned int dst_size)
564 unsigned int last = dst_size / 2;
527 munge_int32(unsigned int src, unsigned char *dst, unsigned int dst_size) argument
559 munge_buf(unsigned char *src, unsigned char *dst, unsigned int dst_size) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ecryptfs/
H A Decryptfs_kernel.h158 extern void ecryptfs_from_hex(char *dst, char *src, int dst_size);
H A Dcrypto.c69 * @dst_size: size of dst buffer, or number of hex characters pairs to convert
71 void ecryptfs_from_hex(char *dst, char *src, int dst_size) argument
76 for (x = 0; x < dst_size; x++) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/include/libavcodec/
H A Davcodec.h2612 * @param dst_size the amount of space in samples available in dst
2616 int av_resample(struct AVResampleContext *c, short *dst, short *src, int *consumed, int src_size, int dst_size, int update_ctx);

Completed in 210 milliseconds