Lines Matching refs:serdvalp
709 struct evalue *serdvalp;
732 if ((serdvalp = (struct evalue *)lut_lookup(flt->serdprops,
734 serdvalp = MALLOC(sizeof (*serdvalp));
739 serdvalp)) {
746 FREE(serdvalp);
748 } else if (serdvalp->t == UNDEFINED) {
760 funcname == L_setserdn) && serdvalp->t == STRING) {
761 serdvalp->t = UINT64;
762 serdvalp->v = strtoull((char *)
763 (uintptr_t)serdvalp->v, NULL, 0);
765 if (funcname == L_setserdt && serdvalp->t == UINT64) {
767 serdvalp->v);
771 serdvalp->v);
772 serdvalp->t = STRING;
773 serdvalp->v = (uintptr_t)stable(buf);
777 serdvalp->t == UINT64) {
779 serdvalp->v);
783 serdvalp->v);
784 serdvalp->t = STRING;
785 serdvalp->v = (uintptr_t)stable(buf);
789 if (serdvalp->t == UINT64)
790 out(O_ALTFP|O_VERB2, " (%llu)", serdvalp->v);
793 (char *)(uintptr_t)serdvalp->v);
795 (void *)serdvalp, (lut_cmp)strcmp);