Home
last modified time | relevance | path

Searched refs:c1 (Results 101 – 125 of 231) sorted by last modified time

12345678910

/PHP-7.4/tests/classes/
H A Dconstants_error_004.phpt7 const c1 = D::hello;
H A Diterators_004.phpt8 class c1 {}
10 $obj = new c1();
/PHP-7.4/tests/basic/
H A Dbug73969.phpt13 class c1
26 c1::go();
30 #1 c1::go() called at [%s:23]
/PHP-7.4/ext/xsl/tests/
H A Dxslt006.phpt18 a1 b1 c1 <br/>
H A Dxslt001.phpt17 a1 b1 c1 <br/>
H A Dxslt002.phpt24 a1 b1 c1 <br>
H A Dxslt003.phpt18 a1 b1 c1 <br/>
H A Dxslt004.phpt24 a1 b1 c1 <br/>
H A Dxslt005.phpt25 a1 b1 c1 <br/>
H A Dxslt007.phpt19 a1 b1 c1 <br/>
H A Dxslt008-mb.phpt26 a1 b1 c1 <br/>
H A Dxslt008.phpt26 a1 b1 c1 <br/>
H A Dxslt012.phpt47 a1 b1 c1 <br/>
/PHP-7.4/ext/standard/tests/strings/
H A Dhtml_entity_decode_cp866.phpt344 BOX DRAWINGS LIGHT UP AND HORIZONTAL: &#x2534; => c1
H A Dhtml_entity_decode_iso8859-15.phpt216 LATIN CAPITAL LETTER A WITH ACUTE: &#xC1; => c1
217 &#xC1; => c1
H A Dhtml_entity_decode_win1251.phpt348 CYRILLIC CAPITAL LETTER BE: &#x411; => c1
H A Dhtml_entity_decode_iso8859-5.phpt216 CYRILLIC CAPITAL LETTER ES: &#x421; => c1
H A Dhtml_entity_decode_koi8-r.phpt344 CYRILLIC SMALL LETTER A: &#x430; => c1
H A Dhtml_entity_decode_macroman.phpt256 &#xA1; => c1
351 INVERTED EXCLAMATION MARK: &#xA1; => c1
H A Dbug49785.phpt219 string(2) "c1"
/PHP-7.4/ext/standard/tests/serialize/
H A Dbug62836_2.phpt5 $serialized_object='O:1:"A":4:{s:1:"b";O:1:"B":0:{}s:2:"b1";r:2;s:1:"c";O:1:"B":0:{}s:2:"c1";r:4;}';
32 [c1] => B Object
H A Dbug62836_1.phpt5 $serialized_object='O:1:"A":4:{s:1:"b";O:1:"B":0:{}s:2:"b1";r:2;s:1:"c";O:1:"B":0:{}s:2:"c1";r:4;}';
29 [c1] => B Object
/PHP-7.4/ext/standard/tests/array/
H A Dcount_symbol_table.phpt6 $c1 = 0;
10 $c1 = count($GLOBALS);
15 var_dump($c1 - $c2);
17 $c1 = count($GLOBALS);
18 var_dump($c1 - $c2);
/PHP-7.4/ext/standard/html_tables/mappings/
H A DROMAN.TXT15 # <c1.1> and Text Encoding Converter 2.0.
16 # b4,c1 2002-Dec-19 Update URLs, notes. Matches internal
/PHP-7.4/ext/standard/
H A Dcrypt_blowfish.c394 BF_safe_atoi64(c1, *sptr++); in BF_decode()
422 unsigned int c1, c2; in BF_encode() local
425 c1 = *sptr++; in BF_encode()
427 c1 = (c1 & 0x03) << 4; in BF_encode()
429 *dptr++ = BF_itoa64[c1]; in BF_encode()
434 c1 |= c2 >> 4; in BF_encode()
435 *dptr++ = BF_itoa64[c1]; in BF_encode()
436 c1 = (c2 & 0x0f) << 2; in BF_encode()
438 *dptr++ = BF_itoa64[c1]; in BF_encode()
443 c1 |= c2 >> 6; in BF_encode()
[all …]

Completed in 32 milliseconds

12345678910