Searched defs:val (Results 26 - 50 of 1299) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libsocket/inet/
H A Dinet_network.c54 in_addr_t val; local
62 val = 0; base = 10;
73 val = (val * base) + (c - '0');
78 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
84 if (pp >= parts + 4 || val > 0xff)
86 *pp++ = val;
94 for (val = 0, i = 0; i < n; i++) {
95 val <<
[all...]
/illumos-gate/usr/src/lib/libtnfctl/
H A Dstatus.c139 tnfctl_status_map(int val) argument
143 if (val == ENOENT)
145 else if (val == ESRCH)
147 else if (val == EACCES)
149 else if (val == EBUSY)
/illumos-gate/usr/src/lib/libpp/i386/
H A Dppdebug.h7 long val; member in struct:map
/illumos-gate/usr/src/lib/libpp/sparc/
H A Dppdebug.h7 long val; member in struct:map
/illumos-gate/usr/src/lib/libresolv2/common/inet/
H A Dinet_network.c56 register u_long val, base, n, i; local
62 val = 0; base = 10; digit = 0;
71 val = (val * base) + (c - '0');
77 val = (val << 4) +
87 if (pp >= parts + 4 || val > 0xffU)
90 *pp++ = val, cp++;
95 *pp++ = val;
99 for (val
[all...]
/illumos-gate/usr/src/lib/libbc/libc/inet/
H A Dinet_network.c42 register u_long val, base, n; local
48 val = 0; base = 10;
59 val = (val * base) + (c - '0');
64 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
70 if (pp >= parts + 4 || val > 0xff)
72 *pp++ = val;
80 for (val = 0, i = 0; i < n; i++) {
81 val <<
[all...]
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dlltostr.c65 ulong_t t, val = (ulong_t)value; local
68 *--ptr = (char)('0' + val - 10 * (t = val / 10));
69 } while ((val = t) != 0);
89 ulong_t t, val = (ulong_t)value; local
92 *--ptr = (char)('0' + val - 10 * (t = val / 10));
93 } while ((val = t) != 0);
/illumos-gate/usr/src/lib/libc/sparc/gen/
H A Dsiglongjmp.c45 siglongjmp(sigjmp_buf env, int val) argument
76 if (val)
77 reg[REG_O0] = (greg_t)val;
/illumos-gate/usr/src/lib/libc/sparcv9/gen/
H A Dsiglongjmp.c42 siglongjmp(sigjmp_buf env, int val) argument
75 if (val)
76 reg[REG_O0] = (greg_t)val;
/illumos-gate/usr/src/grub/grub-0.97/lib/
H A Dgetopt.h71 to the value given in the field `val' when the option is found, but
76 option's `flag' field to zero and its `val' field to a nonzero
79 returns the contents of the `val' field. */
92 int val; member in struct:option
/illumos-gate/usr/src/head/
H A Dgetopt.h54 int *flag; /* if not NULL, set *flag to val when option found */
55 int val; /* if flag is not NULL, value to set *flag to. */ member in struct:option
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/pools/
H A DPropertyWalk.java46 * @param val The value representing the current element.
51 public int walk(Element elem, Value val, Object user) argument
/illumos-gate/usr/src/cmd/scadm/sparc/mpxu/common/
H A Dvalid_srecord.c43 unsigned long val = 0; local
46 val = val << 4;
48 val += *s - '0';
50 val += *s - 'a' + 10;
52 val += *s - 'A' + 10;
55 return (val);
/illumos-gate/usr/src/cmd/sendmail/db/hsearch/
H A Dhsearch.c87 DBT key, val; local
94 memset(&val, 0, sizeof(val));
100 val.data = item.data;
101 val.size = strlen(item.data) + 1;
108 dbp->put(dbp, NULL, &key, &val, DB_NOOVERWRITE)) == 0)
112 if ((errno = dbp->get(dbp, NULL, &key, &val, 0)) == 0)
119 if ((errno = dbp->get(dbp, NULL, &key, &val, 0)) != 0) {
124 item.data = (char *)val.data;
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dcf.c52 char *val; local
69 val = strchr(id, '=');
70 if (val == NULL)
71 val = idend = id + strlen(id);
74 idend = val;
75 ++val;
76 while (*val == ' ')
77 ++val;
87 optv[i].opt_val = sm_strdup_x(val);
/illumos-gate/usr/src/psm/promif/ieee1275/sun4/
H A Dprom_idprom.c44 u_char *cp, val = 0; local
69 val ^= *cp++;
71 if (val != 0)
/illumos-gate/usr/src/uts/common/zmod/
H A Dinftrees.h23 of the bit buffer. val is the actual byte to output in the case
29 unsigned short val; /* offset in table or code value */ member in struct:__anon9343
/illumos-gate/usr/src/uts/common/io/ntxn/
H A Dunm_nic_isr.c58 u32 val, linkup, qg_linksup = adapter->ahw.linkup; local
61 adapter->unm_nic_hw_read_wx(adapter, CRB_XG_STATE, &val, 4);
64 linkup = 1 & (val >> adapter->physical_port);
79 uint32_t val, val1, linkupval; local
94 &val, 4);
95 val1 = XG_LINK_STATE_P3(adapter->ahw.pci_func, val);
99 &val, 4);
100 val >>= (adapter->portnum * 8);
101 val1 = val & 0xff;
/illumos-gate/usr/src/lib/krb5/kadm5/srv/
H A Dadb_xdr.c126 osa_free_princ_ent(osa_princ_ent_t val) argument
132 xdr_osa_princ_ent_rec(&xdrs, val);
133 free(val);
/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/hash/
H A Dhsearch.c75 DBT key, val; local
84 val.data = (u_char *)item.data;
85 val.size = strlen(item.data) + 1;
86 status = (dbp->put)(dbp, &key, &val, R_NOOVERWRITE);
91 status = (dbp->get)(dbp, &key, &val, 0);
95 item.data = (char *)val.data;
/illumos-gate/usr/src/lib/libadm/common/
H A Ddevattr.c105 struct attrval *p; /* attr/val records */
106 char *val; /* Extracted value */ local
122 val = (record->alias != NULL) ? record->alias : "";
128 val = (record->cdevice != NULL) ? record->cdevice : "";
134 val = (record->bdevice != NULL) ? record->bdevice : "";
140 val = (record->pathname != NULL) ? record->pathname : "";
147 * Didn't ask for one of the easy ones, search the attr/val
154 val = p->val;
166 if (rtnval = malloc(strlen(val)
[all...]
/illumos-gate/usr/src/lib/libast/amd64/include/ast/
H A Dgetopt.h53 int val; member in struct:option
/illumos-gate/usr/src/lib/libast/common/comp/
H A Dgetopt.h44 int val; member in struct:option
/illumos-gate/usr/src/lib/libast/common/path/
H A Dpathshell.c60 static char* val; local
105 if (!(sh = val))
109 val = sh;
/illumos-gate/usr/src/lib/libast/common/sfio/
H A Dsfungetc.c29 static int _uexcept(Sfio_t* f, int type, Void_t* val, Sfdisc_t* disc) argument
31 static int _uexcept(f,type,val,disc)
34 Void_t* val;
38 NOTUSED(val);

Completed in 125 milliseconds

1234567891011>>