Searched refs:min (Results 401 - 425 of 2156) sorted by relevance

<<11121314151617181920>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/hfsplus_journal/
H A Dbnode.c42 l = min(len, (int)PAGE_CACHE_SIZE - off);
54 l = min(len, (int)PAGE_CACHE_SIZE);
112 l = min(len, (int)PAGE_CACHE_SIZE - off);
119 l = min(len, (int)PAGE_CACHE_SIZE);
142 l = min(len, (int)PAGE_CACHE_SIZE - off);
148 l = min(len, (int)PAGE_CACHE_SIZE);
174 l = min(len, (int)PAGE_CACHE_SIZE - src);
181 l = min(len, (int)PAGE_CACHE_SIZE);
202 l = min(len, l);
264 l = min(le
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/
H A Dv4l2-ctrls.c397 s32 *min, s32 *max, s32 *step, s32 *def, u32 *flags)
423 *min = 0;
430 *min = *max = *step = *def = 0;
464 *min = *max = *step = *def = 0;
469 *min = 0;
950 s32 min, s32 max, u32 step, s32 def,
961 def < min || def > max || max < min ||
989 ctrl->minimum = min;
1021 s32 min local
396 v4l2_ctrl_fill(u32 id, const char **name, enum v4l2_ctrl_type *type, s32 *min, s32 *max, s32 *step, s32 *def, u32 *flags) argument
947 v4l2_ctrl_new(struct v4l2_ctrl_handler *hdl, const struct v4l2_ctrl_ops *ops, u32 id, const char *name, enum v4l2_ctrl_type type, s32 min, s32 max, u32 step, s32 def, u32 flags, const char **qmenu, void *priv) argument
1051 v4l2_ctrl_new_std(struct v4l2_ctrl_handler *hdl, const struct v4l2_ctrl_ops *ops, u32 id, s32 min, s32 max, u32 step, s32 def) argument
1077 s32 min; local
[all...]
H A Dv4l2-common.c177 int v4l2_ctrl_query_fill(struct v4l2_queryctrl *qctrl, s32 min, s32 max, s32 step, s32 def) argument
182 &min, &max, &step, &def, &qctrl->flags);
187 qctrl->minimum = min;
559 /* Clamp x to be between min and max, aligned to a multiple of 2^align. min
561 * value. E.g., min=17,max=31,align=4 is not allowed as there are no multiples
563 static unsigned int clamp_align(unsigned int x, unsigned int min, argument
573 /* Clamp to aligned value of min and max */
574 if (x < min)
575 x = (min
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iproute2/tc/
H A Dm_ipt.c129 int string_to_number_ll(const char *s, unsigned long long min, argument
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);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-core/
H A Dprioq.c271 AvahiPrioQueueNode *min; local
273 if (!(min = n->left)) {
279 if (n->right && q->compare(n->right->data, min->data) < 0)
280 min = n->right;
282 /* min now contains the smaller one of our two children */
284 if (q->compare(n->data, min->data) <= 0)
288 exchange_nodes(q, n, min);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/tcpdump-4.4.0/
H A Dprint-icmp.c107 #define ICMP_ADVLENMIN (8 + sizeof (struct ip) + 8) /* min */
321 u_int msec,sec,min,hrs; local
327 min = sec / 60; sec -= min * 60;
328 hrs = min / 60; min -= hrs * 60;
329 snprintf(buf, sizeof(buf), "%02u:%02u:%02u.%03u",hrs,min,sec,msec);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/avahi-0.6.25/avahi-core/
H A Dprioq.c271 AvahiPrioQueueNode *min; local
273 if (!(min = n->left)) {
279 if (n->right && q->compare(n->right->data, min->data) < 0)
280 min = n->right;
282 /* min now contains the smaller one of our two children */
284 if (q->compare(n->data, min->data) <= 0)
288 exchange_nodes(q, n, min);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/macintosh/
H A Dwindfarm_pm91.c196 pid_param.min = fan_cpu_main->ops->get_min(fan_cpu_main);
202 DBG(" ttarged=%d.%03d, tmax=%d.%03d, min=%d RPM, max=%d RPM\n",
204 pid_param.min, pid_param.max);
316 param.min = fan_hd->ops->get_min(fan_hd);
321 DBG(" itarged=%d.%03d, min=%d RPM, max=%d RPM\n",
322 FIX32TOPRINT(param.itarget), param.min, param.max);
397 param.min = fan_slots->ops->get_min(fan_slots);
402 DBG(" itarged=%d.%03d, min=%d RPM, max=%d RPM\n",
403 FIX32TOPRINT(param.itarget), param.min, param.max);
H A Dwindfarm_pm121.c475 s32 min)
483 new_min = (new_min >> 16) + min;
558 pid_param.min = control->ops->get_min(control);
564 " itarged=%d.%03d, min=%d RPM, max=%d RPM\n",
566 pid_param.min, pid_param.max);
618 st->pid.param.min);
696 pid_param.min = fan_cpu->ops->get_min(fan_cpu);
702 pr_debug(" ttarged=%d.%03d, tmax=%d.%03d, min=%d RPM, max=%d RPM,\n",
704 pid_param.min, pid_param.max);
760 st->pid.param.min);
473 pm121_correct(s32 new_setpoint, unsigned int control_id, s32 min) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wan/
H A Dhdlc_cisco.c231 u32 sec, min, hrs, days; local
233 min = sec / 60; sec -= min * 60;
234 hrs = min / 60; min -= hrs * 60;
238 dev->name, days, hrs, min, sec);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/core/
H A Dcontrol_compat.c73 s32 min; member in struct:snd_ctl_elem_info32::__anon19035::__anon19036
78 u64 min; member in struct:snd_ctl_elem_info32::__anon19035::__anon19037
131 if (put_user(data->value.integer.min, &data32->value.integer.min) ||
359 if (get_user(data->value.integer.min, &data32->value.integer.min) ||
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/pci/oxygen/
H A Dxonar_wm87x6.c444 info->value.integer.min = (ctl->private_value >> 8) & 0xf;
454 u8 min, max, shift; local
467 min = (ctl->private_value >> 8) & 0xf;
475 value = max - (value - min);
485 u8 min, max; local
488 min = (ctl->private_value >> 8) & 0xf;
490 if (value < min || value > max)
533 info->value.integer.min = 0x79 - 60;
647 info->value.integer.min = 0xa5;
830 #define _WM8776_FIELD_CTL(xname, reg, shift, initval, min, ma
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iptables-1.4.12.1/extensions/
H A Dlibxt_statistic.c34 .flags = XTOPT_INVERT, .min = 0, .max = 1,
36 {.name = "every", .id = O_EVERY, .type = XTTYPE_UINT32, .min = 1,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libvorbis-1.2.3/vq/
H A Dbuild.c137 if(sscanf(line,"%ld %ld %d %d",&q.min,&q.delta,
185 c.q_min=q.min;
H A Dlspdata.c43 q->min=_float32_pack(global_mindel);
46 mindel=_float32_unpack(q->min);
H A Dvqgen.c91 float min=-1.f,max=-1.f,mean=0.f,acc=0.f; local
129 if(min==-1 || localmin<min)min=localmin;
139 min,mean/acc,max,unused,dup);
193 q->min=_float32_pack(mindel);
196 mindel=_float32_unpack(q->min);
226 float mindel=_float32_unpack(q->min);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/cxx/
H A Dcxx_seq.cpp86 DBSEQ_METHOD(set_range, (db_seq_t min, db_seq_t max), (seq, min, max), 0)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/pnp/
H A Dresource.c97 resource_size_t min, resource_size_t max,
109 port->min = min;
120 resource_size_t min, resource_size_t max,
132 mem->min = min;
643 if (port->min == start && port->size == size)
648 if (mem->min == start && mem->size == size)
96 pnp_register_port_resource(struct pnp_dev *dev, unsigned int option_flags, resource_size_t min, resource_size_t max, resource_size_t align, resource_size_t size, unsigned char flags) argument
119 pnp_register_mem_resource(struct pnp_dev *dev, unsigned int option_flags, resource_size_t min, resource_size_t max, resource_size_t align, resource_size_t size, unsigned char flags) argument
H A Dsupport.c125 len += scnprintf(buf + len, sizeof(buf) - len, "io min %#llx "
127 (unsigned long long) port->min,
134 len += scnprintf(buf + len, sizeof(buf) - len, "mem min %#llx "
136 (unsigned long long) mem->min,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/isdn/hardware/eicon/
H A Distream.c95 to_write = min(length, DIVA_DFIFO_DATA_SZ);
179 to_read = min(max_length, (int)tmp[1]);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mn10300/kernel/
H A Dfpu.c159 min(sizeof(struct fpu_state_struct),
200 min(sizeof(struct fpu_state_struct),
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/libfc/
H A Dfc_libfc.c114 sg_bytes = min(remaining, sg->length - *offset);
121 sg_bytes = min(sg_bytes,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_cxx/wce_tpcb/
H A DTpcbExample.cpp491 u_int32_t min, max, num; local
493 max = min = BEGID;
497 min += branches;
503 min += accounts;
506 max = min + num - 1;
508 return (randomInt(min, max));
514 memcpy(path, homeDirName, min(max, MAX_PATH));
521 memcpy(path, wHomeDirName, min(max, MAX_PATH)*sizeof(wchar_t));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DSequenceConfig.java223 @param min
228 public void setRange(final long min, final long max) { argument
229 this.rangeMin = min;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/internal/
H A DDbSequence.java87 public void set_range(long min, long max) throws com.sleepycat.db.DatabaseException { db_javaJNI.DbSequence_set_range(swigCPtr, this, min, max); } argument

Completed in 220 milliseconds

<<11121314151617181920>>