Searched defs:newcount (Results 1 - 7 of 7) sorted by relevance

/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Derrmap.h96 mecherrmap__pairarray_grow(mecherrmap__pairarray *arr, unsigned long newcount)
102 if (newcount > LONG_MAX)
104 if (newcount < arr->allocated)
106 if (newcount > mecherrmap__pairarray_max_size(arr))
109 newsize = sizeof(*arr->elts) * newcount;
115 arr->allocated = newcount;
94 mecherrmap__pairarray_grow(mecherrmap__pairarray *arr, unsigned long newcount) argument
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/support/
H A Dplugins.c321 int newcount = *count + 1; local
323 newharray = realloc (*harray, ((newcount + 1) * sizeof (**harray))); /* +1 for NULL */
327 newharray[newcount - 1] = p;
328 newharray[newcount] = NULL;
329 *count = newcount;
/illumos-gate/usr/src/uts/common/io/
H A Drlmod.c846 ssize_t count, newcount = 0; local
882 count = newcount + tmp - mp->b_rptr;
903 * reset newcount = 0.
906 newcount = 0;
963 * bump newcount to include size of this particular block.
965 newcount += (mp->b_wptr - mp->b_rptr);
/illumos-gate/usr/src/lib/libiscsit/common/
H A Dlibiscsit.c332 uint32_t newcount; local
426 ISNS_DEFAULT_SERVER_PORT, &newisnslist, &newcount);
429 newcount = 0;
442 cfg->config_isns_svr_count = newcount;
449 if (newcount > 0) {
453 newarray = malloc(sizeof (char *) * newcount);
465 newcount);
467 for (i = 0; i < newcount; i++) {
/illumos-gate/usr/src/cmd/zoneadmd/
H A Dvplat.c675 uint_t newcount = 0; local
734 newcount++;
738 if (newcount == 0)
740 if (newcount >= oldcount) {
747 oldcount = newcount;
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dspd.c755 int newcount = ipss->ipsec_nalgs[at]; local
759 for (i = 0; i <= newcount; i++) {
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DmDNS.c10565 mDNSlocal int BetterMatchForName(const domainname *name, int namecount, const domainname *newname, int newcount, argument
10570 if (namecount < newcount || newcount < bestcount) return -1;
10582 // Note: newcount can either be equal or greater than bestcount beause of the
10585 if (SameDomainName(SkipLeadingLabels(name, namecount - newcount), newname))
10586 return bestcount == newcount ? 0 : 1;

Completed in 116 milliseconds