Searched refs:max (Results 51 - 75 of 603) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/ucblib/libcurses/
H A Doverlay.c28 #define max(a, b) ((a) > (b) ? (a) : (b)) macro
44 starty = max(win1->_begy, win2->_begy);
45 startx = max(win1->_begx, win2->_begx);
H A Doverwrite.c29 #define max(a, b) ((a) > (b) ? (a) : (b)) macro
43 starty = max(win1->_begy, win2->_begy);
44 startx = max(win1->_begx, win2->_begx);
H A Dtoucholap.c27 #define max(a, b) ((a) > (b) ? (a) : (b)) macro
41 starty = max(win1->_begy, win2->_begy);
42 startx = max(win1->_begx, win2->_begx);
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/
H A Ddaisyforms.c382 int max = 0; local
401 (++pps->nrequests >= max))
402 max = pps->nrequests;
407 if (++pps->nrequests >= max)
408 max = pps->nrequests;
409 return (max);
417 int max = 0; local
439 if (++pps->nrequests >= max)
440 max = pps->nrequests;
448 if (++pps->nrequests >= max)
[all...]
/illumos-gate/usr/src/lib/fm/topo/modules/sun4v/chip/
H A Dchip_sun4v.c238 int max = -1; local
250 * find the min/max id of cpus per this cmp and create a cpu range
257 if ((max < 0) || (mcmp->cpumap_pid > max))
258 max = mcmp->cpumap_pid;
260 if (min < 0 || max < 0) {
261 topo_mod_dprintf(mod, "Invalid cpu range(%d,%d)\n", min, max);
264 if (topo_node_range_create(mod, rnode, name, 0, max+1) < 0) {
266 max, topo_mod_errmsg(mod));
344 topo_instance_t min, topo_instance_t max, md_info_
343 chip_create(topo_mod_t *mod, tnode_t *rnode, const char *name, topo_instance_t min, topo_instance_t max, md_info_t *chip) argument
413 chip_enum(topo_mod_t *mod, tnode_t *rnode, const char *name, topo_instance_t min, topo_instance_t max, void *arg, void *notused) argument
[all...]
/illumos-gate/usr/src/lib/libfruutils/
H A Dfru_tag.c80 static fru_tag_t max = { 0xFFFFFFFFFFFFFFFFULL }; local
87 if ((dense > max.a.dense) || (pl_len > max.a.pl_len)) {
96 if ((dense > max.b.dense) || (pl_len > max.b.pl_len)) {
105 if ((dense > max.c.dense) || (pl_len > max.c.pl_len)) {
114 if ((dense > max.d.dense) || (pl_len > max.d.pl_len)) {
123 if ((dense > max
[all...]
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dkeypad.c144 int max, len; local
149 for (max = -1, p = __m_keyindex; **p != -1; ++p) {
153 if (max < len)
154 max = len;
157 return max;
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dkeypad.c145 int max, len; local
150 for (max = -1, p = __m_keyindex; **p != -1; ++p) {
154 if (max < len)
155 max = len;
158 return (max);
/illumos-gate/usr/src/lib/libm/i386/src/
H A Dexpm1f.s77 fstp %st(0) / 2**(z-[z])-1,max([z],-100)
78 fld1 / 1,2**(z-[z])-1,max([z],-100)
79 faddp %st,%st(1) / 2**(z-[z]) ,max([z],-100)
80 fscale / exp(x) ,max([z],-100)
81 fld1 / 1,exp(x) ,max([z],-100)
82 fsubrp %st,%st(1) / exp(x)-1 ,max([z],-100)
109 fstp %st(0) / max([z],-100)
110 fld1 / 1,max([z],-100)
111 fscale / exp(x) ,max([z],-100)
112 fld1 / 1,exp(x) ,max([
[all...]
H A Dexpm1.s75 fstp %st(0) / 2**(z-[z])-1,max([z],-100)
76 fld1 / 1,2**(z-[z])-1,max([z],-100)
77 faddp %st,%st(1) / 2**(z-[z]) ,max([z],-100)
78 fscale / exp(x) ,max([z],-100)
79 fld1 / 1,exp(x) ,max([z],-100)
80 fxch / exp(x),1 ,max([z],-100)
81 fsubp %st,%st(1) / exp(x)-1 ,max([z],-100)
/illumos-gate/usr/src/uts/common/zmod/
H A Dinftrees.c44 unsigned min, max; /* minimum and maximum code lengths */ local
116 for (max = MAXBITS; max >= 1; max--)
117 if (count[max] != 0) break;
118 if (root > max) root = max;
119 if (max == 0) { /* no symbols to code at all */
139 if (left > 0 && (type == CODES || max != 1))
178 all codes of length max,
[all...]
/illumos-gate/usr/src/cmd/krb5/kadmin/kclient/
H A Dkconf.c38 int max; member in struct:profile_string_list
51 list->max = 10;
52 list->list = malloc(list->max * sizeof (char *));
75 list->num = list->max = 0;
88 if (list->num + 1 >= list->max) {
89 newmax = list->max + 10;
93 list->max = newmax;
/illumos-gate/usr/src/uts/common/io/1394/targets/av1394/
H A Dav1394_queue.c44 av1394_initq(av1394_queue_t *q, ddi_iblock_cookie_t ibc, int max) argument
53 q->q_max = max;
66 av1394_setmaxq(av1394_queue_t *q, int max) argument
69 q->q_max = max;
76 int max; local
79 max = q->q_max;
81 return (max);
/illumos-gate/usr/src/boot/sys/boot/fdt/dts/arm/
H A Darmada-388-gp.dts75 spi-max-frequency = <50000000>;
245 regulator-max-microvolt = <5000000>;
255 regulator-max-microvolt = <5000000>;
265 regulator-max-microvolt = <5000000>;
275 regulator-max-microvolt = <5000000>;
293 regulator-max-microvolt = <5000000>;
302 regulator-max-microvolt = <12000000>;
311 regulator-max-microvolt = <12000000>;
321 regulator-max-microvolt = <5000000>;
330 regulator-max
[all...]
/illumos-gate/usr/src/uts/common/io/ixgbe/core/
H A Dixgbe_dcb.c48 s32 ixgbe_dcb_calculate_tc_credits(u8 *bw, u16 *refill, u16 *max, argument
73 max[i] = bw[i] ? (bw[i]*IXGBE_DCB_MAX_CREDIT)/100 : min_credit;
128 * larger than the max frame size so here we find the smallest
130 * greater than the max frame size.
228 void ixgbe_dcb_unpack_max_cee(struct ixgbe_dcb_config *cfg, u16 *max) argument
234 max[tc] = tc_config[tc].desc_credits_max;
459 u16 max[IXGBE_DCB_MAX_TRAFFIC_CLASS] = { 0 }; local
462 ixgbe_dcb_unpack_max_cee(dcb_config, max);
469 ret = ixgbe_dcb_config_rx_arbiter_82598(hw, refill, max, tsa);
476 ret = ixgbe_dcb_config_rx_arbiter_82599(hw, refill, max, bwgi
500 u16 max[IXGBE_DCB_MAX_TRAFFIC_CLASS]; local
542 u16 max[IXGBE_DCB_MAX_TRAFFIC_CLASS]; local
650 u16 max[IXGBE_DCB_MAX_TRAFFIC_CLASS]; local
715 ixgbe_dcb_hw_config(struct ixgbe_hw *hw, u16 *refill, u16 *max, u8 *bwg_id, u8 *tsa, u8 *map) argument
[all...]
H A Dixgbe_dcb_82598.c119 u16 *max, u8 *tsa)
142 credit_max = max[i];
174 u16 *refill, u16 *max, u8 *bwg_id,
193 max_credits = max[i];
218 u16 *refill, u16 *max, u8 *bwg_id,
235 reg |= (u32)(max[i]) << IXGBE_TDPT2TCCR_MCL_SHIFT;
347 u16 *refill, u16 *max, u8 *bwg_id,
352 ixgbe_dcb_config_rx_arbiter_82598(hw, refill, max, tsa);
353 ixgbe_dcb_config_tx_desc_arbiter_82598(hw, refill, max, bwg_id,
355 ixgbe_dcb_config_tx_data_arbiter_82598(hw, refill, max, bwg_i
118 ixgbe_dcb_config_rx_arbiter_82598(struct ixgbe_hw *hw, u16 *refill, u16 *max, u8 *tsa) argument
173 ixgbe_dcb_config_tx_desc_arbiter_82598(struct ixgbe_hw *hw, u16 *refill, u16 *max, u8 *bwg_id, u8 *tsa) argument
217 ixgbe_dcb_config_tx_data_arbiter_82598(struct ixgbe_hw *hw, u16 *refill, u16 *max, u8 *bwg_id, u8 *tsa) argument
346 ixgbe_dcb_hw_config_82598(struct ixgbe_hw *hw, int link_speed, u16 *refill, u16 *max, u8 *bwg_id, u8 *tsa) argument
[all...]
/illumos-gate/usr/src/cmd/zonecfg/
H A Dzonecfg_lex.l280 <TSTATE>max-lwps { return MAXLWPS; }
281 <CSTATE>max-lwps { return MAXLWPS; }
283 <TSTATE>max-processes { return MAXPROCS; }
284 <CSTATE>max-processes { return MAXPROCS; }
286 <TSTATE>max-shm-memory { return MAXSHMMEM; }
287 <CSTATE>max-shm-memory { return MAXSHMMEM; }
289 <TSTATE>max-shm-ids { return MAXSHMIDS; }
290 <CSTATE>max-shm-ids { return MAXSHMIDS; }
292 <TSTATE>max-msg-ids { return MAXMSGIDS; }
293 <CSTATE>max
[all...]
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DUARequester.java121 int max = config.getMaximumResults();
132 addUnique(serviceTypes, ret, max);
177 int max = config.getMaximumResults();
203 addUnique(serviceURLs, ret, max);
254 int max = config.getMaximumResults();
299 if (ret.size() > max) {
300 ret.setSize(max);
358 int max = config.getMaximumResults();
361 for (i = 0; i < n && ret.size() < max; i++) {
396 if (ret.size() >= max) {
575 addUnique(Vector incoming, Vector returns, int max) argument
[all...]
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dtempnam.c45 #define max(A, B) (((A) < (B))?(B):(A)) macro
69 if ((p = malloc(max(max(x, y), z)+16)) == NULL)
/illumos-gate/usr/src/cmd/svr4pkg/pkgremove/
H A Dspecial.c140 * int i = 0, j, max;
142 * if (get_special_contents(NULL, &ppcSC, &max) != 0) exit(1);
156 search_special_contents(char **ppcSC, const char *pcpath, int *piX, int max) argument
159 if (ppcSC == NULL || *piX == max)
162 while (*piX < max) {
314 * max The number of entries allocated.
321 free_special_contents(char ***pppcSC, int max) argument
329 for (i = 0; ppc != NULL && i < max; i++)
372 * max The number of special contents rules.
383 char **ppcSC, int max, in
382 generate_special_contents_rules(int ient, struct cfent **ppcfent, char **ppcSC, int max, int **ppiIndex) argument
511 int max; /* Max number of special contents entries. */ local
[all...]
/illumos-gate/usr/src/uts/common/sys/
H A Dddi.h56 * define min() and max() as macros so that drivers will not pick up the
57 * min() and max() kernel functions since they do signed comparison only.
64 #ifdef max
65 #undef max macro
66 #endif /* max */
67 #define max(a, b) ((a) < (b) ? (b) : (a)) macro
/illumos-gate/usr/src/cmd/eqn/
H A Ddiacrit.c32 printf(".nr 10 %du\n", max(eht[p1]-ebase[p1]-VERT(2), 0));
38 printf(".nr 10 %du\n", VERT(max(eht[p1]-ebase[p1]-EM(1, ps), 0)));
51 c, max(effps-3, 6));
60 c, max(effps-3, 6));
H A Dshift.c50 ebase[yyval] = b1 + max(0, h2-b1-d1);
51 eht[yyval] = h1 + max(0, h2-b1-d1);
75 eht[yyval] = h1 + max(0, h2-VERT((6*(h1-b1))/10));
81 eht[yyval] = h1 + max(0, h2 - VERT(1));
151 eht[yyval] = h1 + max(0, h3-VERT((6*(h1-b1))/10)) + max(0, h2-b1-d1);
153 eht[yyval] = h1 + max(0, h3-VERT(1)) + max(0, h2-b1-d1);
155 ebase[yyval] = b1+max(0, h2-b1-d1);
/illumos-gate/usr/src/cmd/tbl/
H A Dts.c65 max(int a, int b) function
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/aggs/
H A Dtst.multiaggs3.d53 @e = max(i);

Completed in 324 milliseconds

1234567891011>>