Home
last modified time | relevance | path

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

123

/php-src/ext/ctype/tests/
H A Dctype_digit_variation2.phpt9 * valid decimal digits
H A Dctype_alnum_variation3.phpt27 "03F", // hexadecimal 'digits'
H A Dctype_print_variation3.phpt28 "03F", // hexadecimal 'digits'
H A Dctype_alpha_variation3.phpt28 "03F", // hexadecimal 'digits'
H A Dctype_lower_variation3.phpt28 "03F", // hexadecimal 'digits'
H A Dctype_punct_variation3.phpt28 "03F", // hexadecimal 'digits'
H A Dctype_space_variation3.phpt28 "03F", // hexadecimal 'digits'
H A Dctype_upper_variation3.phpt27 "03F", // hexadecimal 'digits'
H A Dctype_xdigit_variation2.phpt9 * valid hexadecimal 'digits'
H A Dctype_xdigit_variation3.phpt28 "03F", // hexadecimal 'digits'
H A Dctype_graph_variation3.phpt28 "03F", // hexadecimal 'digits'
H A Dctype_cntrl_variation3.phpt28 "03F", // hexadecimal 'digits'
/php-src/ext/standard/
H A Dmath.c843 static const char digits[] = "0123456789abcdefghijklmnopqrstuvwxyz"; in _php_math_longtobase() local
859 *--ptr = digits[value % base]; in _php_math_longtobase()
874 static const char digits[] = "0123456789abcdefghijklmnopqrstuvwxyz"; in _php_math_longtobase_pwr2() local
894 *--ptr = digits[value & ((1 << base_log2) - 1)]; in _php_math_longtobase_pwr2()
909 static const char digits[] = "0123456789abcdefghijklmnopqrstuvwxyz"; in _php_math_zvaltobase() local
930 *--ptr = digits[(int) fmod(fvalue, base)]; in _php_math_zvaltobase()
H A Dpack.c900 size_t digits = buf + sizeof(buf) - 1 - res; in PHP_FUNCTION() local
901 real_name = zend_string_concat2(name, namelen, res, digits); in PHP_FUNCTION()
H A Dvar_unserializer.re971 int digits = YYCURSOR - start - 3;
974 digits--;
978 if (digits >= MAX_LENGTH_OF_LONG - 1) {
979 if (digits == MAX_LENGTH_OF_LONG - 1) {
/php-src/ext/json/
H A Djson_scanner.re172 size_t digits = (size_t) (s->cursor - s->token - negative);
173 if (digits >= PHP_JSON_INT_MAX_LENGTH) {
174 if (digits == PHP_JSON_INT_MAX_LENGTH) {
/php-src/ext/mbstring/tests/
H A Dmb_encode_numericentity.phpt53 // Regression test; the old implementation could only emit decimal entities with about 7 digits
H A Dsjis_mobile_encodings.phpt318 // Regression test: Old implementation used to drop digits (0-9) and hash (#) if
/php-src/Zend/
H A Dzend_strtod.c4508 char *digits, *dst, *src; in zend_gcvt() local
4516 digits = zend_dtoa(value, mode, ndigit, &decpt, &sign, NULL); in zend_gcvt()
4522 …snprintf(buf, ndigit + 1, "%s%s", (sign && *digits == 'I') ? "-" : "", *digits == 'I' ? "INF" : "N… in zend_gcvt()
4523 zend_freedtoa(digits); in zend_gcvt()
4540 src = digits; in zend_gcvt()
4576 src = digits; in zend_gcvt()
4583 for (i = 0, src = digits; i < decpt; i++) { in zend_gcvt()
4591 if (src == digits) { in zend_gcvt()
4595 for (i = decpt; digits[i] != '\0'; i++) { in zend_gcvt()
4596 *dst++ = digits[i]; in zend_gcvt()
[all …]
H A Dzend_operators.c3511 int digits = 0, dp_or_e = 0; local
3552 for (type = IS_LONG; !(digits >= MAX_LENGTH_OF_LONG && (dval || allow_errors)); digits++, ptr++) {
3573 if (digits >= MAX_LENGTH_OF_LONG) {
3613 if (digits == MAX_LENGTH_OF_LONG - 1) {
3614 int cmp = strcmp(&ptr[-digits], long_min_digits);
/php-src/ext/standard/tests/strings/
H A Dprintf.phpt675 Notice: printf(): Requested precision of 988 digits was truncated to PHP maximum of 53 digits in %s…
H A Dprintf_64bit.phpt675 Notice: printf(): Requested precision of 988 digits was truncated to PHP maximum of %d digits in %s…
/php-src/ext/mbstring/tests/data/
H A D8859-6.txt28 # 0x30..0x39 remapped to the ASCII digits (U+0030..U+0039) instead
29 # of the Arabic digits (U+0660..U+0669).
/php-src/main/
H A Dsnprintf.c382 const char *digits = (format == 'X') ? upper_digits : low_digits; in ap_php_conv_p2() local
385 *--p = digits[num & mask]; in ap_php_conv_p2()
/php-src/ext/dom/lexbor/lexbor/css/
H A Dproperty.h357 lxb_css_value_integer_t digits; member

Completed in 58 milliseconds

123