Home
last modified time | relevance | path

Searched refs:cutoff (Results 1 – 3 of 3) sorted by relevance

/php-src/ext/intl/collator/
H A Dcollator_is_numeric.c118 zend_ulong cutoff; in collator_u_strtol() local
169 cutoff = neg ? -(zend_ulong)ZEND_LONG_MIN : ZEND_LONG_MAX; in collator_u_strtol()
170 cutlim = cutoff % (zend_ulong)base; in collator_u_strtol()
171 cutoff /= (zend_ulong)base; in collator_u_strtol()
184 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in collator_u_strtol()
/php-src/ext/standard/
H A Dmath.c768 zend_long cutoff; in _php_math_basetozval() local
786 cutoff = ZEND_LONG_MAX / base; in _php_math_basetozval()
811 if (num < cutoff || (num == cutoff && c <= cutlim)) { in _php_math_basetozval()
/php-src/ext/standard/tests/strings/
H A Dsprintf_f_2.phpt67 var_dump(sprintf("[%10.10s]", $t)); // left-justification but with a cutoff of 10 characters

Completed in 39 milliseconds