Home
last modified time | relevance | path

Searched refs:c2 (Results 26 – 50 of 107) sorted by relevance

12345

/php-src/ext/mysqli/tests/bind_insert/
H A Dchar_text_big_types.phpt16 mysqli_query($link,"CREATE TABLE insert_bind_char_text_long(c1 char(10), c2 text)");
29 mysqli_stmt_bind_result($stmt, $c1, $c2);
34 $test[] = ($a2 == $c2) ? "32K String ok" : "32K String failed";
H A Dchar_text_types.phpt16 mysqli_query($link,"CREATE TABLE insert_bind_char_text(c1 char(10), c2 text)");
26 mysqli_stmt_bind_result($stmt, $c1, $c2);
30 $test = array($c1,$c2);
/php-src/ext/curl/tests/
H A Dbug79199.phpt10 $c2 = curl_copy_handle($c1);
11 curl_close($c2);
/php-src/ext/gd/tests/
H A Dlibgd00106.phpt10 $c2 = imagecolorat($im, 1,2);
13 if ($c1 == 0xFFFFFF && $c2 == 0 && $c3 == 0 && $c4 == 0) {
/php-src/ext/ctype/tests/
H A Dctype_digit_basic.phpt12 $c2 = 'abc123';
15 var_dump(ctype_digit($c2));
H A Dctype_alnum_basic.phpt12 $c2 = ' \t*@';
15 var_dump(ctype_alnum($c2));
H A Dctype_alpha_basic.phpt12 $c2 = "Hello, World!";
15 var_dump(ctype_alpha($c2));
H A Dctype_punct_basic.phpt12 $c2 = 'hello, world!';
15 var_dump(ctype_punct($c2));
H A Dctype_xdigit_basic.phpt11 $c2 = 'face 034';
14 var_dump(ctype_xdigit($c2));
H A Dctype_graph_basic.phpt12 $c2 = "Hello, world!\n";
15 var_dump(ctype_graph($c2));
H A Dctype_lower_basic.phpt12 $c2 = "Hello, world!\n";
15 var_dump(ctype_lower($c2));
H A Dctype_upper_basic.phpt12 $c2 = "Hello, World!\n";
15 var_dump(ctype_upper($c2));
H A Dctype_cntrl_basic.phpt12 $c2 = "Hello, World!\n";
15 var_dump(ctype_cntrl($c2));
H A Dctype_space_basic.phpt14 $c2 = "Hello, world!\n";
15 var_dump(ctype_space($c2));
H A Dctype_print_basic.phpt12 $c2 = null;
15 var_dump(ctype_print($c2));
/php-src/ext/mysqli/tests/bind_fetch/
H A Dinteger_types.phpt23 c2 int unsigned,
35 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
39 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A Dsmallint_types.phpt23 c2 smallint unsigned,
35 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
39 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A Dtinyint_types.phpt23 c2 tinyint unsigned,
35 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
39 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A Dmysql_functions.phpt18 mysqli_stmt_bind_result($stmt, $c0, $c1, $c2);
24 $test = array($c0, $c1, $c2);
/php-src/ext/mbstring/libmbfl/filters/
H A Dmbfilter_qprint.c261 unsigned char c2 = *p++; in mb_qprint_to_wchar() local
263 if (hex2code_map[c2] >= 0 && p < e) { in mb_qprint_to_wchar()
267 *out++ = hex2code_map[c2] << 4 | hex2code_map[c3]; in mb_qprint_to_wchar()
270 *out++ = c2; in mb_qprint_to_wchar()
273 } else if (c2 == '\r' && p < e) { in mb_qprint_to_wchar()
279 } else if (c2 != '\n') { in mb_qprint_to_wchar()
281 *out++ = c2; in mb_qprint_to_wchar()
/php-src/ext/date/lib/
H A Dtimelib.c262 int c1, c2; in timelib_strcasecmp() local
271 c2 = timelib_tolower(*(unsigned char *)s2++); in timelib_strcasecmp()
272 if (c1 != c2) { in timelib_strcasecmp()
273 return c1 - c2; in timelib_strcasecmp()
285 int c1, c2; in timelib_strncasecmp() local
293 c2 = timelib_tolower(*(unsigned char *)s2++); in timelib_strncasecmp()
294 if (c1 != c2) { in timelib_strncasecmp()
295 return c1 - c2; in timelib_strncasecmp()
/php-src/Zend/tests/type_declarations/
H A Dtyped_properties_052.phpt13 public ?Foo\C $c2;
32 ["c2"]=>
/php-src/Zend/tests/
H A Dbug30702.phpt13 public $c2=bar::C2;
29 ["c2"]=>
/php-src/ext/standard/
H A Dcrypt_blowfish.c385 unsigned int tmp, c1, c2, c3, c4; in BF_decode() local
389 BF_safe_atoi64(c2, *sptr++); in BF_decode()
390 *dptr++ = (c1 << 2) | ((c2 & 0x30) >> 4); in BF_decode()
394 *dptr++ = ((c2 & 0x0F) << 4) | ((c3 & 0x3C) >> 2); in BF_decode()
409 unsigned int c1, c2; in BF_encode() local
420 c2 = *sptr++; in BF_encode()
421 c1 |= c2 >> 4; in BF_encode()
423 c1 = (c2 & 0x0f) << 2; in BF_encode()
429 c2 = *sptr++; in BF_encode()
430 c1 |= c2 >> 6; in BF_encode()
[all …]
/php-src/ext/spl/tests/
H A Dspl_autoload_bug48541.phpt28 $c2 = $a2;
30 spl_autoload_register($c2);

Completed in 40 milliseconds

12345