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

/illumos-gate/usr/src/lib/libnisdb/
H A Dldap_ruleval.c104 * Grow 'old' from 'oldCount' to 'newCount' elements, initialize the
110 growRuleValue(int oldCount, int newCount, __nis_rule_value_t *old, argument
116 if (newCount <= 0 || newCount <= oldCount)
119 if (oldCount <= 0) {
120 oldCount = 0;
131 myself, (oldCount+newCount) * sizeof (rv[0]),
132 oldCount, newCount, sizeof (rv[0]));
133 freeRuleValue(old, oldCount);
137 (void) memset(&rv[oldCount], 0, (newCount-oldCount)*sizeo
[all...]

Completed in 56 milliseconds