| /onnv/onnv-gate/usr/src/lib/libc/port/gen/ |
| getwd.c | 42 long val; local 45 if ((val = pathconf(".", _PC_PATH_MAX)) == -1) 46 val = MAXPATHLEN + 1; 48 if ((c = getcwd(pathname, val)) == NULL) {
|
| lltostr.c | 65 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);
|
| /onnv/onnv-gate/usr/src/lib/libcurses/screen/ |
| mbstowcs.c | 40 int i, val; local 43 if ((val = _curs_mbtowc(pwcs++, s, MB_CUR_MAX)) == -1) 44 return (val); 45 if (val == 0) 47 s += val;
|
| wcstombs.c | 43 int val; local 53 if ((val = _curs_wctomb(temp, *pwcs++)) == -1) 54 return (val); 55 if ((total += val) > n) { 56 total -= val; 59 for (i = 0; i < val; i++)
|
| /onnv/onnv-gate/usr/src/lib/libsocket/socket/ |
| sockatmark.c | 41 int val; local 43 if (ioctl(sock, SIOCATMARK, &val) == -1) 45 return (val);
|
| /onnv/onnv-gate/usr/src/ucblib/libucb/port/gen/ |
| getwd.c | 42 long val; local 44 if ((val = pathconf(".", _PC_PATH_MAX)) == -1L) 45 val = MAXPATHLEN + 1; 47 if ((c = getcwd(pathname, val)) == NULL) {
|
| /onnv/onnv-gate/usr/src/lib/libast/common/path/ |
| pathbin.c | 37 static char* val; local 39 if ((!(bin = getenv("PATH")) || !*bin) && !(bin = val)) 43 val = bin;
|
| /onnv/onnv-gate/usr/src/uts/sparc/sys/ |
| machtypes.h | 51 typedef struct _label_t { long val[2]; } label_t; member in struct:_label_t
|
| /onnv/onnv-gate/usr/src/cmd/ipf/lib/common/ |
| addipopt.c | 20 u_short val; local 49 val = atoi(class); 50 bcopy((char *)&val, op, 2);
|
| /onnv/onnv-gate/usr/src/cmd/lp/filter/postscript/postmd/ |
| postmd.h | 98 double val; /* only valid in kind is ENDPOINT */ member in struct:__anon734
|
| /onnv/onnv-gate/usr/src/cmd/lp/filter/postscript/postplot/ |
| postplot.h | 51 char *val; member in struct:__anon735 79 char *val; /* corresponding PostScript name */ member in struct:__anon736
|
| /onnv/onnv-gate/usr/src/cmd/lp/filter/postscript/postprint/ |
| postprint.h | 50 char *val; /* corresponding PostScript name */ member in struct:__anon737
|
| /onnv/onnv-gate/usr/src/cmd/scadm/sparc/mpxu/common/ |
| valid_srecord.c | 43 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);
|
| /onnv/onnv-gate/usr/src/common/net/wanboot/crypt/ |
| cmn_test.c | 41 int val; local 45 val = 0; 56 val *= 16; 57 val += c; 59 return (val);
|
| /onnv/onnv-gate/usr/src/head/ |
| mp.h | 46 short *val; member in struct:mint
|
| /onnv/onnv-gate/usr/src/lib/libadm/common/ |
| devattr.c | 105 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)+1) [all...] |
| /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/ |
| mbtowc.c | 119 int val; local 128 val = mbtowc((wchar_t *)0, s, n); 130 return (val);
|
| strtol.c | 39 register long val; local 73 for (val = -DIGIT(c); isalnum(c = *++str) && (xx = DIGIT(c)) < base; ) 75 val = base * val - xx; 78 return (neg ? val : -val);
|
| /onnv/onnv-gate/usr/src/lib/libbc/libc/inet/ |
| inet_addr.c | 45 register u_long val, base, n; local 55 val = 0; base = 10; 66 val = (val * base) + (c - '0'); 71 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A')); 86 *pp++ = val, cp++; 94 *pp++ = val; 103 val = parts[0]; 107 val = (parts[0] << 24) | (parts[1] & 0xffffff) [all...] |
| /onnv/onnv-gate/usr/src/psm/promif/ieee1275/sun4/ |
| prom_idprom.c | 44 u_char *cp, val = 0; local 69 val ^= *cp++; 71 if (val != 0)
|
| /onnv/onnv-gate/usr/src/uts/i86pc/os/ |
| pci_mech1.c | 50 uint8_t val; local 58 val = inb(PCI_CONFDATA | (reg & 0x3)); 60 return (val); 66 uint16_t val; local 75 val = inw(PCI_CONFDATA | (reg & 0x2)); 77 return (val); 83 uint32_t val; local 92 val = inl(PCI_CONFDATA); 94 return (val); 98 pci_mech1_putb(int bus, int device, int function, int reg, uint8_t val) [all...] |
| /onnv/onnv-gate/usr/src/uts/common/smbsrv/ |
| cp_unicode.h | 36 smb_wchar_t val; member in struct:unicode_cp [all...] |
| /onnv/onnv-gate/usr/src/cmd/scsi/sestopo/common/ |
| sestopo.c | 56 uint64_t val; local 67 (void) nvlist_lookup_uint64(props, SES_PROP_ELEMENT_TYPE, &val);
|
| /onnv/onnv-gate/usr/src/cmd/sendmail/db/hsearch/ |
| hsearch.c | 87 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;
|
| /onnv/onnv-gate/usr/src/cmd/sendmail/libsm/ |
| cf.c | 52 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);
|