Searched refs:max (Results 251 - 275 of 1104) sorted by relevance

<<11121314151617181920>>

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/iptables-1.4.12.1/extensions/
H A Dlibxt_u32.c78 if (ct->value[i].min == ct->value[i].max)
82 ct->value[i].max);
233 ct->value[valind].max =
236 ct->value[valind].max =
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/
H A Dcmdutils.h64 * @param max the maximum valid accepted value
66 double parse_number_or_die(const char *context, const char *numstr, int type, double min, double max);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dfft-test.c147 double max= 0; local
157 if(e>max) max= e;
159 av_log(NULL, AV_LOG_INFO, "max:%f e:%g\n", max, sqrt(error)/n);
H A Dopt.h69 double max; ///< maximum valid value for the option member in struct:AVOption
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/net/ipv4/
H A Dtcp_scalable.c41 return max(tp->snd_cwnd - (tp->snd_cwnd>>TCP_SCALABLE_MD_SCALE), 2U);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/jfs/
H A Djfs_debug.h118 #define HIGHWATERMARK(x,y) ((x) = max((x), (y)))
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/sound/isa/sb/
H A Dsb8_midi.c39 int max = 64; local
52 while (max-- > 0) {
182 int max = 32; local
186 while (max-- > 0) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/busybox-1.x/networking/libiproute/
H A Dlibnetlink.h39 extern int parse_rtattr(struct rtattr *tb[], int max, struct rtattr *rta, int len);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/iptables-1.x/extensions/
H A Dlibip6t_frag.c167 print_ids(const char *name, u_int32_t min, u_int32_t max, argument
172 if (min != 0 || max != 0xFFFFFFFF || invert) {
174 if (min == max)
177 printf("s:%s%u:%u ", inv, min, max);
H A Dlibip6t_mh.c121 "Invalid MH type range (min > max)");
180 static void print_types(u_int8_t min, u_int8_t max, int invert, int numeric) argument
184 if (min != 0 || max != 0xFF || invert) {
185 if (min == max) {
192 print_type(max, numeric);
H A Dlibipt_DNAT.c93 = range.max.tcp.port
107 range.max.tcp.port = htons(maxport);
211 if (r->max.tcp.port != r->min.tcp.port)
212 printf("-%hu", ntohs(r->max.tcp.port));
H A Dlibipt_SNAT.c93 = range.max.tcp.port
107 range.max.tcp.port = htons(maxport);
213 if (r->max.tcp.port != r->min.tcp.port)
214 printf("-%hu", ntohs(r->max.tcp.port));
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/pcmcia/
H A Dcardbus.c214 unsigned int max, pass; local
219 max = bus->secondary;
224 max = pci_scan_bridge(bus, dev, max, pass);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/pnp/
H A Dquirks.c49 port2->max += 0x400;
51 port3->max += 0x800;
100 if(port->min != port->max)
102 port->max += 0x70;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/net/netfilter/
H A Dnf_nat_protocol.h26 /* Is the manipable part of the tuple between min and max incl? */
30 const union nf_conntrack_man_proto *max);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/lock/
H A Dlock_region.c179 u_int32_t extra_locks, extra_objects, i, j, max; local
288 max = region->stat.st_maxlocks / region->part_t_size;
290 max++;
293 for (i = 0; i < max; ++i) {
304 max = region->stat.st_maxobjects / region->part_t_size;
306 max++;
310 for (i = 0; i < max; ++i) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/zlib-1.2.3/examples/
H A Dgun.c206 int max; /* maximum bits per code for this stream */ local
228 max = flags & 0x1f;
229 if (max < 9 || max > 16) {
233 if (max == 9) /* 9 doesn't really mean 9 */
234 max = 10;
263 if (end >= mask && bits < max) {
H A Dgzlog.c270 size_t len, max; local
277 max = len + (len >> 12) + (len >> 14) + 11;
278 out = malloc(max);
306 strm.avail_out = max;
333 len = max - strm.avail_out;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/cpufreq/
H A Dcpufreq_conservative.c362 if (this_dbs_info->requested_freq == policy->max)
365 freq_step = (dbs_tuners_ins.freq_step * policy->max) / 100;
367 /* max freq cannot be less than 100. But who knows.... */
372 if (this_dbs_info->requested_freq > policy->max)
373 this_dbs_info->requested_freq = policy->max;
413 freq_step = (dbs_tuners_ins.freq_step * policy->max) / 100;
415 /* max freq cannot be less than 100. But who knows.... */
540 if (policy->max < this_dbs_info->cur_policy->cur)
543 policy->max, CPUFREQ_RELATION_H);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/examples/
H A Dgun.c206 int max; /* maximum bits per code for this stream */ local
228 max = flags & 0x1f;
229 if (max < 9 || max > 16) {
233 if (max == 9) /* 9 doesn't really mean 9 */
234 max = 10;
263 if (end >= mask && bits < max) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/examples/LDAP/smbldap-tools-0.8.7/doc/
H A Dsmbldap-migrate-unix-accounts89 my($user,$pwd,$lastchg,$min,$max,$warn,$inactive,$expire,$flag) = split(/:/,$shadowUsers{$user});
90 $entry = migrate_shadow_user($entry,$user,$pwd,$lastchg,$min,$max,$warn,$inactive,$expire,$flag);
93 my($user,$pwd,$lastchg,$min,$max,$warn,$inactive,$expire,$flag)=split(/:/,$line);
96 $entry = migrate_shadow_user($entry,$user,$pwd,$lastchg,$min,$max,$warn,$inactive,$expire,$flag);
205 my($entry,$user,$pwd,$lastchg,$min,$max,$warn,$inactive,$expire,$flag) = @_;
217 ($max) and $entry->replace( 'shadowMax' => $max );
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/iproute2/tc/
H A Dm_ipt.c130 unsigned long long max,
141 if (errno != ERANGE && min <= number && (!max || number <= max)) {
149 int string_to_number_l(const char *s, unsigned long min, unsigned long max, argument
155 result = string_to_number_ll(s, min, max, &number);
161 int string_to_number(const char *s, unsigned int min, unsigned int max, argument
167 result = string_to_number_l(s, min, max, &number);
129 string_to_number_ll(const char *s, unsigned long long min, unsigned long long max, unsigned long long *ret) argument
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/sound/isa/wavefront/
H A Dwavefront_midi.c122 int max = 256, mask = 1; local
140 while (max > 0) {
159 max--;
182 while (max > 0) {
212 max--;
404 int max = 128; local
415 while (--max) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/sound/core/
H A Dpcm_lib.c207 snd_printd(KERN_ERR "Unexpected hw_pointer value [1] (stream = %i, delta: -%ld, max jitter = %ld): wrong interrupt acknowledge?\n", substream->stream, (long) delta, runtime->buffer_size / 2);
252 snd_printd(KERN_ERR "Unexpected hw_pointer value [2] (stream = %i, delta: -%ld, max jitter = %ld): wrong interrupt acknowledge?\n", substream->stream, (long) delta, runtime->buffer_size / 2);
377 * The interval status (min, max, integer, etc.) are evaluated.
393 if (i->max > v->max) {
394 i->max = v->max;
397 } else if (i->max == v->max && !i->openmax && v->openmax) {
411 i->max
971 snd_pcm_hw_constraint_minmax(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var, unsigned int min, unsigned int max) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/libvorbis-1.2.3/vq/
H A Dmetrics.c95 float min=-1.f,max=-1.f,mean=0.f,meansq=0.f; local
112 if(max==-1 || localmin>max)max=localmin;
120 fprintf(stderr,"\tmaximum cell spacing (closest side): %g\n",sqrt(max));

Completed in 244 milliseconds

<<11121314151617181920>>