HomeSort by: relevance | last modified time | path
    Searched defs:digits (Results 1 - 25 of 183) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/external/bsd/iscsi/dist/src/lib/
strtoll.c 42 static char *digits = "0123456789abcdefghijklmnopqrstuvwxyz"; variable
52 for (ret = 0, cp = ptr ; *cp && (dig = strchr(digits, *cp)) != NULL && (d = (int)(dig - digits)) < base ; cp++) {
  /src/external/bsd/ntp/dist/libntp/
hextolfp.c 25 static const char *digits = "0123456789abcdefABCDEF"; local
40 (ind = strchr(digits, *cp)) != NULL) {
42 dec_i += ((ind - digits) > 15)
43 ? (u_long)(ind - digits - 6)
44 : (u_long)(ind - digits);
55 (ind = strchr(digits, *cp)) != NULL) {
57 dec_f += ((ind - digits) > 15)
58 ? (u_long)(ind - digits - 6)
59 : (u_long)(ind - digits);
atolfp.c 43 static const char *digits = "0123456789"; local
55 * [spaces][-|+][digits][.][digits][spaces|\n|\0]
71 while (*cp != '\0' && (ind = strchr(digits, *cp)) != NULL) {
73 dec_i += (u_long)(ind - digits);
82 && (ind = strchr(digits, *cp)) != NULL) {
85 dec_f += (u_long)(ind - digits);
  /src/external/gpl3/gcc/dist/libquadmath/printf/
_itoa.h 35 const char *digits = (upper_case ? _itoa_upper_digits : _itoa_lower_digits); local
42 *--buflim = digits[value % Base]; \
51 *--buflim = digits[value % base];
61 const char *digits = (upper_case ? _itoa_upper_digits : _itoa_lower_digits); local
70 *--buflim = digits[value % base];
_itowa.h 36 const wchar_t *digits = (upper_case local
45 *--bp = digits[value % Base]; \
54 *--bp = digits[value % base];
65 const wchar_t *digits = (upper_case local
76 *--bp = digits[value % base];
  /src/external/gpl3/gcc.old/dist/libquadmath/printf/
_itoa.h 35 const char *digits = (upper_case ? _itoa_upper_digits : _itoa_lower_digits); local
42 *--buflim = digits[value % Base]; \
51 *--buflim = digits[value % base];
61 const char *digits = (upper_case ? _itoa_upper_digits : _itoa_lower_digits); local
70 *--buflim = digits[value % base];
_itowa.h 36 const wchar_t *digits = (upper_case local
45 *--bp = digits[value % Base]; \
54 *--bp = digits[value % base];
65 const wchar_t *digits = (upper_case local
76 *--bp = digits[value % base];
  /src/external/bsd/nsd/dist/simdzone/src/generic/
apl.h 16 uint8_t digits[3]; local
33 digits[0] = (uint8_t)text[count+1] - '0';
34 digits[1] = (uint8_t)text[count+2] - '0';
35 if (text[count] != '/' || digits[0] > 9)
37 if (digits[1] > 9)
38 (void)(count += 2), prefix = digits[0];
40 (void)(count += 3), prefix = digits[0] * 10 + digits[1];
53 digits[0] = (uint8_t)text[count+1] - '0';
54 digits[1] = (uint8_t)text[count+2] - '0'
    [all...]
gpos.h 22 uint8_t digits[4]; local
23 digits[0] = (uint8_t)text[0] - '0';
24 digits[1] = (uint8_t)text[1] - '0';
25 digits[2] = (uint8_t)text[2] - '0';
26 digits[3] = (uint8_t)text[3] - '0';
28 int32_t mask = ((digits[0] <= 9) << 0) | // 0b0001
29 ((digits[1] <= 9) << 1) | // 0b0010
30 ((digits[2] <= 9) << 2) | // 0b0100
31 ((digits[3] <= 9) << 3); // 0b1000
43 degrees = digits[0] * 10 + digits[1]
86 uint8_t digits[5]; local
    [all...]
ip4.h 18 uint8_t digits[3], count; local
20 digits[0] = (uint8_t)text[0] - '0';
21 digits[1] = (uint8_t)text[1] - '0';
22 digits[2] = (uint8_t)text[2] - '0';
23 if (digits[0] > 9)
25 else if (digits[1] > 9)
26 (void)(count = 1), octet = digits[0];
27 else if (digits[2] > 9)
28 (void)(count = 2), octet = digits[0] * 10 + digits[1]
    [all...]
  /src/external/gpl2/groff/dist/src/libs/libgroff/
strtol.c 57 static char digits[] = "0123456789abcdefghijklmnopqrstuvwxyz"; local
83 p = strchr(digits, (ISASCII((unsigned char)*str)
87 if (p == 0 || (val = (p - digits)) >= base) {
105 p = strchr(digits, (ISASCII((unsigned char)*str)
110 n = p - digits;
  /src/external/gpl3/gcc/dist/libgcc/config/libbid/
bid128_logb.c 33 int exponent_x, bin_expon_cx, digits; variable
41 // find number of digits in coefficient
47 digits = estimate_decimal_digits[bin_expon_cx];
51 digits++;
54 exponent_x = exponent_x - DECIMAL_EXPONENT_BIAS_128 - 1 + digits;
bid64_logb.c 42 int exponent_x, bin_expon_cx, digits; local
55 // find number of digits in coefficient
57 digits = 16;
61 digits = estimate_decimal_digits[bin_expon_cx];
62 if (coefficient_x >= power10_table_128[digits].w[0])
63 digits++;
65 exponent_x = exponent_x - DECIMAL_EXPONENT_BIAS + digits - 1;
bid128_sqrt.c 41 int digits, scale, exponent_q; variable
96 digits = estimate_decimal_digits[bin_expon_cx];
123 // get number of digits in CX
127 digits++;
130 scale = 67 - digits;
304 int digits, scale, exponent_q;
367 digits = estimate_decimal_digits[bin_expon_cx];
393 // get number of digits in CX
397 digits++;
400 scale = 67 - digits;
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/libbid/
bid128_logb.c 33 int exponent_x, bin_expon_cx, digits; variable
41 // find number of digits in coefficient
47 digits = estimate_decimal_digits[bin_expon_cx];
51 digits++;
54 exponent_x = exponent_x - DECIMAL_EXPONENT_BIAS_128 - 1 + digits;
bid64_logb.c 42 int exponent_x, bin_expon_cx, digits; local
55 // find number of digits in coefficient
57 digits = 16;
61 digits = estimate_decimal_digits[bin_expon_cx];
62 if (coefficient_x >= power10_table_128[digits].w[0])
63 digits++;
65 exponent_x = exponent_x - DECIMAL_EXPONENT_BIAS + digits - 1;
bid128_sqrt.c 41 int digits, scale, exponent_q; variable
96 digits = estimate_decimal_digits[bin_expon_cx];
123 // get number of digits in CX
127 digits++;
130 scale = 67 - digits;
304 int digits, scale, exponent_q;
367 digits = estimate_decimal_digits[bin_expon_cx];
393 // get number of digits in CX
397 digits++;
400 scale = 67 - digits;
    [all...]
  /src/tests/lib/libc/locale/
t_digittoint.c 52 const char *digits; member in struct:test
80 printf(" char %2.2x in position %d\n", t->digits[i], i);
81 ATF_REQUIRE_EQ(digittoint(t->digits[i]), i);
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
inet_ntop.c 47 const char digits[] = "0123456789"; local
62 *dst++ = digits[n / 100];
67 *dst++ = digits[n / 10];
71 *dst++ = digits[n];
  /src/external/bsd/libarchive/dist/libarchive/
archive_string_sprintf.c 55 static const char digits[] = "0123456789abcdef"; local
58 archive_strappend_char(as, digits[d % base]);
  /src/external/gpl2/groff/dist/src/preproc/refer/
label.y 245 %type <dig> digits
321 | '%' digits
382 digits: label
385 | digits TOKEN_DIGIT
  /src/external/gpl3/gcc/dist/libdecnumber/
decPacked.c 64 /* If there is an error (that is, the decNumber has too many digits */
73 Int indigs=dn->digits; /* digits processed */
81 if (dn->digits>length*2-1 /* too long .. */
139 /* dn is the decNumber [with space for length*2 digits] */
144 /* of digits, and must be ended by a 4-bit sign nibble in the least */
151 /* hold the converted number (that is, up to length*2-1 digits), so */
163 Int digits; /* digits count */ local
174 digits=(last-first)*2+1; /* calculate digits .. *
    [all...]
  /src/external/gpl3/gcc.old/dist/libdecnumber/
decPacked.c 64 /* If there is an error (that is, the decNumber has too many digits */
73 Int indigs=dn->digits; /* digits processed */
81 if (dn->digits>length*2-1 /* too long .. */
139 /* dn is the decNumber [with space for length*2 digits] */
144 /* of digits, and must be ended by a 4-bit sign nibble in the least */
151 /* hold the converted number (that is, up to length*2-1 digits), so */
163 Int digits; /* digits count */ local
174 digits=(last-first)*2+1; /* calculate digits .. *
    [all...]
  /src/external/gpl3/gdb/dist/libdecnumber/
decPacked.c 64 /* If there is an error (that is, the decNumber has too many digits */
73 Int indigs=dn->digits; /* digits processed */
81 if (dn->digits>length*2-1 /* too long .. */
139 /* dn is the decNumber [with space for length*2 digits] */
144 /* of digits, and must be ended by a 4-bit sign nibble in the least */
151 /* hold the converted number (that is, up to length*2-1 digits), so */
163 Int digits; /* digits count */ local
174 digits=(last-first)*2+1; /* calculate digits .. *
    [all...]
  /src/external/gpl3/gdb.old/dist/libdecnumber/
decPacked.c 64 /* If there is an error (that is, the decNumber has too many digits */
73 Int indigs=dn->digits; /* digits processed */
81 if (dn->digits>length*2-1 /* too long .. */
139 /* dn is the decNumber [with space for length*2 digits] */
144 /* of digits, and must be ended by a 4-bit sign nibble in the least */
151 /* hold the converted number (that is, up to length*2-1 digits), so */
163 Int digits; /* digits count */ local
174 digits=(last-first)*2+1; /* calculate digits .. *
    [all...]

Completed in 31 milliseconds

1 2 3 4 5 6 7 8