Searched refs:DIGIT (Results 1 - 15 of 15) sorted by relevance
/osnet-11/usr/src/lib/libc/port/i18n/ |
H A D | wcstol.c | 40 #define DIGIT(x) (iswdigit(x) ? (x) - L'0' : \ macro 99 if (!iswalnum(c) || (xx = DIGIT(c)) >= base) { 116 val = -DIGIT(c); 117 for (; iswalnum(c = *++str) && (xx = DIGIT(c)) < base; ) { 131 while (iswalnum(c = *++str) && (xx = DIGIT(c)) < base)
|
H A D | wcstoul.c | 40 #define DIGIT(x) (iswdigit(x) ? (x) - L'0' : \ macro 97 if (!iswalnum(c) || (xx = DIGIT(c)) >= base) { 107 val = DIGIT(c); 108 for (; iswalnum(c = *++str) && (xx = DIGIT(c)) < base; ) { 122 while (iswalnum(c = *++str) && (xx = DIGIT(c)) < base)
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ |
H A D | regnodes.h | 32 #define DIGIT 26 /* 0x1a Match any numeric character */ macro 99 DIGIT, /* DIGIT */ 100 DIGIT, /* DIGITL */ 167 0, /* DIGIT */ 232 0, /* DIGIT */ 298 "DIGIT", /* 0x1a */
|
H A D | regcomp.h | 356 DIGIT, NDIGIT,
|
H A D | regexec.c | 1477 case DIGIT: 2703 case DIGIT: 2708 if (!(OP(scan) == DIGIT 2718 if (!(OP(scan) == DIGIT 4200 case DIGIT:
|
H A D | regcomp.c | 1529 case DIGIT: 2989 ret = reg_node(pRExC_state, DIGIT);
|
/osnet-11/usr/src/common/mpi/ |
H A D | mpprime.c | 101 DIGIT(a, ix) = next;
|
H A D | mpi.c | 350 DIGIT(mp, 0) = d; 371 DIGIT(mp,0) = v; 405 DIGIT(mp,0) = z; 452 DIGIT(&tmp, 0) = d - DIGIT(&tmp, 0); 496 DIGIT(&tmp, 0) = d - DIGIT(&tmp, 0); 588 rem = DIGIT(a, 0) & mask; 661 DIGIT(&s, 0) = 1; 1326 d = DIGIT( [all...] |
H A D | mpi-priv.h | 195 while (used > 1 && DIGIT(mp, used - 1) == 0) --used; \
|
H A D | mpi.h | 376 #define DIGIT(MP,N) MP_DIGIT(MP,N) macro
|
/osnet-11/usr/src/lib/nsswitch/files/common/ |
H A D | ether_addr.c | 46 #define DIGIT(x) \ macro 124 n = 16 * n + DIGIT(*linep);
|
/osnet-11/usr/src/lib/efcode/engine/ |
H A D | print.c | 34 #define DIGIT(x) (((x) > 9) ? ((x) + 'a' - 10) : ((x) + '0')) macro 40 TOS = DIGIT(TOS); 74 *(--env->picturebufpos) = DIGIT(b); 213 *(--env->picturebufpos) = DIGIT(b);
|
/osnet-11/usr/src/lib/libsocket/inet/ |
H A D | ether_addr.c | 176 #define DIGIT(x) (isdigit(x) ? (x) - '0' : \ macro 203 n = 16 * n + DIGIT(start[j]);
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/unicore/ |
H A D | Name.pl | 54 0030 DIGIT ZERO 55 0031 DIGIT ONE 56 0032 DIGIT TWO 57 0033 DIGIT THREE 58 0034 DIGIT FOUR 59 0035 DIGIT FIVE 60 0036 DIGIT SIX 61 0037 DIGIT SEVEN 62 0038 DIGIT EIGHT 63 0039 DIGIT NIN [all...] |
/osnet-11/usr/src/lib/libsip/common/ |
H A D | sip_parse_uri.c | 46 * IPv4address = 1*3DIGIT "." 1*3DIGIT "." 1*3DIGIT "." 1*3DIGIT 52 * port = 1*DIGIT 420 * phonedigit = DIGIT / visual-separator 679 * token-char = - _ . ! ~ * ' $ & + DIGIT ALPHA # % ^ ` | 691 * for ALPAH DIGIT - _ . ! ~ * ' $ & + 737 * scheme = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." ) 1117 * port = 1*DIGIT [all...] |
Completed in 133 milliseconds