Home
last modified time | relevance | path

Searched refs:maxid (Results 1 – 9 of 9) sorted by relevance

/illumos-gate/usr/src/lib/libdhcpagent/common/
H A Ddhcp_stable.c265 uint32_t maxid, minunused; in make_stable_iaid() local
270 maxid = 0; in make_stable_iaid()
283 if (ie.ie_iaid > maxid) in make_stable_iaid()
284 maxid = ie.ie_iaid; in make_stable_iaid()
298 else if (maxid != UINT32_MAX) in make_stable_iaid()
299 return (maxid + 1); in make_stable_iaid()
/illumos-gate/usr/src/cmd/sendmail/db/log/
H A Dlog_register.c41 u_int32_t maxid; local
71 for (maxid = 0, fnp = SH_TAILQ_FIRST(&dblp->lp->fq, __fname);
82 if (maxid <= fnp->id)
83 maxid = fnp->id + 1;
93 fnp->id = maxid;
/illumos-gate/usr/src/cmd/sendmail/db/db/
H A Ddb_dispatch.c190 headp->maxid = 0;
218 if (txnid > hp->maxid)
219 hp->maxid = txnid;
311 printf("Maxid: %lu Generation: %lu\n", (u_long)hp->maxid,
H A Ddb_apprec.c228 ((DB_TXNHEAD *)txninfo)->maxid,
/illumos-gate/usr/src/cmd/sendmail/db/include/
H A Ddb_dispatch.h54 u_int32_t maxid; member
/illumos-gate/usr/src/uts/common/io/overlay/
H A Doverlay.c1224 uint64_t maxid; in overlay_i_create() local
1253 maxid = UINT64_MAX; in overlay_i_create()
1255 maxid = (1ULL << (odd->odd_plugin->ovp_id_size * 8)) - 1ULL; in overlay_i_create()
1256 if (oicp->oic_vnetid > maxid) { in overlay_i_create()
1861 uint64_t maxid, *vidp; in overlay_i_setprop() local
1933 maxid = UINT64_MAX; in overlay_i_setprop()
1935 maxid = (1ULL << (odd->odd_plugin->ovp_id_size * 8)) - in overlay_i_setprop()
1937 if (*vidp >= maxid) { in overlay_i_setprop()
/illumos-gate/usr/src/tools/cscope-fast/
H A Dcgrep.c134 int maxid; /* Number of (also maximum ID of) lit expressions */ member
186 (int)((r)->maxid * sizeof (FID))), \
222 static int toklit, parno, maxid; variable
451 r->ptr = (Expr **)egmalloc(r->maxid * sizeof (Expr *)); in eginit()
453 n = r->maxid * sizeof (FID); in eginit()
473 if ((e->id < 0) || (e->id >= r->maxid)) { in eptr()
908 maxid = 1; in egprep()
912 r->maxid = maxid; in egprep()
927 if (e->lit) e->id = maxid++; in newexpr()
/illumos-gate/usr/src/uts/common/inet/sockmods/
H A Dsocksctp.h91 extern int sosctp_aid_grow(struct sctp_sonode *ss, sctp_assoc_t maxid,
H A Dsocksctpsubr.c97 sosctp_aid_grow(struct sctp_sonode *ss, sctp_assoc_t maxid, int kmflags) in sosctp_aid_grow() argument
103 for (newcnt = 1; newcnt <= maxid; newcnt = (newcnt << 1) | 1) { in sosctp_aid_grow()