Home
last modified time | relevance | path

Searched refs:c1 (Results 76 – 100 of 119) sorted by relevance

12345

/php-src/ext/mysqli/tests/
H A D048.phpt30 $stmt->bind_result($c1, $c2, $c3, $c4, $c5, $c6, $c7, $c8, $c9, $c10, $c11);
35 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7,$c8,$c9,$c10,$c11);
/php-src/tests/classes/
H A Dconstants_error_004.phpt7 const c1 = D::hello;
H A Dconstants_basic_001.phpt12 const c1 = 1, c2 = 1.5;
33 var_dump(C::c1);
/php-src/ext/xsl/tests/
H A Dxslt001.phpt18 a1 b1 c1 <br/>
H A Dxslt003.phpt19 a1 b1 c1 <br/>
H A Dxslt006.phpt19 a1 b1 c1 <br/>
H A Dxslt007.phpt20 a1 b1 c1 <br/>
H A Dxslt008-mb.phpt25 a1 b1 c1 <br/>
H A Dxslt008.phpt25 a1 b1 c1 <br/>
H A Dxslt005.phpt26 a1 b1 c1 <br/>
H A Dxslt004.phpt25 a1 b1 c1 <br/>
H A Dxslt002.phpt25 a1 b1 c1 <br>
H A Dxslt012.phpt48 a1 b1 c1 <br/>
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_ppc.lua1435 map_op[b1.."_1"] = tohex(0x40800000 + c1).."K"
1436 map_op[b1.."y_1"] = tohex(0x40a00000 + c1).."K"
1437 map_op[b1.."l_1"] = tohex(0x40800001 + c1).."K"
1438 map_op[b1.."_2"] = tohex(0x40800000 + c1).."-XK"
1439 map_op[b1.."y_2"] = tohex(0x40a00000 + c1).."-XK"
1440 map_op[b1.."l_2"] = tohex(0x40800001 + c1).."-XK"
1442 map_op[b1.."lr_0"] = tohex(0x4c800020 + c1)
1443 map_op[b1.."lrl_0"] = tohex(0x4c800021 + c1)
1444 map_op[b1.."ctr_0"] = tohex(0x4c800420 + c1)
1445 map_op[b1.."ctrl_0"] = tohex(0x4c800421 + c1)
[all …]
/php-src/ext/standard/
H A Diptc.c121 int c1, c2; in php_iptc_skip_variable() local
123 if ((c1 = php_iptc_get1(fp, spool, spoolbuf)) == EOF) return M_EOI; in php_iptc_skip_variable()
127 length = (((unsigned char) c1) << 8) + ((unsigned char) c2); in php_iptc_skip_variable()
/php-src/ext/mbstring/libmbfl/filters/
H A Dmbfilter_utf16.c496 unsigned char c1 = *p++; in mb_utf16_to_wchar() local
498 uint16_t n = (c1 << 8) | c2; in mb_utf16_to_wchar()
526 unsigned char c1 = *p++; in mb_utf16be_to_wchar_default() local
528 uint16_t n = (c1 << 8) | c2; in mb_utf16be_to_wchar_default()
604 unsigned char c1 = *p++; in mb_utf16le_to_wchar_default() local
606 uint16_t n = (c2 << 8) | c1; in mb_utf16le_to_wchar_default()
732 unsigned char c1 = *p++; in mb_utf16be_to_wchar_avx2() local
735 if (c1 & 0x4 || len < 4) { in mb_utf16be_to_wchar_avx2()
745 uint16_t n = (c1 << 8) | c2; in mb_utf16be_to_wchar_avx2()
918 unsigned char c1 = *p++; in mb_utf16le_to_wchar_avx2() local
[all …]
/php-src/Zend/tests/
H A Dbug76860_2.phpt16 public static $c = "c1";
/php-src/ext/mysqli/tests/bind_fetch/
H A Didentical_fetch_row.phpt19 c1 tinyint, c2 smallint,
/php-src/ext/gd/libgd/
H A Dgdkanji.c230 register unsigned char c1 = *p1; in SJIStoJIS() local
233 register int rowOffset = c1 < 160 ? 112 : 176; in SJIStoJIS()
236 *p1 = ((c1 - rowOffset) << 1) - adjust; in SJIStoJIS()
/php-src/ext/dom/tests/
H A Ddom_test.inc14 <row><entry>a1</entry><entry morerows='1'>b1</entry><entry>c1</entry></row>
H A Ddom007.phpt23 <course cid="c1">
H A Ddom001.phpt198 <row><entry>a1</entry><entry morerows="1">b1</entry><entry>c1</entry></row>
257 <row><entry>a1</entry><entry morerows="1">b1</entry><entry>c1</entry></row>
/php-src/ext/standard/tests/strings/
H A Dstrtolower.phpt247 c1 => c1
H A Dstrtoupper1.phpt250 c1 => c1
/php-src/Zend/
H A Dzend_operators.c3180 int c1, c2; in zend_binary_strcasecmp() local
3190 if (c1 != c2) { in zend_binary_strcasecmp()
3191 return c1 - c2; in zend_binary_strcasecmp()
3202 int c1, c2; in zend_binary_strncasecmp() local
3211 if (c1 != c2) { in zend_binary_strncasecmp()
3212 return c1 - c2; in zend_binary_strncasecmp()
3223 int c1, c2; in zend_binary_strcasecmp_l() local
3233 if (c1 != c2) { in zend_binary_strcasecmp_l()
3234 return c1 - c2; in zend_binary_strcasecmp_l()
3245 int c1, c2; in zend_binary_strncasecmp_l() local
[all …]

Completed in 48 milliseconds

12345