Home
last modified time | relevance | path

Searched refs:digits (Results 1 – 25 of 55) sorted by path

123

/PHP-5.5/
H A DNEWS4611 . Fixed bug #53304 (quot_print_decode does not handle lower-case hex digits).
5140 - Fixed bug #50392 (date_create_from_format enforces 6 digits for 'u' format
5313 - Fixed bug #50392 (date_create_from_format() enforces 6 digits for 'u'
5660 - Fixed bug #45141 (setcookie will output expires years of >4 digits). (Ilia)
7321 - Fixed bug #41844 (Format returns incorrect number of digits for negative years
7664 - Fixed bug #40576 (double values are truncated to 6 decimal digits when
8083 - Fixed bug #36392 (wrong number of decimal digits with %e specifier in
/PHP-5.5/Zend/
H A Dzend_operators.h134 int base = 10, digits = 0, dp_or_e = 0; local
174 …for (type = IS_LONG; !(digits >= MAX_LENGTH_OF_LONG && (dval || allow_errors == 1)); digits++, ptr…
197 if (digits >= MAX_LENGTH_OF_LONG) {
204 } else if (!(digits < SIZEOF_LONG * 2 || (digits == SIZEOF_LONG * 2 && ptr[-digits] <= '7'))) {
239 if (digits == MAX_LENGTH_OF_LONG - 1) {
240 int cmp = strcmp(&ptr[-digits], long_min_digits);
/PHP-5.5/ext/bcmath/libbcmath/
H A DFAQ11 GMP has "integers" (no digits after a decimal), "rational numbers"
15 a "scale" that represent the number of digits to represent after the
17 calculate an exact number of digits after the decimal point regardless
18 of the number of digits in the integer part. GMP floats have a
20 up dropping digits BC must calculate.
/PHP-5.5/ext/bcmath/libbcmath/src/
H A Doutput.c70 char digits[40]; local
74 snprintf(digits, sizeof(digits), "%ld", val);
75 len = strlen (digits);
97 stk_rec *digits, *temp; in bc_out_num() local
135 digits = NULL; in bc_out_num()
158 temp->next = digits; in bc_out_num()
159 digits = temp; in bc_out_num()
164 if (digits != NULL) in bc_out_num()
167 while (digits != NULL) in bc_out_num()
169 temp = digits; in bc_out_num()
[all …]
H A Dstr2num.c46 int digits, strscale; in bc_str2num() local
55 digits = 0; in bc_str2num()
60 while (isdigit((int)*ptr)) ptr++, digits++; /* digits */ in bc_str2num()
63 if ((*ptr != '\0') || (digits+strscale == 0)) in bc_str2num()
71 if (digits == 0) in bc_str2num()
74 digits = 1; in bc_str2num()
76 *num = bc_new_num (digits, strscale); in bc_str2num()
95 digits = 0; in bc_str2num()
97 for (;digits > 0; digits--) in bc_str2num()
/PHP-5.5/ext/ctype/tests/
H A Dctype_alnum_variation3.phpt32 "03F", // hexadecimal 'digits'
H A Dctype_alpha_variation3.phpt33 "03F", // hexadecimal 'digits'
H A Dctype_cntrl_variation3.phpt33 "03F", // hexadecimal 'digits'
H A Dctype_digit_variation2.phpt14 * valid decimal digits
H A Dctype_graph_variation3.phpt33 "03F", // hexadecimal 'digits'
H A Dctype_lower_variation3.phpt33 "03F", // hexadecimal 'digits'
H A Dctype_print_variation3.phpt33 "03F", // hexadecimal 'digits'
H A Dctype_punct_variation3.phpt34 "03F", // hexadecimal 'digits'
H A Dctype_space_variation3.phpt33 "03F", // hexadecimal 'digits'
H A Dctype_upper_variation3.phpt32 "03F", // hexadecimal 'digits'
H A Dctype_xdigit_variation2.phpt14 * valid hexadecimal 'digits'
H A Dctype_xdigit_variation3.phpt33 "03F", // hexadecimal 'digits'
H A Dctype_xdigit_variation4.phpt14 * 1. contain hexadecimal digits
15 * 2. correspond to character codes recognised as hexadecimal digits (see variation2)
23 // contain hexadecimal digits but do not correspond to 'correct' ints
29 // contain hexadecimal digits but do not correspond to 'correct' ints
/PHP-5.5/ext/date/tests/
H A Dbug41844.phpt2 Bug #41844 (Format returns incorrect number of digits for negative years -0001 to -0999)
H A Dbug50392.phpt2 Bug #50392 (date_create_from_format enforces 6 digits for 'u' format character)
H A Didate_variation4.phpt25 'Year (1 or 2 digits)' => 'y',
26 'Year 4 digits' => 'Y',
58 --Year (1 or 2 digits)--
61 --Year 4 digits--
H A Didate_variation6.phpt2 Test idate() function : usage variation - Checking return of year(1 or 2 digits) format starting wi…
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic12364 # leader starts with 5 digits, followed by codes specific to MARC format
18050 # it. The interesting value is the cvs date (8 digits decimal).
/PHP-5.5/ext/iconv/tests/
H A Dbug53304.phpt2 Bug #53304 (quot_print_decode does not handle lower-case hex digits)
/PHP-5.5/ext/intl/doc/
H A DTutorial.txt238 numeric value of substrings of digits. This is a way to get '100' to sort AFTER '2'.

Completed in 106 milliseconds

123