Home
last modified time | relevance | path

Searched refs:tmpval (Results 1 – 7 of 7) sorted by relevance

/illumos-gate/usr/src/uts/common/sys/
H A Decppvar.h438 uint8_t tmpval; \
440 tmpval |= val; \
446 uint32_t tmpval; \
448 tmpval |= val; \
454 uint8_t tmpval; \
456 tmpval &= val; \
462 uint32_t tmpval; \
464 tmpval &= val; \
470 uint32_t tmpval; \
472 tmpval &= ~(mask); \
[all …]
/illumos-gate/usr/src/uts/sun4u/io/
H A Dtodds1337.c481 uint8_t tmpval; in todds1337_set_power_alarm() local
525 tmpval = i2c_tp->i2c_rbuf[0]; in todds1337_set_power_alarm()
534 i2c_tp->i2c_wbuf[1] = tmpval & ~RTC_CTL_A1IE; in todds1337_set_power_alarm()
582 i2c_tp->i2c_wbuf[1] = tmpval | RTC_CTL_A1IE; in todds1337_set_power_alarm()
605 uint8_t tmpval; in todds1337_clear_power_alarm() local
647 tmpval = i2c_tp->i2c_rbuf[0]; in todds1337_clear_power_alarm()
656 i2c_tp->i2c_wbuf[1] = tmpval & ~RTC_CTL_A1IE; in todds1337_clear_power_alarm()
687 tmpval = i2c_tp->i2c_rbuf[0]; in todds1337_clear_power_alarm()
696 i2c_tp->i2c_wbuf[1] = tmpval & ~RTC_STATUS_A1F; in todds1337_clear_power_alarm()
/illumos-gate/usr/src/lib/libnisdb/
H A Dldap_nisdbquery.c727 __nis_value_t *tmpval, *old; in createNisPlusEntry() local
729 tmpval = getMappingItem(&litem[i], in createNisPlusEntry()
753 if (tmpval != 0 && in createNisPlusEntry()
754 tmpval->numVals == 1) in createNisPlusEntry()
755 iname = tmpval->val[0].value; in createNisPlusEntry()
762 freeValue(tmpval, 1); in createNisPlusEntry()
767 lval = concatenateValues(old, tmpval); in createNisPlusEntry()
768 freeValue(tmpval, 1); in createNisPlusEntry()
H A Dldap_ruleval.c674 __nis_value_t *tmpval, *old; in addLdapRuleValue() local
676 tmpval = getMappingItem(&litem[i], lnative, 0, 0, NULL); in addLdapRuleValue()
700 if (tmpval != 0 && in addLdapRuleValue()
701 tmpval->numVals == 1) in addLdapRuleValue()
702 iname = tmpval->val[0].value; in addLdapRuleValue()
709 freeValue(tmpval, 1); in addLdapRuleValue()
714 lval = concatenateValues(old, tmpval); in addLdapRuleValue()
715 freeValue(tmpval, 1); in addLdapRuleValue()
/illumos-gate/usr/src/cmd/prtfru/
H A Dprtfru.c437 unsigned int newval = (unsigned int)*val, tmpval = 0; in convertbcdtobinary() local
439 tmpval = (tmpval << 4) | (newval & 0xF); in convertbcdtobinary()
442 while (tmpval > 0) { in convertbcdtobinary()
443 newval = (newval * 10) + (tmpval & 0xF); in convertbcdtobinary()
444 tmpval >>= 4; in convertbcdtobinary()
/illumos-gate/usr/src/cmd/sgs/yacc/common/
H A Dy2.c995 int tmpval; in defin() local
997 tmpval = s[i] - L'0'; in defin()
999 tmpval = s[i] - L'a' + 10; in defin()
1001 tmpval = s[i] - L'A' + 10; in defin()
1002 val = 16 * val + tmpval; in defin()
/illumos-gate/usr/src/uts/sun4u/javelin/io/
H A Denvctrltwo.c1511 uint8_t val, tmpval; in envctrl_led_blink() local
1550 tmpval = ~val; in envctrl_led_blink()
1551 if (tmpval & ENVCTRL_UE250_FSP_PS_ERR) { in envctrl_led_blink()
1556 tmpval &= ~(ENVCTRL_UE250_FSP_PS_ERR); in envctrl_led_blink()
1559 val = ~tmpval; in envctrl_led_blink()