/illumos-gate/usr/src/common/util/ |
H A D | strtol.c | 63 const unsigned char *ustr = (const unsigned char *)str; local 66 *ptr = (char *)ustr; /* in case no number is formed */ 76 if (!isalnum(c = *ustr)) { 78 c = *++ustr; 84 c = *++ustr; 90 else if (ustr[1] == 'x' || ustr[1] == 'X') 107 if (base == 16 && c == '0' && (ustr[1] == 'x' || ustr[1] == 'X') && 108 isxdigit(ustr[ [all...] |
H A D | strtoll.c | 59 const unsigned char *ustr = (const unsigned char *)str; local 62 *ptr = (char *)ustr; /* in case no number is formed */ 72 if (!isalnum(c = *ustr)) { 74 c = *++ustr; 80 c = *++ustr; 86 else if (ustr[1] == 'x' || ustr[1] == 'X') 102 if (base == 16 && c == '0' && (ustr[1] == 'x' || ustr[1] == 'X') && 103 isxdigit(ustr[ [all...] |
H A D | strtoul.c | 58 const unsigned char *ustr = (const unsigned char *)str; local 61 *ptr = (char *)ustr; /* in case no number is formed */ 71 if (!isalnum(c = *ustr)) { 73 c = *++ustr; 79 c = *++ustr; 85 else if (ustr[1] == 'x' || ustr[1] == 'X') 101 if (base == 16 && c == '0' && (ustr[1] == 'x' || ustr[1] == 'X') && 102 isxdigit(ustr[ [all...] |
H A D | strtoull.c | 58 const unsigned char *ustr = (const unsigned char *)str; local 61 *ptr = (char *)ustr; /* in case no number is formed */ 71 if (!isalnum(c = *ustr)) { 73 c = *++ustr; 79 c = *++ustr; 85 else if (ustr[1] == 'x' || ustr[1] == 'X') 101 if (base == 16 && c == '0' && (ustr[1] == 'x' || ustr[1] == 'X') && 102 isxdigit(ustr[ [all...] |
/illumos-gate/usr/src/common/net/wanboot/ |
H A D | auxutil.c | 149 utf82ascstr(ASN1_UTF8STRING *ustr) argument 157 if (ustr == NULL || ustr->type != V_ASN1_UTF8STRING) { 166 ret = ASN1_mbstring_copy(&astr, ustr->data, ustr->length, mbflag, 331 ASN1_UTF8STRING *ustr = NULL; local 347 ustr = ASN1_UTF8STRING_new(); 348 if (ustr == NULL) { 354 ASN1_UTF8STRING_free(ustr); 359 if (ASN1_STRING_set(ustr, fnam [all...] |
/illumos-gate/usr/src/uts/common/io/ |
H A D | cpuid_drv.c | 153 void *ustr; local 163 if ((ustr = STRUCT_FGETP(h, cgh_archname)) != NULL && 164 copyinstr(ustr, areq, sizeof (areq), NULL) != 0)
|
/illumos-gate/usr/src/uts/common/io/usb/usba/ |
H A D | usba_devdb.c | 328 char *ustr, *hstr; local 358 ustr = strrchr(p2, '/'); 361 MAX(_PTRDIFF(ustr, p2), 372 ustr = p2 + strlen(p2) -1; 374 if (*hstr < *ustr) { 377 } else if (*hstr > *ustr) {
|
/illumos-gate/usr/src/cmd/fmtmsg/ |
H A D | main.c | 531 char *ustr; /* Ptr to -u (subclass) arg */ 635 ustr = optarg; 703 p = strcpy(malloc((unsigned int) strlen(ustr)+1), ustr); 723 "Invalid subclass: %s", ustr); 526 char *ustr; /* Ptr to -u (subclass) arg */ local
|
/illumos-gate/usr/src/lib/libpkg/common/ |
H A D | p12lib.c | 2351 utf82ascstr(ASN1_UTF8STRING *ustr) argument 2359 if (ustr == NULL || ustr->type != V_ASN1_UTF8STRING) { 2368 ret = ASN1_mbstring_copy(&astr, ustr->data, ustr->length, mbflag, 2597 ASN1_UTF8STRING *ustr = NULL; local 2613 ustr = ASN1_UTF8STRING_new(); 2614 if (ustr == NULL) { 2620 ASN1_UTF8STRING_free(ustr); 2625 if (ASN1_STRING_set(ustr, fnam [all...] |
/illumos-gate/usr/src/lib/fm/topo/libtopo/common/ |
H A D | topo_snap.c | 270 char *ustr = NULL; local 289 if ((ustr = topo_hdl_strdup(thp, thp->th_uuid)) == NULL) { 320 topo_hdl_strfree(thp, ustr); 336 return (ustr);
|
/illumos-gate/usr/src/lib/cfgadm_plugins/usb/common/ |
H A D | cfga_configfile.c | 646 char *ustr, *cstr; local 674 ustr = strrchr(user_rec->pathname, '/'); 678 MAX(ustr - user_rec->pathname,
|
/illumos-gate/usr/src/uts/sun4u/os/ |
H A D | cpr_impl.c | 551 const char ustr[] = ": unix-tte 2drop false ;"; local 559 * ustr[] is used as temporary forth words during 564 cmach.md_size = sizeof (m_info) + sizeof (ustr); 618 if (rc = cpr_write(vp, (caddr_t)ustr, sizeof (ustr)))
|
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/ |
H A D | digest_md5.c | 460 static const char ustr[] = "username"; local 581 if (lstreqcase(ustr, attr, alen)) {
|
/illumos-gate/usr/src/common/mpi/ |
H A D | mpi.c | 2501 unsigned char *ustr = (unsigned char *)str; local 2508 if(ustr[0]) 2517 if((res = mp_add_d(mp, ustr[ix], mp)) != MP_OKAY)
|