Searched refs:max_size (Results 1 - 25 of 76) sorted by relevance

1234

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Dvocdec.c64 voc_get_packet(AVFormatContext *s, AVPacket *pkt, AVStream *st, int max_size) argument
79 max_size -= 4;
90 max_size -= 2;
103 max_size -= 4;
113 max_size -= 12;
118 max_size -= voc->remaining_size;
126 if (max_size <= 0)
127 max_size = 2048;
128 size = FFMIN(voc->remaining_size, max_size);
H A Dvoc.h49 AVStream *st, int max_size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/boot/
H A Dflatdevtree.h67 int max_size; /* maximum size of tree */ member in struct:ft_cxt
90 void ft_begin(struct ft_cxt *cxt, void *blob, unsigned int max_size,
92 int ft_open(struct ft_cxt *cxt, void *blob, unsigned int max_size,
H A Dflatdevtree_misc.c61 int ft_init(void *dt_blob, unsigned int max_size, unsigned int max_find_device) argument
71 return ft_open(&cxt, dt_blob, max_size, max_find_device,
H A Dflatdevtree.c148 return p <= (char *)cxt->bph + cxt->max_size;
176 cxt->max_size = tot;
211 return (char *)cxt->bph + cxt->max_size;
278 < (char *)cxt->bph + cxt->max_size) {
280 str = (char *)cxt->bph + cxt->max_size - ssize;
304 size = _ALIGN(cxt->max_size + (nextra - tot) + EXPAND_INCR, 8);
308 cxt->max_size = size;
504 void ft_begin(struct ft_cxt *cxt, void *blob, unsigned int max_size, argument
515 cxt->max_size = max_size;
544 ft_open(struct ft_cxt *cxt, void *blob, unsigned int max_size, unsigned int max_find_device, void *(*realloc_fn) (void *, unsigned long)) argument
[all...]
H A Dops.h79 int ft_init(void *dt_blob, unsigned int max_size, unsigned int max_find_device);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/tc/
H A Demp_ematch.l12 #define YY_INPUT(buf, result, max_size) \
21 if (max_size <= strlen(*ematch_argv) + 1) { \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/s390/appldata/
H A Dappldata_os.c221 int rc, max_size; local
223 max_size = sizeof(struct appldata_os_data) +
225 if (max_size > APPLDATA_MAX_REC_SIZE) {
227 "record size (%i)\n", max_size, APPLDATA_MAX_REC_SIZE);
231 P_DEBUG("max. sizeof(os) = %i, sizeof(os_cpu) = %lu\n", max_size,
234 appldata_os_data = kzalloc(max_size, GFP_DMA);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/sched/
H A Dsch_tbf.c123 u32 max_size; member in struct:tbf_sched_data
143 if (skb->len > q->max_size) {
298 int max_size,n; local
319 max_size = (n << qopt->rate.cell_log)-1;
326 if (size < max_size) max_size = size;
328 if (max_size < 0)
343 q->max_size = max_size;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/mm/
H A Dppc_mmu_32.c85 unsigned long max_size = (256<<20);
99 /* set BAT block size to MIN(max_size, align) */
100 if (align && align < max_size)
101 max_size = align;
104 for (bl = 128<<10; bl < max_size; bl <<= 1) {
114 for (bl = 128<<10; bl < max_size; bl <<= 1)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/mm/
H A Dppc_mmu.c82 unsigned long max_size = (256<<20); local
94 /* set BAT block size to MIN(max_size, align) */
95 if (align && align < max_size)
96 max_size = align;
99 for (bl = 128<<10; bl < max_size; bl <<= 1) {
109 for (bl = 128<<10; bl < max_size; bl <<= 1)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-core/
H A Ddns.c43 size_t max_size; local
46 max_size = AVAHI_DNS_PACKET_SIZE_MAX;
48 max_size = mtu - AVAHI_DNS_PACKET_EXTRA_SIZE;
50 max_size = 0;
52 if (max_size < AVAHI_DNS_PACKET_HEADER_SIZE)
53 max_size = AVAHI_DNS_PACKET_HEADER_SIZE;
55 if (!(p = avahi_malloc(sizeof(AvahiDnsPacket) + max_size)))
59 p->max_size = max_size;
302 if (p->size+l > p->max_size)
857 avahi_rdata_serialize(AvahiRecord *record, void *rdata, size_t max_size) argument
[all...]
H A Drr.h170 size_t avahi_rdata_serialize(AvahiRecord *record, void *rdata, size_t max_size);
H A Ddns.h35 size_t size, rindex, max_size; member in struct:AvahiDnsPacket
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-compat-libdns_sd/
H A Dtxt.c38 size_t size, max_size; member in struct:TXTRecordInternal
63 t->max_size = buffer ? length : (size_t)0;
97 if (t->size + size <= t->max_size)
112 t->max_size = nsize;
210 assert(t->size <= t->max_size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/ipvs/
H A Dip_vs_lblc.c104 int max_size; /* maximum size of entries */ member in struct:ip_vs_lblc_table
321 if (atomic_read(&tbl->entries) <= tbl->max_size) {
326 goal = (atomic_read(&tbl->entries) - tbl->max_size)*4/3;
327 if (goal > tbl->max_size/2)
328 goal = tbl->max_size/2;
378 tbl->max_size = IP_VS_LBLC_TAB_SIZE*16;
H A Dip_vs_lblcr.c293 int max_size; /* maximum size of entries */ member in struct:ip_vs_lblcr_table
507 if (atomic_read(&tbl->entries) <= tbl->max_size) {
512 goal = (atomic_read(&tbl->entries) - tbl->max_size)*4/3;
513 if (goal > tbl->max_size/2)
514 goal = tbl->max_size/2;
628 tbl->max_size = IP_VS_LBLCR_TAB_SIZE*16;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/befs/
H A Dbefs_fs_types.h219 fs64 max_size; member in struct:__anon7338
229 befs_off_t max_size; member in struct:__anon7339
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/flex/
H A DFlexLexer.h120 virtual int LexerInput( char* buf, int max_size );
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/parisc/kernel/
H A Dcache.c107 if (btlb_info.max_size==0) {
114 btlb_info.max_size, (int)4096,
115 btlb_info.max_size>>8,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jfs/
H A Dxattr.c73 int max_size; /* largest xattr that fits in current buffer */ member in struct:ea_buffer
479 ea_buf->max_size = 0;
486 ea_buf->max_size = sizeof (ji->i_inline_ea);
498 ea_buf->max_size = sizeof (ji->i_inline_ea);
523 ea_buf->max_size = (size + sb->s_blocksize - 1) &
567 ea_buf->max_size = (min_size + sb->s_blocksize - 1) &
587 ea_buf->max_size = (ea_size + sb->s_blocksize - 1) &
850 if (new_size > ea_buf.max_size) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/prebuilt/WW/www/
H A Dfunc.js97 function checkValid(text_input_field, field_name, Valid_Str, max_size, mustFill)
103 if ((mustFill) && (size != max_size) )
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/mp/
H A Dmp_resize.c519 roff_t reg_size, max_size; local
531 max_size = mp->max_nreg * reg_size;
532 *max_gbytesp = (u_int32_t)(max_size / GIGABYTE);
533 *max_bytesp = (u_int32_t)(max_size % GIGABYTE);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/emu10k1/
H A Dmemory.c104 int max_size = npages; local
117 else if (size > max_size) {
119 max_size = size;
126 if (size >= max_size) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/plugin_winamp2/
H A Din_flac.c320 static void format_title(const char *filename, WCHAR *title, unsigned max_size) argument
326 tagz_format(flac_cfg.title.tag_format_w, get_tag, free_tag, tags, title, max_size);

Completed in 140 milliseconds

1234