Home
last modified time | relevance | path

Searched refs:digit (Results 1 – 25 of 47) sorted by relevance

12

/php-src/ext/ctype/tests/
H A Dctype_xdigit_variation2.phpt26 character code 48 is a hexadecimal 'digit'
27 character code 49 is a hexadecimal 'digit'
28 character code 50 is a hexadecimal 'digit'
29 character code 51 is a hexadecimal 'digit'
30 character code 52 is a hexadecimal 'digit'
31 character code 53 is a hexadecimal 'digit'
32 character code 54 is a hexadecimal 'digit'
33 character code 55 is a hexadecimal 'digit'
34 character code 56 is a hexadecimal 'digit'
35 character code 57 is a hexadecimal 'digit'
[all …]
H A Dctype_digit_variation2.phpt18 echo "character code $i is a numeric digit\n";
26 character code 48 is a numeric digit
27 character code 49 is a numeric digit
28 character code 50 is a numeric digit
29 character code 51 is a numeric digit
30 character code 52 is a numeric digit
31 character code 53 is a numeric digit
32 character code 54 is a numeric digit
33 character code 55 is a numeric digit
34 character code 56 is a numeric digit
[all …]
/php-src/ext/mbstring/libmbfl/filters/
H A Dmbfilter_htmlent.c368 unsigned char digit = *digits++; in mb_htmlent_to_wchar() local
369 if (digit >= '0' && digit <= '9') { in mb_htmlent_to_wchar()
370 value = (value * 16) + (digit - '0'); in mb_htmlent_to_wchar()
371 } else if (digit >= 'A' && digit <= 'F') { in mb_htmlent_to_wchar()
372 value = (value * 16) + (digit - 'A' + 10); in mb_htmlent_to_wchar()
373 } else if (digit >= 'a' && digit <= 'f') { in mb_htmlent_to_wchar()
374 value = (value * 16) + (digit - 'a' + 10); in mb_htmlent_to_wchar()
385 unsigned char digit = *digits++; in mb_htmlent_to_wchar() local
386 if (digit >= '0' && digit <= '9') { in mb_htmlent_to_wchar()
387 value = (value * 10) + (digit - '0'); in mb_htmlent_to_wchar()
/php-src/ext/date/tests/
H A Didate_variation6.phpt11 echo "\n-- Testing idate() function for 2 digit year having no zero as starting number --\n";
15 echo "\n-- Testing idate() function for 2 digit year having zero as starting number --\n";
22 -- Testing idate() function for 2 digit year having no zero as starting number --
25 -- Testing idate() function for 2 digit year having zero as starting number --
H A Dgmstrftime_variation17.phpt12 echo "\n-- Testing gmstrftime() function with Day of the month as decimal single digit format --\n";
21 -- Testing gmstrftime() function with Day of the month as decimal single digit format --
H A Dstrftime_variation17.phpt12 echo "\n-- Testing strftime() function with Day of the month as decimal single digit format --\n";
20 -- Testing strftime() function with Day of the month as decimal single digit format --
H A Dgmstrftime_variation18.phpt18 echo "\n-- Testing gmstrftime() function with Day of the month as decimal single digit format --\n";
27 -- Testing gmstrftime() function with Day of the month as decimal single digit format --
H A Dstrftime_variation18.phpt18 echo "\n-- Testing strftime() function with Day of the month as decimal single digit format --\n";
26 -- Testing strftime() function with Day of the month as decimal single digit format --
H A Dbug49585.phpt2 Bug #49585 (date_format buffer not long enough for >4 digit years)
H A Dbug64157.phpt14 A two digit second could not be found
H A Dgmdate_variation7.phpt27 echo "\n-- Testing gmdate() function with 2 digit representation year format --\n";
50 -- Testing gmdate() function with 2 digit representation year format --
H A Dbug54597.phpt2 Bug #54597 (incorrect years for DateTime objects created with 4-digit years)
H A Dbug80483.phpt2 Bug #80483 (DateTime Object with 5-digit year can't unserialized)
/php-src/ext/opcache/tests/jit/
H A Dgh11917.phpt27 $digit = $val[$i] & $mask;
41 $digit |= ($val[$i] & $tempmask) << $remaining;
47 $vals[] = $digit;
/php-src/ext/mbstring/tests/
H A Dmb_ereg_replace_callback.phpt17 echo mb_ereg_replace_callback('(?<word>\w+) (?<digit>\d+).*', function ($m) {
18 return sprintf("%s-%s", $m['digit'], $m['word']);
/php-src/ext/bcmath/libbcmath/src/
H A Doutput.c43 long digit; member
139 temp->digit = bc_num2long(cur_dig); in bc_out_num()
152 (*out_char)(ref_str[(int) temp->digit]); in bc_out_num()
154 bc_out_long(temp->digit, max_o_digit->n_len, 1, out_char); in bc_out_num()
H A Ddiv.c45 static void _one_mult(unsigned char *num, size_t size, int digit, unsigned char *result) in _one_mult() argument
50 if (digit == 0) { in _one_mult()
53 if (digit == 1) { in _one_mult()
62 value = *nptr-- * digit + carry; in _one_mult()
/php-src/ext/standard/tests/strings/
H A Dstrnatcmp_leftalign.phpt7 echo "-- Testing strnatcmp() function whitespace, left-align, digit --\n";
19 -- Testing strnatcmp() function whitespace, left-align, digit --
H A Dvfprintf_basic.phpt28 writeAndDump( $fp, "%d digit", array( '54' ) );
52 string(8) "54 digit"
/php-src/Zend/tests/zend_ini/
H A Dzend_ini_parse_quantity_overflow.phpt13 $digit = intval($s[strlen($s)-1]);
16 if ($digit === 9) {
20 return $prefix . strval($digit+1);
/php-src/Zend/tests/grammar/
H A Dbug78441.phpt2 Bug #78441 (Parse error due to heredoc identifier followed by digit)
/php-src/ext/json/tests/
H A Dpass001.phpt33 \"digit\": \"0123456789\",
116 "digit": "0123456789",
207 ["digit"]=>
345 ["digit"]=>
426 …,"alpha":"abcdefghijklmnopqrstuvwyz","ALPHA":"ABCDEFGHIJKLMNOPQRSTUVWYZ","digit":"0123456789","spe…
428 …,"alpha":"abcdefghijklmnopqrstuvwyz","ALPHA":"ABCDEFGHIJKLMNOPQRSTUVWYZ","digit":"0123456789","spe…
487 ["digit"]=>
625 ["digit"]=>
H A Dpass001.1.phpt39 \"digit\": \"0123456789\",
127 "digit": "0123456789",
224 ["digit"]=>
405 ["digit"]=>
527 …,"alpha":"abcdefghijklmnopqrstuvwyz","ALPHA":"ABCDEFGHIJKLMNOPQRSTUVWYZ","digit":"0123456789","spe…
529 …,"alpha":"abcdefghijklmnopqrstuvwyz","ALPHA":"ABCDEFGHIJKLMNOPQRSTUVWYZ","digit":"0123456789","spe…
590 ["digit"]=>
771 ["digit"]=>
H A Dpass001.1_64bit.phpt43 \"digit\": \"0123456789\",
131 "digit": "0123456789",
228 ["digit"]=>
409 ["digit"]=>
531 …,"alpha":"abcdefghijklmnopqrstuvwyz","ALPHA":"ABCDEFGHIJKLMNOPQRSTUVWYZ","digit":"0123456789","spe…
533 …,"alpha":"abcdefghijklmnopqrstuvwyz","ALPHA":"ABCDEFGHIJKLMNOPQRSTUVWYZ","digit":"0123456789","spe…
594 ["digit"]=>
775 ["digit"]=>
/php-src/ext/pcre/tests/
H A Dmatch_flags3.phpt44 Warning: preg_match(): Compilation failed: %s name must start with a non-digit at offset %d in %sma…

Completed in 45 milliseconds

12