Home
last modified time | relevance | path

Searched refs:bc (Results 1 – 25 of 38) sorted by relevance

12

/php-src/ext/intl/tests/
H A Dgrapheme_empty.phpt22 var_dump(grapheme_strpos("äbc", ""));
23 var_dump(grapheme_strpos("äbc", "", -1));
24 var_dump(grapheme_stripos("äbc", ""));
25 var_dump(grapheme_stripos("äbc", "", -1));
26 var_dump(grapheme_strrpos("äbc", ""));
27 var_dump(grapheme_strrpos("äbc", "", -1));
28 var_dump(grapheme_strripos("äbc", ""));
30 var_dump(grapheme_strstr("äbc", ""));
32 var_dump(grapheme_stristr("äbc", ""));
57 string(4) "äbc"
[all …]
H A Dgrapheme.phpt86 array( "a" . $char_a_ring_nfd . "bc", $char_a_ring_nfd . "bc", 1 ),
446 array( "abc", "bc", "bc" ),
457 array( "a" . $char_a_ring_nfd . "bc", "b", "bc" ),
461 array( "a" . $char_a_ring_nfd . "bc", $char_a_ring_nfd . "bc", $char_a_ring_nfd . "bc" ),
530 array( "a" . $char_a_ring_nfd . "bc", "B", "bc" ),
534 array( "a" . $char_a_ring_nfd . "bc", $char_A_ring_nfd . "bc", $char_a_ring_nfd . "bc" ),
990 substring of "abc" from "1" - grapheme_substr = bc == bc
1052 find "b" in "abc" - grapheme_strstr = bc == bc
1056 find "bc" in "abc" - grapheme_strstr = bc == bc
1066 find "b" in "aa%CC%8Abc" - grapheme_strstr = bc == bc
[all …]
H A Dgrapheme2.phpt86 array( "a" . $char_a_ring_nfd . "bc", $char_a_ring_nfd . "bc", 1 ),
442 array( "abc", "bc", "bc" ),
453 array( "a" . $char_a_ring_nfd . "bc", "b", "bc" ),
457 array( "a" . $char_a_ring_nfd . "bc", $char_a_ring_nfd . "bc", $char_a_ring_nfd . "bc" ),
518 array( "a" . $char_a_ring_nfd . "bc", "B", "bc" ),
522 array( "a" . $char_a_ring_nfd . "bc", $char_A_ring_nfd . "bc", $char_a_ring_nfd . "bc" ),
978 substring of "abc" from "1" - grapheme_substr = bc == bc
1040 find "b" in "abc" - grapheme_strstr = bc == bc
1044 find "bc" in "abc" - grapheme_strstr = bc == bc
1054 find "b" in "aa%CC%8Abc" - grapheme_strstr = bc == bc
[all …]
/php-src/ext/standard/tests/strings/
H A Dhtmlspecialchars_basic.phpt9 $s3 = "a>,\<bc<>\"&\n";
10 $s4 = "a\'\'&bc<>\"&\n";
58 Test 3: a&gt;,\&lt;bc&lt;&gt;&quot;&amp;
59 Test 4: a\&#039;\&#039;&amp;bc&lt;&gt;&quot;&amp;
63 Test 8: a&gt;,\&lt;bc&lt;&gt;"&amp;
64 Test 9: a\'\'&amp;bc&lt;&gt;"&amp;
68 Test 13: a&gt;,\&lt;bc&lt;&gt;&quot;&amp;
69 Test 14: a\'\'&amp;bc&lt;&gt;&quot;&amp;
73 Test 18: a&gt;,\&lt;bc&lt;&gt;&quot;&amp;
74 Test 19: a\&#039;\&#039;&amp;bc&lt;&gt;&quot;&amp;
[all …]
H A Dsubstr_compare.phpt8 var_dump(substr_compare("abcde", "bc", 1, 2));
11 var_dump(substr_compare("abcde", "bc", 1, 3) > 0);
H A Dstrtr_variation1.phpt60 string(3) "1bc"
69 string(3) "1bc"
78 1bc
H A Dsubstr.phpt112 string(2) "bc"
125 string(2) "bc"
134 string(2) "bc"
143 string(2) "bc"
152 string(2) "bc"
H A Dlevenshtein_bug_16473.phpt6 var_dump(levenshtein('a', 'bc'));
H A Dstrtolower.phpt242 bc => bc
H A Dstrtoupper1.phpt245 bc => bc
/php-src/Zend/
H A Dzend_strtod.c2292 (x, bc) U *x; BCinfo *bc; in sulp() argument
2314 (rv, s0, bc) in bigcomp() argument
2535 BCinfo bc; local
2562 sign = nz0 = nz1 = nz = bc.dplen = bc.uflchk = 0;
2611 bc.dp0 = bc.dp1 = s - s0;
2636 bc.dplen = bc.dp1 - bc.dp0;
2642 bc.dp1 = bc.dp0 + bc.dplen;
2856 bc.rounding = bc.rounding == 2 ? 0 : 2;
3003 if (--j < bc.dp1 && j >= bc.dp0)
3189 if (!((bc.rounding>>1) ^ bc.dsign))
[all …]
/php-src/ext/iconv/tests/
H A Dbug77147.phpt8 Feedback-ID: 014a93e3-1f5e-4df6-b347-6b59f0f746b8:b5891053-55d1-45bc-a0b5-47a7a9b59687:email:epslh1�
16 …string(86) "014a93e3-1f5e-4df6-b347-6b59f0f746b8:b5891053-55d1-45bc-a0b5-47a7a9b59687:email:epslh1"
/php-src/ext/bcmath/libbcmath/
H A DREADME.md8 for GNU bc and GNU dc.
23 The math routines of GNU bc become more generally useful in a library form. By
24 separating the BCMATH library from GNU bc, GNU bc can be under the GPL and
/php-src/ext/dom/lexbor/lexbor/core/
H A Ddiyfp.h223 uint64_t a, b, c, d, ac, bc, ad, bd, tmp; in lexbor_diyfp_mul()
231 bc = b * c; in lexbor_diyfp_mul()
235 tmp = (bd >> 32) + (ad & 0xffffffff) + (bc & 0xffffffff); in lexbor_diyfp_mul()
241 return lexbor_diyfp(ac + (ad >> 32) + (bc >> 32) + (tmp >> 32), in lexbor_diyfp_mul()
/php-src/ext/bcmath/
H A Dconfig.m42 [whether to enable bc style precision math functions],
4 [Enable bc style precision math functions])])
H A Dconfig.w323 ARG_ENABLE("bcmath", "bc style precision math functions", "yes");
/php-src/ext/standard/tests/streams/
H A Dstream_get_contents_negative_length.phpt18 string(2) "bc"
/php-src/ext/mbstring/tests/
H A Dbug43993.phpt13 var_dump(mb_substr_count("ababababab", "bc"));
/php-src/ext/pcre/tests/
H A Dpreg_replace2.phpt17 var_dump(preg_replace(array('/\s+/', '~[b-d]~'), array('$'), array('x y', 'bd bc')));
/php-src/ext/standard/tests/general_functions/
H A D003.phpt48 $n += test_me("bug #16473", 2, "a", "bc");
/php-src/ext/filter/tests/
H A D056.phpt17 'a.-bc.com',
H A D015.phpt25 'http://a.-bc.com',
/php-src/Zend/tests/
H A Dconstant_expressions_dynamic.phpt39 const T_20 = null ?: (T_20x . 'bc');
/php-src/ext/standard/tests/file/windows_links/
H A Dreadlink_compat.phpt2 Test readlink bc behaviour on Windows
/php-src/ext/date/lib/
H A Dparse_tz.c103 tz->bc = (**tzf == '\1'); in read_php_preamble()
141 tz->bc = 0; in read_tzif_preamble()
518 printf("BC: %s\n", tz->bc ? "no" : "yes"); in timelib_dump_tzinfo()

Completed in 74 milliseconds

12