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

1 2

  /src/external/apache2/llvm/dist/llvm/tools/llvm-strings/
llvm-strings.cpp 48 enum radix { none, octal, hexadecimal, decimal }; enumerator in enum:radix
53 clEnumValN(decimal, "d", "decimal")),
75 case decimal:
  /src/external/gpl3/gcc/dist/libquadmath/printf/
_i18n_number.h 58 char decimal[MB_LEN_MAX + 1]; local
61 /* "to_outpunct" is a map from ASCII decimal point and thousands-sep
63 use extra decimal point and thousands-sep. */
73 size_t n = wcrtomb (decimal, wdecimal, &state);
75 memcpy (decimal, ".", 2);
77 decimal[n] = '\0';
123 const char *outpunct = *s == '.' ? decimal : thousands;
printf_fphex.c 78 /* Locale-dependent representation of decimal point. */
79 const char *decimal;
96 /* The maximal exponent of two in decimal notation has 5 digits. */
107 /* The leading digit before the decimal point. */
124 /* Figure out the decimal point character. */
127 decimal = nl_langinfo (DECIMAL_POINT);
130 decimal = nl_langinfo (MON_DECIMAL_POINT);
131 if (*decimal == '\0')
132 decimal = nl_langinfo (DECIMAL_POINT);
134 /* The decimal point character must never be zero. *
77 const char *decimal; local
    [all...]
printf_fp.c 136 /* Locale-dependent representation of decimal point. */
137 const char *decimal;
234 /* Figure out the decimal point character. */
237 decimal = nl_langinfo (DECIMAL_POINT);
240 decimal = nl_langinfo (MON_DECIMAL_POINT);
241 if (*decimal == '\0')
242 decimal = nl_langinfo (DECIMAL_POINT);
244 /* The decimal point character must never be zero. */
245 assert (*decimal != '\0');
249 decimal = lc->decimal_point
135 const char *decimal; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libquadmath/printf/
_i18n_number.h 58 char decimal[MB_LEN_MAX + 1]; local
61 /* "to_outpunct" is a map from ASCII decimal point and thousands-sep
63 use extra decimal point and thousands-sep. */
73 size_t n = wcrtomb (decimal, wdecimal, &state);
75 memcpy (decimal, ".", 2);
77 decimal[n] = '\0';
123 const char *outpunct = *s == '.' ? decimal : thousands;
printf_fphex.c 78 /* Locale-dependent representation of decimal point. */
79 const char *decimal;
96 /* The maximal exponent of two in decimal notation has 5 digits. */
107 /* The leading digit before the decimal point. */
124 /* Figure out the decimal point character. */
127 decimal = nl_langinfo (DECIMAL_POINT);
130 decimal = nl_langinfo (MON_DECIMAL_POINT);
131 if (*decimal == '\0')
132 decimal = nl_langinfo (DECIMAL_POINT);
134 /* The decimal point character must never be zero. *
77 const char *decimal; local
    [all...]
printf_fp.c 136 /* Locale-dependent representation of decimal point. */
137 const char *decimal;
234 /* Figure out the decimal point character. */
237 decimal = nl_langinfo (DECIMAL_POINT);
240 decimal = nl_langinfo (MON_DECIMAL_POINT);
241 if (*decimal == '\0')
242 decimal = nl_langinfo (DECIMAL_POINT);
244 /* The decimal point character must never be zero. */
245 assert (*decimal != '\0');
249 decimal = lc->decimal_point
135 const char *decimal; local
    [all...]
  /src/external/lgpl3/gmp/dist/mini-gmp/tests/
