Home
last modified time | relevance | path

Searched refs:digits (Results 26 – 50 of 57) sorted by relevance

123

/PHP-7.0/ext/ctype/tests/
H A Dctype_space_variation3.phpt33 "03F", // hexadecimal 'digits'
H A Dctype_upper_variation3.phpt32 "03F", // hexadecimal 'digits'
H A Dctype_xdigit_variation3.phpt33 "03F", // hexadecimal 'digits'
H A Dctype_graph_variation3.phpt33 "03F", // hexadecimal 'digits'
H A Dctype_punct_variation3.phpt34 "03F", // hexadecimal 'digits'
H A Dctype_xdigit_variation2.phpt14 * valid hexadecimal 'digits'
H A Dctype_cntrl_variation3.phpt33 "03F", // hexadecimal 'digits'
/PHP-7.0/ext/standard/tests/math/
H A Dround_variation1.phpt8 * Description: Returns the rounded value of val to specified precision (number of digits
H A Dround_variation2.phpt8 * Description: Returns the rounded value of val to specified precision (number of digits
H A Dround_basic.phpt8 * Description: Returns the rounded value of val to specified precision (number of digits
/PHP-7.0/ext/json/
H A Djson_scanner.re162 size_t digits = (size_t) (s->cursor - s->token - negative);
163 if (digits >= PHP_JSON_INT_MAX_LENGTH) {
164 if (digits == PHP_JSON_INT_MAX_LENGTH) {
H A Djson_scanner.c303 size_t digits = (size_t) (s->cursor - s->token - negative); in php_json_scan() local
304 if (digits >= PHP_JSON_INT_MAX_LENGTH) { in php_json_scan()
305 if (digits == PHP_JSON_INT_MAX_LENGTH) { in php_json_scan()
/PHP-7.0/ext/standard/
H A Dmath.c924 static char digits[] = "0123456789abcdefghijklmnopqrstuvwxyz"; in _php_math_longtobase() local
939 *--ptr = digits[value % base]; in _php_math_longtobase()
954 static char digits[] = "0123456789abcdefghijklmnopqrstuvwxyz"; in _php_math_zvaltobase() local
975 *--ptr = digits[(int) fmod(fvalue, base)]; in _php_math_zvaltobase()
H A Dvar_unserializer.c1052 int digits = YYCURSOR - start - 3; in php_var_unserialize_internal() local
1055 digits--; in php_var_unserialize_internal()
1059 if (digits >= MAX_LENGTH_OF_LONG - 1) { in php_var_unserialize_internal()
1060 if (digits == MAX_LENGTH_OF_LONG - 1) { in php_var_unserialize_internal()
H A Dvar_unserializer.re643 int digits = YYCURSOR - start - 3;
646 digits--;
650 if (digits >= MAX_LENGTH_OF_LONG - 1) {
651 if (digits == MAX_LENGTH_OF_LONG - 1) {
/PHP-7.0/ext/standard/tests/strings/
H A Dprintf.phpt673 Notice: printf(): Requested precision of 988 digits was truncated to PHP maximum of 53 digits in %s…
H A Dprintf_64bit.phpt673 Notice: printf(): Requested precision of 988 digits was truncated to PHP maximum of %d digits in %s…
/PHP-7.0/Zend/
H A Dzend_operators.c2857 int digits = 0, dp_or_e = 0; local
2895 …for (type = IS_LONG; !(digits >= MAX_LENGTH_OF_LONG && (dval || allow_errors == 1)); digits++, ptr…
2916 if (digits >= MAX_LENGTH_OF_LONG) {
2949 if (digits == MAX_LENGTH_OF_LONG - 1) {
2950 int cmp = strcmp(&ptr[-digits], long_min_digits);
/PHP-7.0/
H A DUPGRADING247 * Invalid octal literals (containing digits larger than 7) now produce compile
252 Previously the invalid digits (and any following valid digits) were simply
253 ignored. As such $i previously held the value 7, because the last two digits
H A Dphp.ini-development204 ; The number of significant digits displayed in floating point numbers.
286 ; digits after the floating point. The default value ensures that when floats
1300 ; Number of decimal digits for all bcmath functions.
H A Dphp.ini-production204 ; The number of significant digits displayed in floating point numbers.
286 ; digits after the floating point. The default value ensures that when floats
1300 ; Number of decimal digits for all bcmath functions.
/PHP-7.0/ext/pcre/pcrelib/doc/
H A Dpcre.txt188 followed by the two digits 10, at the domain cam.ac.uk.
1477 repeated digits. For DFA matching, this means that only one possible
2253 hexadecimal digits, in which case the hexadecimal number defines the
2445 29 (?R or (?[+-]digits must be followed by )
5100 three octal digits are ever read.
5872 alnum letters and digits
5877 digit decimal digits (same as \d)
5885 xdigit hexadecimal digits
6425 digits.
6467 digits, or digits enclosed in <>, followed by either ! or ?. When it
[all …]
/PHP-7.0/ext/intl/doc/
H A DTutorial.txt238 numeric value of substrings of digits. This is a way to get '100' to sort AFTER '2'.
/PHP-7.0/ext/pcre/pcrelib/
H A DNEWS78 . Perl no longer allows group names to start with digits, so I have made this
288 The version number has been expanded to 3 digits as it is clear that the rate
H A DChangeLog120 31. Added a check for integer overflow in conditions (?(<digits>) and
121 (?(R<digits>). This omission was discovered by Karl Skomski with the LLVM
737 36. Perl no longer allows group names to start with digits, so I have made this
2797 digits. I have, however, made the messages clearer.
3170 (a) (?-n) (where n is a string of digits) is a relative subroutine or
4618 hexadecimal digits in the pattern. This is silly, because it handles
4623 character types table is still used for matching digits in subject
5136 digits, spaces, or word characters. Such characters always match \D, \S,
5386 09 are not valid octal constants. Single digits will be used for minor values
5792 where "ddd" means "one or more decimal digits".

Completed in 184 milliseconds

123