Searched refs:blocksize (Results 26 - 50 of 300) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dshorten.c108 int blocksize; member in struct:ShortenContext
132 if (s->blocksize + s->nwrap >= UINT_MAX / sizeof(int32_t) ||
133 s->blocksize + s->nwrap <= (unsigned)s->nwrap) {
135 "s->blocksize + s->nwrap too large\n");
144 if ((err = av_reallocp(&s->decoded_base[chan], (s->blocksize + s->nwrap) *
170 for (i = 0; i < s->blocksize; i++)
311 for (i = 0; i < s->blocksize; i++) {
321 for (i = 0; i < s->blocksize; i++)
338 s->blocksize = DEFAULT_BLOCK_SIZE;
355 /* get blocksize i
358 unsigned blocksize; local
519 unsigned blocksize = get_uint(s, av_log2(s->blocksize)); local
[all...]
H A Dvorbis_parser.h37 int blocksize[2]; ///< short and long window sizes member in struct:VorbisParseContext
H A Dlpc.c157 s->lpc_apply_welch_window(samples, s->blocksize, s->windowed_samples);
158 s->lpc_compute_autocorr(s->windowed_samples, s->blocksize, order, autoc);
171 const int32_t *samples, int blocksize, int min_order,
188 if (blocksize != s->blocksize || max_order != s->max_order ||
191 ff_lpc_init(s, blocksize, max_order, lpc_type);
198 s->lpc_apply_welch_window(samples, blocksize, s->windowed_samples);
200 s->lpc_compute_autocorr(s->windowed_samples, blocksize, max_order, autoc);
223 for(i=max_order; i<blocksize; i++){
247 ref[i]= sqrt(m[(pass-1)&1].variance[i] / weight) * (blocksize
170 ff_lpc_calc_coefs(LPCContext *s, const int32_t *samples, int blocksize, int min_order, int max_order, int precision, int32_t coefs[][MAX_LPC_ORDER], int *shift, enum FFLPCType lpc_type, int lpc_passes, int omethod, int max_shift, int zero_shift) argument
268 ff_lpc_init(LPCContext *s, int blocksize, int max_order, enum FFLPCType lpc_type) argument
[all...]
H A Dvorbis.h46 void ff_vorbis_inverse_coupling(float *mag, float *ang, intptr_t blocksize);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/udev/extras/volume_id/lib/
H A Dudf.c82 goto blocksize;
84 goto blocksize;
86 goto blocksize;
88 goto blocksize;
90 goto blocksize;
92 goto blocksize;
94 goto blocksize;
97 blocksize:
103 dbg("test for blocksize: 0x%x", bs);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Dext_attr.c34 ext2fs_swap_ext_attr(buf, buf, fs->blocksize, 1);
47 retval = ext2fs_get_mem(fs->blocksize, &buf);
51 ext2fs_swap_ext_attr(buf, inbuf, fs->blocksize, 1);
78 retval = ext2fs_get_mem(fs->blocksize, &buf);
H A Dind_block.c29 int limit = fs->blocksize >> 2;
34 memset(buf, 0, fs->blocksize);
55 int limit = fs->blocksize >> 2;
H A Dnewdir.c40 retval = ext2fs_get_mem(fs->blocksize, &buf);
43 memset(buf, 0, fs->blocksize);
45 dir->rec_len = fs->blocksize;
H A Dmkjournal.c56 if ((retval = ext2fs_get_mem(fs->blocksize, &jsb)))
59 memset (jsb, 0, fs->blocksize);
66 jsb->s_blocksize = htonl(fs->blocksize);
79 if (fs->blocksize == 1024)
113 ret_size = write(fd, buf, fs->blocksize);
118 if (ret_size != (int) fs->blocksize)
120 memset(buf, 0, fs->blocksize);
123 ret_size = write(fd, buf, fs->blocksize);
128 if (ret_size != (int) fs->blocksize)
177 memset(es->buf, 0, fs->blocksize);
[all...]
H A Dres_gdt.c77 retval = ext2fs_get_mem(2 * fs->blocksize, (void *)&dindir_buf);
80 gdt_buf = (__u32 *)((char *)dindir_buf + fs->blocksize);
88 rsv_add = fs->blocksize / 512;
107 memset(dindir_buf, 0, fs->blocksize);
113 inode_size *= fs->blocksize;
134 memset(gdt_buf, 0, fs->blocksize);
H A Ddirblock.c42 end = (char *) buf + fs->blocksize;
95 retval = ext2fs_get_mem(fs->blocksize, &buf);
98 memcpy(buf, inbuf, fs->blocksize);
100 end = buf + fs->blocksize;
H A Dexpanddir.c59 retval = ext2fs_get_mem(fs->blocksize, &block);
64 memset(block, 0, fs->blocksize);
119 inode.i_size += fs->blocksize;
120 inode.i_blocks += (fs->blocksize / 512) * es.newblocks;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dlpc.c157 const int32_t *samples, int blocksize, int min_order,
173 if (blocksize != s->blocksize || max_order != s->max_order ||
176 ff_lpc_init(s, blocksize, max_order, lpc_type);
182 s->lpc_apply_welch_window(samples, blocksize, windowed_samples);
184 s->lpc_compute_autocorr(windowed_samples, blocksize, max_order, autoc);
198 for(i=max_order; i<blocksize; i++){
222 ref[i]= sqrt(m[(pass-1)&1].variance[i] / weight) * (blocksize - max_order) / 4000;
242 av_cold int ff_lpc_init(LPCContext *s, int blocksize, int max_order, argument
245 s->blocksize
156 ff_lpc_calc_coefs(LPCContext *s, const int32_t *samples, int blocksize, int min_order, int max_order, int precision, int32_t coefs[][MAX_LPC_ORDER], int *shift, enum FFLPCType lpc_type, int lpc_passes, int omethod, int max_shift, int zero_shift) argument
[all...]
H A Dlpc.h51 int blocksize; member in struct:LPCContext
88 const int32_t *samples, int blocksize, int min_order,
97 int ff_lpc_init(LPCContext *s, int blocksize, int max_order,
H A Dvorbis.h46 void vorbis_inverse_coupling(float *mag, float *ang, int blocksize);
H A Dflacdec.c55 int blocksize; ///< number of samples in the current frame member in struct:FLACContext
153 skip_bits(&gb, 16); /* skip min blocksize */
156 av_log(avctx, AV_LOG_WARNING, "invalid max blocksize: %d\n",
261 samples= s->blocksize >> rice_order;
289 const int blocksize = s->blocksize; local
314 for (i = pred_order; i < blocksize; i++)
318 for (i = pred_order; i < blocksize; i++)
322 for (i = pred_order; i < blocksize; i++)
326 for (i = pred_order; i < blocksize;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/
H A Dmke2fs.c101 int blocksize; member in struct:mke2fs_defaults
118 int blocksize, int sector_size,
138 *inode_ratio = p->inode_ratio < blocksize ?
139 blocksize : p->inode_ratio;
140 use_bsize = p->blocksize;
142 if (blocksize <= 0) {
151 if ((blocksize < 0) && (use_bsize < (-blocksize)))
152 use_bsize = -blocksize;
153 blocksize
116 set_fs_defaults(const char *fs_type, struct ext2_super_block *super, int blocksize, int sector_size, int *inode_ratio) argument
721 unsigned int gdpb, blocksize; local
795 int blocksize = 0; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/x86/
H A Dmlpdsp.c119 int blocksize, int32_t *sample_buffer)
124 blocksize = -blocksize;
161 /* 3*/"+r"(blocksize)
169 /* 3*/"+m"(blocksize)
116 mlp_filter_channel_x86(int32_t *state, const int32_t *coeff, int firorder, int iirorder, unsigned int filter_shift, int32_t mask, int blocksize, int32_t *sample_buffer) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/x86/
H A Dmlpdsp.c116 int blocksize, int32_t *sample_buffer)
121 blocksize = -blocksize;
158 /* 3*/"+r"(blocksize)
166 /* 3*/"+m"(blocksize)
113 mlp_filter_channel_x86(int32_t *state, const int32_t *coeff, int firorder, int iirorder, unsigned int filter_shift, int32_t mask, int blocksize, int32_t *sample_buffer) argument
/netgear-R7000-V1.0.7.12_1.2.5/src/shared/
H A Dccsflash.c99 ccsflash.blocksize = 64 * 1024;
114 ccsflash.blocksize = 4 * 1024;
144 ccsflash.blocksize = 4 * 1024;
218 ccsflash.blocksize = 256;
223 ccsflash.blocksize = 256;
228 ccsflash.blocksize = 256;
233 ccsflash.blocksize = 256;
238 ccsflash.blocksize = 512;
243 ccsflash.blocksize = 512;
248 ccsflash.blocksize
573 uint blocksize = 0, mask, cur_offset, cur_length, cur_retlen, remainder; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/sunrpc/auth_gss/
H A Dgss_krb5_keys.c156 size_t blocksize, keybytes, keylength, n; local
162 blocksize = gk5e->blocksize;
179 inblockdata = kmalloc(blocksize, gfp_mask);
183 outblockdata = kmalloc(blocksize, gfp_mask);
192 inblock.len = blocksize;
195 outblock.len = blocksize;
244 memset(outblockdata, 0, blocksize);
247 memset(inblockdata, 0, blocksize);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/mtools-4.0.10/
H A Dmcat.c46 static size_t bufLen(size_t blocksize, mt_size_t totalSize, mt_off_t address) argument
49 return blocksize;
50 if(address + blocksize > totalSize)
52 return blocksize;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/
H A Dzipfile.c517 OFT( extent *) blocksize)
522 extent *blocksize; /* current size of block */
527 (*blocksize) = 1024;
528 *pPtr = (char *) malloc(*blocksize);
533 /* if (*offset) + 1 > (*blocksize) - 1 */
534 else if ((*offset) > (*blocksize) - (1 + 1)) {
536 (*blocksize) += 1024;
537 *pPtr = realloc(*pPtr, *blocksize);
550 OFT( extent *) blocksize)
555 extent *blocksize;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/ec/
H A Dec_mult.c84 size_t blocksize; /* block size for wNAF splitting */ member in struct:ec_pre_comp_st
109 ret->blocksize = 8; /* default */
331 size_t blocksize = 0, numblocks = 0; /* for wNAF splitting */ local
392 blocksize = pre_comp->blocksize;
396 numblocks = (BN_num_bits(scalar) / blocksize) + 1;
504 if (tmp_len < numblocks * blocksize)
507 numblocks = (tmp_len + blocksize - 1) / blocksize;
524 wNAF_len[i] = blocksize;
741 size_t i, bits, w, pre_points_per_block, blocksize, numblocks, num; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/ec/
H A Dec_mult.c80 size_t blocksize; /* block size for wNAF splitting */ member in struct:ec_pre_comp_st
109 ret->blocksize = 8; /* default */
338 size_t blocksize = 0, numblocks = 0; /* for wNAF splitting */ local
397 blocksize = pre_comp->blocksize;
403 numblocks = (BN_num_bits(scalar) / blocksize) + 1;
518 if (tmp_len < numblocks * blocksize) {
522 numblocks = (tmp_len + blocksize - 1) / blocksize;
536 wNAF_len[i] = blocksize;
747 size_t i, bits, w, pre_points_per_block, blocksize, numblocks, num; local
[all...]

Completed in 286 milliseconds

1234567891011>>