Home
last modified time | relevance | path

Searched refs:digits (Results 1 – 25 of 51) sorted by relevance

123

/PHP-7.3/ext/bcmath/libbcmath/src/
H A Dstr2num.c46 int digits, strscale; in bc_str2num() local
55 digits = 0; in bc_str2num()
60 while (*ptr >= '0' && *ptr <= '9') 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()
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()
157 temp->next = digits; in bc_out_num()
158 digits = temp; in bc_out_num()
163 if (digits != NULL) in bc_out_num()
166 while (digits != NULL) in bc_out_num()
168 temp = digits; in bc_out_num()
[all …]
/PHP-7.3/ext/standard/tests/strings/
H A Dstrnatcmp_leftalign.phpt2 Test strnatcmp() function : left align, whitespace, digits
13 echo "-- Leading whitespace, digits, string 1 longer --\n";
18 echo "-- Leading whitespace, digits, string 2 longer --\n";
25 -- Leading whitespace, digits, string 1 longer --
27 -- Leading whitespace, digits, string 2 longer --
H A Dmoney_format_basic1.phpt25 // Format with 14 positions of width, 8 digits of
28 echo "Format values with 14 positions, 8 digits to left, 2 to right using national format\n";
61 Format values with 14 positions, 8 digits to left, 2 to right using national format
H A Dbug36392.phpt2 Bug #36392 (wrong number of decimal digits with %e specifier in sprintf)
H A Dsprintf_variation52.phpt50 Notice: sprintf(): Requested precision of 988 digits was truncated to PHP maximum of %d digits in %…
/PHP-7.3/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-7.3/ext/date/tests/
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 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_variation6.phpt2 Test idate() function : usage variation - Checking return of year(1 or 2 digits) format starting wi…
/PHP-7.3/ext/json/
H A Djson_encoder.c33 static const char digits[] = "0123456789abcdef"; variable
345 dst[2] = digits[(us >> 12) & 0xf]; in php_json_escape_string()
346 dst[3] = digits[(us >> 8) & 0xf]; in php_json_escape_string()
347 dst[4] = digits[(us >> 4) & 0xf]; in php_json_escape_string()
348 dst[5] = digits[us & 0xf]; in php_json_escape_string()
354 dst[2] = digits[(us >> 12) & 0xf]; in php_json_escape_string()
355 dst[3] = digits[(us >> 8) & 0xf]; in php_json_escape_string()
356 dst[4] = digits[(us >> 4) & 0xf]; in php_json_escape_string()
357 dst[5] = digits[us & 0xf]; in php_json_escape_string()
454 dst[4] = digits[(us >> 4) & 0xf]; in php_json_escape_string()
[all …]
/PHP-7.3/ext/ctype/tests/
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
H A Dctype_digit_variation2.phpt14 * valid decimal digits
H A Dctype_print_variation3.phpt33 "03F", // hexadecimal 'digits'
H A Dctype_lower_variation3.phpt33 "03F", // hexadecimal 'digits'
/PHP-7.3/main/
H A Dsnprintf.c142 char *digits, *dst, *src; in php_gcvt() local
155 …snprintf(buf, ndigit + 1, "%s%s", (sign && *digits == 'I') ? "-" : "", *digits == 'I' ? "INF" : "N… in php_gcvt()
156 zend_freedtoa(digits); in php_gcvt()
173 src = digits; in php_gcvt()
209 src = digits; in php_gcvt()
216 for (i = 0, src = digits; i < decpt; i++) { in php_gcvt()
224 if (src == digits) { in php_gcvt()
228 for (i = decpt; digits[i] != '\0'; i++) { in php_gcvt()
229 *dst++ = digits[i]; in php_gcvt()
234 zend_freedtoa(digits); in php_gcvt()
[all …]
/PHP-7.3/ext/fileinfo/libmagic/
H A Dder.c176 uint8_t digits, i; in getlength() local
189 digits = c[(*p)++] & 0x7f; in getlength()
190 if (*p + digits >= l) in getlength()
194 return digits; in getlength()
201 for (i = 0; i < digits; i++) in getlength()
/PHP-7.3/ext/pcre/tests/
H A Dpreg_match_all_edit_basic.phpt13 …G_PATTERN_ORDER, -10)); //finds any digit that's not 4 10 digits from the end(1 mat…
22 var_dump(preg_match_all('/\d{2}$/', $string, $match4)); //tries to find 2 digits at the en…
H A Dpreg_match_all_basic.phpt10 …SET_CAPTURE|PREG_PATTERN_ORDER, -10)); //finds any digit that's not 4 10 digits from the end(1 mat…
16 var_dump(preg_match_all('/\d{2}$/', $string, $match4)); //tries to find 2 digits at the end of a st…
/PHP-7.3/ext/iconv/tests/
H A Dbug53304.phpt2 Bug #53304 (quot_print_decode does not handle lower-case hex digits)
/PHP-7.3/ext/mbstring/tests/
H A Dmb_ereg_variation4.phpt23 //contains japanese characters, ASCII digits and different, UTF-8 encoded digits
/PHP-7.3/ext/standard/tests/math/
H A Dround_error.phpt6 * Description: Returns the rounded value of val to specified precision (number of digits
/PHP-7.3/ext/xmlrpc/tests/
H A Dbug40576.phpt2 Bug #40576 (double values are truncated to 6 decimal digits when encoding)
H A Dbug40576_64bit.phpt2 Bug #40576 (double values are truncated to 6 decimal digits when encoding)

Completed in 31 milliseconds

123