t-mpq_str.c 40 const char *decimal; member in struct:__anon23307
102 if (data[i].decimal)
110 if (mpq_set_str (b, data[i].decimal, 10) != 0)
112 fprintf (stderr, "mpq_set_str returned -1, decimal input: %s\n",
t-str.c 39 const char *decimal; member in struct:__anon23308
100 if (data[i].decimal)
108 if (mpz_set_str (b, data[i].decimal, 10) != 0)
110 fprintf (stderr, "mpz_set_str returned -1, decimal input: %s\n",
  /src/external/bsd/mdocml/dist/
out.h 38 size_t decimal; /* decimal position in cell */ member in struct:roffcol
tbl.h 33 char decimal; /* Option "decimalpoint". */ member in struct:tbl_opts
term.h 49 int decimal; /* decimal point position */ member in struct:termp_tbl
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/decimal/
decimal.h 0 // decimal classes -*- C++ -*-
25 /** @file decimal/decimal.h
27 * Do not attempt to use it directly. @headername{decimal}
42 namespace decimal namespace
464 } // namespace decimal
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/decimal/
decimal.h 0 // decimal classes -*- C++ -*-
25 /** @file decimal/decimal.h
27 * Do not attempt to use it directly. @headername{decimal}
42 namespace decimal namespace
464 } // namespace decimal
  /src/usr.bin/ktruss/
dump.c 70 int timestamp, decimal, fancy = 1, tail, maxdata; variable
428 xwprintf(decimal ? ", _IO%s('%c',%ld" : ", _IO%s('%c',%#lx",
431 xwprintf(decimal ? ",%ld)" : ",%#lx)",
474 if (decimal)
  /src/external/apache2/llvm/dist/llvm/tools/llvm-size/
llvm-size.cpp 77 enum RadixTy { octal = 8, decimal = 10, hexadecimal = 16 }; enumerator in enum:RadixTy
79 "radix", cl::desc("Print size in radix"), cl::init(decimal),
81 clEnumValN(decimal, "10", "Print size in decimal"),
88 clEnumValN(decimal, "d", "Print size in decimal"),
90 cl::init(decimal), cl::cat(SizeCat));
175 case decimal:
  /src/external/apache2/mDNSResponder/dist/mDNSShared/dns_objects/utilities/
domain_name_labels.c 488 const int decimal = ((ch - '0') * 100) + ((src[0] - '0') * 10) + (src[1] - '0'); local
489 if (decimal <= 255) {
490 ch = decimal;
  /src/external/gpl3/binutils/dist/binutils/
size.c 46 decimal, octal, hex
48 radix = decimal;
95 -o|-d|-x --radix={8|10|16} Display numbers in octal, decimal or hex\n\
195 radix = decimal;
223 radix = decimal;
237 and M, N, O, P, Q are expressed in decimal by default,
440 return sprintf (buffer, (radix == decimal ? "%" PRIu64
450 sprintf (buffer, (radix == decimal ? "%" PRIu64
45 decimal, octal, hex enumerator in enum:__anon9928
  /src/external/gpl3/binutils.old/dist/binutils/
size.c 46 decimal, octal, hex
48 radix = decimal;
95 -o|-d|-x --radix={8|10|16} Display numbers in octal, decimal or hex\n\
195 radix = decimal;
223 radix = decimal;
237 and M, N, O, P, Q are expressed in decimal by default,
440 return sprintf (buffer, (radix == decimal ? "%" PRIu64
450 sprintf (buffer, (radix == decimal ? "%" PRIu64
45 decimal, octal, hex enumerator in enum:__anon11408
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/
ppevvmath.h 29 #define PRECISION 5 /* Change this value to change the number of decimal places in the final output - 5 is a good default */
41 * A.partial.decimal => Only the fractional portion
46 unsigned int decimal: SHIFT_AMOUNT; /*Needs to always be unsigned*/ member in struct:_fInt::_partial
58 static int ConvertBackToInteger(fInt); /* Convert a FINT back to an INT that is scaled by 1000 (i.e. last 3 digits are the decimal digits) */
340 X_LessThanOne = (X.partial.real == 0 && X.partial.decimal != 0 && X.full >= 0);
341 Y_LessThanOne = (Y.partial.real == 0 && Y.partial.decimal != 0 && Y.full >= 0);
352 tempProduct = tempProduct >> 16; /*Remove lagging 16 bits - Will lose some precision from decimal; */
514 int i, scaledDecimal = 0, tmp = A.partial.decimal;
547 solution.partial.decimal = 0; /*All fractional digits changes to 0 */
  /src/external/lgpl3/mpfr/dist/tests/
tsprintf.c 354 decimal (void) function
428 /* decimal point, left justified, precision and rounding parameter */
438 /* sign + or -, decimal point, pad with leading zeros */
447 /* sign or space, decimal point, left justified */
622 /* Decimal point and no figure after it with '#' flag and 'G' style */
739 /* decimal point, left justified, precision and rounding parameter */
746 /* sign + or -, decimal point, pad with leading zeros */
753 /* sign or space, decimal point, left justified */
859 /* sign + or -, decimal point, pad with leading zeros */
865 /* sign or space, decimal point (unused), left justified *
    [all...]
  /src/usr.bin/kdump/
kdump.c 88 static int timestamp, decimal, plain, tail, maxdata = -1, numeric; variable
221 decimal = 1;
741 output_long(cmd & 0xff, decimal == 0);
744 output_long(IOCPARM_LEN(cmd), decimal == 0); local
876 output_long((long)*ap, !(decimal || small(*ap)));
891 output_long((long)*ap, !(decimal || small(*ap)));
907 output_long((long)*ap, !(decimal || small(*ap)));
915 !(decimal || small(*ap)));
940 !(decimal || small(*ap)));
974 output_long((long)ap[0], !(decimal || small(*ap)))
    [all...]
  /src/external/gpl3/gcc/dist/libquadmath/strtod/
strtod_l.c 335 , const char *decimal, size_t decimal_len, const char *thousands
513 wchar_t decimal; local
515 const char *decimal;
577 /* Find the locale's decimal point character. */
579 decimal = nl_langinfo_wc (_NL_NUMERIC_DECIMAL_POINT_WC);
580 assert (decimal != L'\0');
584 decimal = nl_langinfo (DECIMAL_POINT);
585 decimal_len = strlen (decimal);
588 decimal = lc->decimal_point;
589 if (decimal == NULL || *decimal == '\0'
511 wchar_t decimal; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
dwarf2out.h 414 /* For a decimal scale factor, the scale factor is 10 ** decimal. */
415 int decimal; member in union:fixed_point_type_info::__anon16022
  /src/external/gpl3/gcc.old/dist/libquadmath/strtod/
strtod_l.c 335 , const char *decimal, size_t decimal_len, const char *thousands
513 wchar_t decimal; local
515 const char *decimal;
577 /* Find the locale's decimal point character. */
579 decimal = nl_langinfo_wc (_NL_NUMERIC_DECIMAL_POINT_WC);
580 assert (decimal != L'\0');
584 decimal = nl_langinfo (DECIMAL_POINT);
585 decimal_len = strlen (decimal);
588 decimal = lc->decimal_point;
589 if (decimal == NULL || *decimal == '\0'
511 wchar_t decimal; local
    [all...]

Completed in 47 milliseconds

1 2