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

/illumos-gate/usr/src/cmd/cmd-inet/sbin/dhcpinfo/
H A Ddhcpinfo.c68 uint8_t *valptr; local
209 valptr = (uint8_t *)opt + sizeof (d6o);
215 valptr = opt->value;
227 valuep += sprintf(valuep, "0x%02X ", valptr[i]);
234 value = inittab_decode(entry, valptr, opt_len, B_TRUE);
/illumos-gate/usr/src/lib/libtsnet/common/
H A Dmisc.c184 const char *valptr, *nxtopt; local
201 valptr = parse_entry(attrbuf, sizeof (attrbuf), options, ",=");
216 if ((key == SAK_CIPSO && *valptr == '=') ||
217 (key != SAK_CIPSO && *valptr != '=')) {
218 *errstrp = (char *)valptr;
223 nxtopt = valptr;
224 if (*valptr == '=') {
225 valptr++;
227 valptr, ",=");
248 *errstrp = (char *)valptr;
[all...]
/illumos-gate/usr/src/ucblib/libucb/port/stdio/
H A Ddoprnt.c126 _lowdigit(long *valptr) argument
128 /* pointed to by valptr, and returns this digit after dividing */
129 /* *valptr by ten. This function is called ONLY to compute the */
132 int lowbit = (int)(*valptr & 1);
133 long value = (*valptr >> 1) & ~HIBITL;
135 *valptr = value / 5;
/illumos-gate/usr/src/lib/libc/port/print/
H A Ddoprnt.c237 _lowdigit(ssize_t *valptr) argument
240 /* pointed to by valptr, and returns this digit after dividing */
241 /* *valptr by ten. This function is called ONLY to compute the */
244 ssize_t lowbit = *valptr & 1;
245 long value = (*valptr >> 1) & ~HIBITL;
247 *valptr = value / 5;
253 _lowlldigit(long long *valptr) argument
255 ssize_t lowbit = *valptr & 1;
256 long long value = (*valptr >> 1) & ~HIBITLL;
257 *valptr
[all...]
/illumos-gate/usr/src/cmd/ptools/pmap/
H A Dpmap.c1493 uint_t *valptr = validity; local
1529 for (j = 0; j < i; j++, pdp++, valptr++, outptr += 2) {
1531 if ((*valptr & 1) == 0) {
1536 if ((*valptr & 2) != 0) {
1542 if ((*valptr & 4) != 0) {
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ifconfig/
H A Difconfig.c3156 char *valptr[1]; local
3196 valptr[0] = propval;
3198 (char **)valptr, &valcnt) == DLADM_STATUS_OK) {
3204 "encaplimit", (char **)valptr, &valcnt) == DLADM_STATUS_OK) {
/illumos-gate/usr/src/cmd/zonecfg/
H A Dzonecfg.c1845 struct zone_rctlvaltab *valptr; local
2051 for (valptr = rctltab.zone_rctl_valptr; valptr != NULL;
2052 valptr = valptr->zone_rctlval_next) {
2055 pt_to_str(PT_PRIV), valptr->zone_rctlval_priv,
2056 pt_to_str(PT_LIMIT), valptr->zone_rctlval_limit,
2057 pt_to_str(PT_ACTION), valptr->zone_rctlval_action);
5305 struct zone_rctlvaltab *valptr; local
5309 for (valptr
[all...]
/illumos-gate/usr/src/lib/libzonecfg/common/
H A Dlibzonecfg.c3417 struct zone_rctlvaltab *valptr; local
3436 valptr = (struct zone_rctlvaltab *)malloc(
3438 if (valptr == NULL)
3441 valptr->zone_rctlval_priv,
3442 sizeof (valptr->zone_rctlval_priv)) !=
3446 valptr->zone_rctlval_limit,
3447 sizeof (valptr->zone_rctlval_limit)) !=
3451 valptr->zone_rctlval_action,
3452 sizeof (valptr->zone_rctlval_action)) !=
3455 if (zonecfg_add_rctl_value(tabptr, valptr) !
3469 struct zone_rctlvaltab *valptr; local
3955 struct zone_rctlvaltab *valptr; local
4980 struct zone_rctlvaltab *valptr; local
[all...]

Completed in 105 milliseconds