Home
last modified time | relevance | path

Searched refs:hexadecimal (Results 51 – 75 of 96) sorted by relevance

1234

/php-src/ext/standard/tests/file/
H A Dfscanf_variation39.phpt33 0x123B, // integer as hexadecimal
37 -0x80000000, // max negative integer as hexadecimal
38 0x7fffffff, // max positive integer as hexadecimal
39 0x7FFFFFFF, // max positive integer as hexadecimal
/php-src/ext/standard/tests/general_functions/
H A Dis_int.phpt19 0x123B, // integer as hexadecimal
23 -0x80000000, // max negative integer as hexadecimal
24 0x7fffffff, // max positive integer as hexadecimal
25 0x7FFFFFFF, // max positive integer as hexadecimal
H A Dis_int_64bit.phpt21 0x123B, // integer as hexadecimal
25 -0x80000000, // max negative integer as hexadecimal
26 0x7fffffff, // max positive integer as hexadecimal
27 0x7FFFFFFF, // max positive integer as hexadecimal
H A Dvar_export-locale.phpt27 0x123B, // integer as hexadecimal
31 -0x7fffffff - 1, // max negative integer as hexadecimal
32 '0x7fffffff', // max positive integer as hexadecimal
33 0x7FFFFFFF, // max positive integer as hexadecimal
H A Dvar_export-locale_32.phpt27 0x123B, // integer as hexadecimal
31 -0x7fffffff - 1, // max negative integer as hexadecimal
32 '0x7fffffff', // max positive integer as hexadecimal
33 0x7FFFFFFF, // max positive integer as hexadecimal
/php-src/ext/standard/tests/array/
H A Darray_sum_variation2.phpt7 * integer, octal, hexadecimal, maximum and minimum integer values & mixed of all integers
H A Duasort_variation4.phpt7 * integer, octal, hexadecimal & float
/php-src/
H A D.gitattributes1 # Replace $Id$ strings with 40-character hexadecimal blob object name.
/php-src/ext/standard/tests/strings/
H A Dsprintf_f_2.phpt51 var_dump(sprintf("%%x = '%x'", $n)); // hexadecimal representation (lower-case)
52 var_dump(sprintf("%%X = '%X'", $n)); // hexadecimal representation (upper-case)
H A Dstr_split_variation7.phpt21 0x1A, //hexadecimal number
H A Dstr_split_variation6.phpt19 0x1A, //hexadecimal number
H A Dchunk_split_variation5.phpt26 0x1A, //hexadecimal number
H A Dmd5_file.phpt51 /* Normal operation with hexadecimal output */
H A Dstripos_variation1.phpt59 "\x23", //hexadecimal numeric string
H A Dstrrchr_variation1.phpt60 "\x23", //hexadecimal numeric string
/php-src/ext/ctype/tests/
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_graph_variation3.phpt28 "03F", // hexadecimal 'digits'
H A Dctype_cntrl_variation3.phpt28 "03F", // hexadecimal 'digits'
/php-src/ext/standard/
H A Dhtml.c677 int hexadecimal = (**buf == 'x' || **buf == 'X'); /* TODO: XML apparently disallows "X" */ in process_numeric_entity() local
680 if (hexadecimal) in process_numeric_entity()
685 if ((hexadecimal && !isxdigit(**buf)) || in process_numeric_entity()
686 (!hexadecimal && !isdigit(**buf))) { in process_numeric_entity()
690 code_l = ZEND_STRTOL(*buf, &endptr, hexadecimal ? 16 : 10); in process_numeric_entity()

Completed in 27 milliseconds

1234