Searched defs:numeric (Results 1 - 12 of 12) sorted by relevance

/illumos-gate/usr/src/head/
H A Dmacros.h40 * numeric() is useful in while's, if's, etc., but don't use *p++
44 #define numeric(c) ((c) >= '0' && (c) <= '9') macro
/illumos-gate/usr/src/cmd/localedef/
H A Dnumeric.c31 static struct lc_numeric numeric; variable in typeref:struct:lc_numeric
36 (void) memset(&numeric, 0, sizeof (numeric));
52 numeric.decimal_point = str;
55 numeric.thousands_sep = str;
67 free((char *)numeric.grouping);
68 numeric.grouping = NULL;
76 if (numeric.grouping == NULL) {
79 (void) asprintf(&s, "%s;%d", numeric.grouping, n);
84 free((char *)numeric
[all...]
H A Dparser.y216 | numeric
606 numeric : T_NUMERIC T_NL numeric_list T_END T_NUMERIC T_NL label
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dlocaleimpl.h70 const struct lc_numeric *numeric; member in struct:_locale
/illumos-gate/usr/src/cmd/streams/log/
H A Dstrace.c56 #define numeric(c) ((c <= '9') && (c >= '0')) macro
65 if (numeric(*ap))
/illumos-gate/usr/src/uts/common/io/comstar/port/iscsit/
H A Discsit_authclient.c46 uint32_t numeric)
53 p->value.numeric = numeric;
89 uint32_t *numeric)
96 *numeric = p->value.numeric;
44 client_set_numeric_data(auth_key_block_t *keyBlock, int key_type, uint32_t numeric) argument
87 client_get_numeric_data(auth_key_block_t *keyBlock, int key_type, uint32_t *numeric) argument
H A Discsit_authclient.h53 uint32_t numeric; member in union:auth_value
114 uint32_t numeric);
129 uint32_t *numeric);
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/nc/
H A Dsocks.c70 * Indicate whether the host address is IPv4 (v4only) and numeric.
74 socklen_t addrlen, int v4only, int numeric)
81 hints.ai_flags = numeric ? AI_NUMERICHOST : 0;
84 /* Don't fatal when attempting to convert a numeric address */
86 if (!numeric) {
284 * port number and numeric IPv4 address which gives 8 bytes.
298 /* Try to be sane about numeric IPv6 addresses */
73 decode_addrport(const char *h, const char *p, struct sockaddr *addr, socklen_t addrlen, int v4only, int numeric) argument
/illumos-gate/usr/src/lib/libcmd/common/
H A Dexpr.c141 #define numeric(np) ((np)->type&T_NUM) macro
354 if (!numeric(np) || !numeric(&rp))
355 error(ERROR_exit(2),"non-numeric argument");
383 if (!numeric(np) || !numeric(&rp))
384 error(ERROR_exit(2),"non-numeric argument");
405 if (numeric(&rp) && numeric(np))
469 if ((numeric(
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ilbadm/
H A Dilbadm_subr.c48 numeric = 1, enumerator in enum:__anon259
151 addr_type_t at = numeric;
157 * if *a_type == numeric, we only want to check whether this
158 * is a (valid) numeric IP address. If we do and it is NOT,
162 if (a_type != NULL && (*a_type == numeric))
341 * return the numeric port in *host* byte order
458 if (at != numeric) {
496 if (at != numeric) {
533 /* ranges are only allowed for numeric ports */
536 " for numeric port
[all...]
/illumos-gate/usr/src/cmd/mandoc/
H A Dmdoc_man.c475 int numeric, remain, sz, chsz; local
477 numeric = 1;
488 numeric = 0;
517 if (numeric) {
/illumos-gate/usr/src/lib/libshell/common/sh/
H A Dname.c2449 register int numeric; local
2472 numeric = ((nv_isattr (np, NV_INTEGER)) != 0);
2473 if(numeric)
2532 if((numeric=nv_size(np))==10)
2539 numeric = 0;
2541 return(fmtbasell(ll,numeric, numeric&&numeric!=10));
2559 if((numeric=nv_size(np)) && up->cp && up->cp[numeric])
[all...]

Completed in 91 milliseconds