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

/illumos-gate/usr/src/lib/libfru/libgenutil/
H A DStr.cc190 Str::replaceAll(char c, char newc) argument
194 str_[i] = newc;
/illumos-gate/usr/src/lib/libcmdutils/common/
H A Dcustr.c132 custr_appendc(custr_t *cus, char newc) argument
134 return (custr_append_printf(cus, "%c", newc));
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/
H A Deval.c1224 * in *newc where all the non-deferred things have been filled in.
1228 * return of false: constraint can never be true, *newc will be NULL.
1230 * return of true with *newc unchanged: constraint will always be true.
1232 * return of true with *newc changed: use new constraint in *newc.
1236 * *newc can either be NULL on entry, or if can contain constraints from
1238 * tree constraint from several potential constraints). if *newc already
1240 * a T_AND node at the top of *newc.
1244 struct node **newc, struct config *croot)
1258 if (*newc
1243 eval_potential(struct node *np, struct lut *ex, struct node *events[], struct node **newc, struct config *croot) argument
[all...]
H A Ditree.c1891 struct node *newc = NULL; local
1922 if (eval_potential(fromev->u.event.eexprlist, ex, events, &newc,
1943 if (eval_potential(toev->u.event.eexprlist, ex, events, &newc,
1945 if (newc != NULL)
1946 tree_free(newc);
1951 if (newc != NULL) {
1953 (void) itree_add_constraint(ap, iexpr(newc));
2092 struct constraintlist *newc; local
2099 newc = alloc_xmalloc(sizeof (struct constraintlist));
2100 newc
[all...]
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dvdev.c286 int newc; local
290 for (int c = newc = 0; c < oldc; c++)
292 newc++;
294 newchild = kmem_alloc(newc * sizeof (vdev_t *), KM_SLEEP);
296 for (int c = newc = 0; c < oldc; c++) {
298 newchild[newc] = cvd;
299 cvd->vdev_id = newc++;
305 pvd->vdev_children = newc;
855 uint64_t newc = vd->vdev_asize >> vd->vdev_ms_shift; local
878 ASSERT(oldc <= newc);
[all...]

Completed in 63 milliseconds