/illumos-gate/usr/src/cmd/tr/ |
H A D | cset.c | 69 wchar_t oval; local 122 oval = ncsn->csn_left->csn_min; 125 ncsn->csn_min = oval; 132 oval = ncsn->csn_right->csn_max; 135 ncsn->csn_max = oval;
|
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/profile/ |
H A D | prof_init.c | 279 static void pack_int32(prof_int32 oval, unsigned char **bufpp, size_t *remainp) argument 281 (*bufpp)[0] = (unsigned char) ((oval >> 24) & 0xff); 282 (*bufpp)[1] = (unsigned char) ((oval >> 16) & 0xff); 283 (*bufpp)[2] = (unsigned char) ((oval >> 8) & 0xff); 284 (*bufpp)[3] = (unsigned char) (oval & 0xff);
|
/illumos-gate/usr/src/lib/libdtrace/common/ |
H A D | dt_handle.c | 413 uint64_t oval = *((uint64_t *)oaddr); local 415 if (nval == oval) 428 (void) snprintf(s, size, "%llu %s%s%s\n", nval - oval, 429 _dt_droptab[i].dtdrt_str, (nval - oval > 1) ? "s" : "", 435 drop.dtdda_drops = nval - oval;
|
/illumos-gate/usr/src/uts/common/syscall/ |
H A D | rctlsys.c | 317 rctl_val_t *oval; local 329 oval = kmem_cache_alloc(rctl_val_cache, KM_SLEEP); 331 rctlsys_rblk_xfrm(oblk, NULL, oval, RBX_FROM_BLK | RBX_VAL); 333 ret = rctl_local_get(hndl, oval, nval, curproc); 336 kmem_cache_free(rctl_val_cache, oval); 398 rctl_val_t *oval; local 449 oval = kmem_cache_alloc(rctl_val_cache, KM_SLEEP); 565 rctlsys_rblk_xfrm(oblk, NULL, oval, RBX_FROM_BLK | RBX_VAL); 567 if (rctl_invalid_value(rde, oval)) { 572 if (oval [all...] |
/illumos-gate/usr/src/uts/common/os/ |
H A D | timer.c | 752 timer_settime(timer_t tid, int flags, itimerspec_t *val, itimerspec_t *oval) argument 759 if (oval != NULL) { 760 if ((error = timer_gettime(tid, oval)) != 0)
|
H A D | rctl.c | 1560 rctl_local_op(rctl_hndl_t hndl, rctl_val_t *oval, rctl_val_t *nval, argument 1589 ret = cbop(hndl, p, &e, rctl, oval, nval); 1598 rctl_t *rctl, rctl_val_t *oval, rctl_val_t *nval) 1600 if (oval == NULL) { 1609 rctl_val_t *tval = rctl_val_list_find(&rctl->rc_values, oval); 1632 rctl_local_get(rctl_hndl_t hndl, rctl_val_t *oval, rctl_val_t *nval, argument 1635 return (rctl_local_op(hndl, oval, nval, rctl_local_get_cb, p)); 1641 rctl_t *rctl, rctl_val_t *oval, rctl_val_t *nval) 1643 if ((oval = rctl_val_list_find(&rctl->rc_values, nval)) == NULL) 1646 if (rctl->rc_cursor == oval) { 1597 rctl_local_get_cb(rctl_hndl_t hndl, struct proc *p, rctl_entity_p_t *e, rctl_t *rctl, rctl_val_t *oval, rctl_val_t *nval) argument 1640 rctl_local_delete_cb(rctl_hndl_t hndl, struct proc *p, rctl_entity_p_t *e, rctl_t *rctl, rctl_val_t *oval, rctl_val_t *nval) argument 1689 rctl_local_insert_cb(rctl_hndl_t hndl, struct proc *p, rctl_entity_p_t *e, rctl_t *rctl, rctl_val_t *oval, rctl_val_t *nval) argument 1979 rctl_local_replace_cb(rctl_hndl_t hndl, struct proc *p, rctl_entity_p_t *e, rctl_t *rctl, rctl_val_t *oval, rctl_val_t *nval) argument 2022 rctl_local_replace(rctl_hndl_t hndl, rctl_val_t *oval, rctl_val_t *nval, struct proc *p) argument [all...] |
H A D | modsysfile.c | 207 int ch, oval, badquote; local 294 oval = 0; 297 oval = (oval << 3) + ch; 302 if (oval > 127) { 307 *cp++ = (char)oval;
|
H A D | zone.c | 3986 rctl_val_t oval; local 3989 error = rctl_local_get(hndl, NULL, &oval, pp); 3992 ASSERT(oval.rcv_privilege != RCPRIV_BASIC); 3993 if (oval.rcv_privilege == RCPRIV_SYSTEM) 3996 error = rctl_local_delete(hndl, &oval, pp);
|
/illumos-gate/usr/src/uts/common/io/ |
H A D | eventfd.c | 92 uint64_t val, oval; local 119 val = oval = state->efd_value; 144 if (oval == EVENTFD_VALMAX) { 157 uint64_t val, oval; local 191 state->efd_value = (oval = state->efd_value) + val; 197 if (oval == 0) { 205 if (oval == 0) {
|
H A D | timerfd.c | 94 uint64_t oval; local 97 oval = state->tfd_fired++; 100 if (oval == 0) { 252 itimerspec_t when, oval; local 335 err = it->it_backend->clk_timer_gettime(it, &oval); 379 if ((err = timerfd_copyout(&oval, st.tfd_settime_ovalue)) != 0)
|
/illumos-gate/usr/src/lib/libsasl/lib/ |
H A D | saslutil.c | 127 unsigned char oval; local 163 oval = (in[0] << 4) & 0x30; 164 if (inlen > 1) oval |= in[1] >> 4; 165 *out++ = basis_64[oval];
|
/illumos-gate/usr/src/lib/cfgadm_plugins/ib/common/ |
H A D | cfga_conf.c | 146 int ch, oval, badquote; local 221 oval = 0; 224 oval = (oval << 3) + ch; 229 if (oval > 127) { 233 *cp++ = (char)oval;
|
/illumos-gate/usr/src/lib/cfgadm_plugins/usb/common/ |
H A D | cfga_configfile.c | 274 int ch, oval, badquote; local 351 oval = 0; 354 oval = (oval << 3) + ch; 359 if (oval > 127) { 363 *cp++ = (char)oval;
|
/illumos-gate/usr/src/uts/common/inet/ip/ |
H A D | tn_ipopt.c | 556 int remlen, olen, oval, delta; local 564 oval = fptr[IPOPT_OPTVAL]; 567 if (oval == IPOPT_EOL) 574 if (oval == IPOPT_NOP) { 578 *tptr++ = oval; 592 if (oval == IPOPT_COMSEC || oval == IPOPT_SECURITY) { 644 int oval, olen; local 662 oval = optr[IPOPT_OPTVAL]; 665 if (oval [all...] |
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | crypt.c | 343 char *oval; local 352 oval = strdup(tmp + 1); /* everything after the "=" */ 353 if (oval == NULL) 355 off = strlen(oval) - 1; 357 free(oval); 360 if (oval[off] == '\n') 361 oval[off] = '\0'; 363 return (oval);
|
/illumos-gate/usr/src/lib/libdevinfo/ |
H A D | devfsmap.c | 193 int ch, oval, badquote; local 281 oval = 0; 284 oval = (oval << 3) + ch; 289 if (oval > 127) { 294 *cp++ = (char)oval;
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/routeadm/ |
H A D | routeadm.c | 2447 oval_t oval, d_oval; local 2455 if ((oval = ra_str2oval(confstr)) == OPT_INVALID) { 2462 if (oval != OPT_DEFAULT) 2463 raopt->opt_enabled = oval == OPT_ENABLED; 2480 if (oval == OPT_DEFAULT) 2493 if (ra_smf_cb(oval == OPT_DEFAULT ? ra_routing_opt_unset_cb :
|
/illumos-gate/usr/src/lib/libscf/common/ |
H A D | lowlevel.c | 7042 uint_t oval; local 7101 oval = (in[0] << 2) & 0x1c; 7103 *out++ = base32[oval]; 7107 oval |= in[1] >> 6; 7108 *out++ = base32[oval]; 7115 oval = (in[1] << 4) & 0x10; 7117 *out++ = base32[oval]; 7121 oval |= in[2] >> 4; 7122 *out++ = base32[oval]; 7127 oval [all...] |
/illumos-gate/usr/src/uts/common/dtrace/ |
H A D | dtrace.c | 553 uint32_t oval, nval; local 556 oval = *counter; 558 if ((nval = oval + 1) == 0) { 575 } while (dtrace_cas32(counter, oval, nval) != oval); 2210 dtrace_aggregate_min(uint64_t *oval, uint64_t nval, uint64_t arg) argument 2212 if ((int64_t)nval < (int64_t)*oval) 2213 *oval = nval; 2218 dtrace_aggregate_max(uint64_t *oval, uint64_t nval, uint64_t arg) argument 2220 if ((int64_t)nval > (int64_t)*oval) 2389 dtrace_aggregate_count(uint64_t *oval, uint64_t nval, uint64_t arg) argument 2396 dtrace_aggregate_sum(uint64_t *oval, uint64_t nval, uint64_t arg) argument [all...] |