Home
last modified time | relevance | path

Searched refs:p1 (Results 1 – 25 of 61) sorted by path

123

/PHP-8.1/Zend/tests/
H A Dbug40757.phpt6 private $p1='sadf';
23 [p1] => sadf
27 [p1] => sadf
/PHP-8.1/Zend/
H A Dzend_hash.c2630 Bucket *p1 = ht1->arData + idx1, *p2; in zend_hash_compare_impl() local
2634 if (Z_TYPE(p1->val) == IS_UNDEF) continue; in zend_hash_compare_impl()
2643 if (p1->h != p2->h) { in zend_hash_compare_impl()
2644 return p1->h > p2->h ? 1 : -1; in zend_hash_compare_impl()
2647 if (ZSTR_LEN(p1->key) != ZSTR_LEN(p2->key)) { in zend_hash_compare_impl()
2651 result = memcmp(ZSTR_VAL(p1->key), ZSTR_VAL(p2->key), ZSTR_LEN(p1->key)); in zend_hash_compare_impl()
2657 return p1->key != NULL ? 1 : -1; in zend_hash_compare_impl()
2662 if (p1->key == NULL) { /* numeric index */ in zend_hash_compare_impl()
2663 pData2 = zend_hash_index_find(ht2, p1->h); in zend_hash_compare_impl()
2668 pData2 = zend_hash_find(ht2, p1->key); in zend_hash_compare_impl()
[all …]
H A Dzend_object_handlers.c1683 zval *p1, *p2; in zend_std_compare_objects() local
1691 p1 = OBJ_PROP(zobj1, info->offset); in zend_std_compare_objects()
1694 if (Z_TYPE_P(p1) != IS_UNDEF) { in zend_std_compare_objects()
1698 ret = zend_compare(p1, p2); in zend_std_compare_objects()
H A Dzend_vm_trace_handlers.h54 static int zend_vm_trace_compare(const Bucket *p1, const Bucket *p2) in zend_vm_trace_compare() argument
56 if (Z_LVAL(p1->val) < Z_LVAL(p2->val)) { in zend_vm_trace_compare()
58 } else if (Z_LVAL(p1->val) > Z_LVAL(p2->val)) { in zend_vm_trace_compare()
H A Dzend_vm_trace_map.h46 static int zend_vm_trace_compare(const Bucket *p1, const Bucket *p2) in zend_vm_trace_compare() argument
48 if (Z_LVAL(p1->val) > Z_LVAL(p2->val)) { in zend_vm_trace_compare()
50 } else if (Z_LVAL(p1->val) < Z_LVAL(p2->val)) { in zend_vm_trace_compare()
/PHP-8.1/build/
H A Dphp_cxx_compile_stdcxx.m4802 pair (T1 p1, T2 p2)
803 : m1 {p1},
/PHP-8.1/ext/ffi/
H A Dffi.c1811 char *p1, *p2; in zend_ffi_cdata_do_operation() local
1815 p1 = (char*)(*(void**)cdata1->ptr); in zend_ffi_cdata_do_operation()
1818 p1 = cdata1->ptr; in zend_ffi_cdata_do_operation()
1829 (zend_long)(p1 - p2) / (zend_long)t1->size); in zend_ffi_cdata_do_operation()
/PHP-8.1/ext/ffi/tests/
H A D033.phpt9 $p1 = FFI::new("uint8_t[2]");
11 var_dump($p1, $p2);
13 $t1 = FFI::typeof($p1);
H A D034.phpt9 $p1 = FFI::new("uint8_t[2]");
12 var_dump(FFI::sizeof($p1), FFI::sizeof($p2), FFI::sizeof($p3));
13 var_dump(FFI::alignof($p1), FFI::alignof($p2), FFI::alignof($p3));
14 var_dump(FFI::sizeof(FFI::typeof($p1)), FFI::sizeof(FFI::typeof($p2)), FFI::sizeof(FFI::typeof($p3)…
15 var_dump(FFI::alignof(FFI::typeof($p1)), FFI::alignof(FFI::typeof($p2)), FFI::alignof(FFI::typeof($…
/PHP-8.1/ext/fileinfo/libmagic/
H A Dapprentice.c1223 cmpstrp(const void *p1, const void *p2) in cmpstrp() argument
1225 return strcmp(*RCAST(char *const *, p1), *RCAST(char *const *, p2)); in cmpstrp()
/PHP-8.1/ext/ftp/tests/
H A Dserver.inc426 $p1 = ($pasv_port-$p2)/((int) 1 << 8);
427 fputs($s, "227 Entering Passive Mode. (127,0,0,1,{$p1},{$p2})\r\n");
/PHP-8.1/ext/gd/libgd/
H A Dgd.c2867 int p1, p2; in gdImageCompare() local
2905 p1 = im1->trueColor ? gdImageTrueColorPixel(im1, x, y) : gdImagePalettePixel(im1, x, y); in gdImageCompare()
2908 if (gdImageRed(im1, p1) != gdImageRed(im2, p2)) { in gdImageCompare()
2912 if (gdImageGreen(im1, p1) != gdImageGreen(im2, p2)) { in gdImageCompare()
2916 if (gdImageBlue(im1, p1) != gdImageBlue(im2, p2)) { in gdImageCompare()
2922 if (gdImageAlpha(im1, p1) != gdImageAlpha(im2, p2)) { in gdImageCompare()
H A Dgdkanji.c246 han2zen (int *p1, int *p2) in han2zen() argument
248 int c = *p1; in han2zen()
379 int p1, p2, i, j; in do_convert()
425 p1 = from[i]; in do_convert()
426 if (p1 < 127) in do_convert()
427 to[j++] = p1; in do_convert()
428 else if ((p1 >= 161) && (p1 <= 223)) in do_convert()
431 to[j++] = p1; in do_convert()
437 to[j++] = p1 + 128; in do_convert()
462 int p1, p2, i, j; in do_check_and_conv() local
[all …]
/PHP-8.1/ext/gd/tests/
H A Dbug38179.phpt19 $p1 = imagecolorat($dst_tc, 3,3);
20 printf("%X\n", $p1);
H A Dcopy.phpt17 $p1 = imagecolorat($dst_tc, 3,3) == 0xff0000;
21 if ($p1 && $p2 && $p3) {
42 $p1 = $c1['red'] == 0xff && $c1['blue']==0x00 && $c1['green']==0x00;
46 if ($p1 && $p2 && $p3) {
71 $p1 = $c1['red'] == 0xff && $c1['blue']==0x00 && $c1['green']==0x00;
76 if ($p1 && $p2 && $p3) {
95 $p1 = imagecolorat($dst_tc, 3,3) == 0xff0000;
99 if ($p1 && $p2 && $p3) {
H A Dcopyresized.phpt27 $p1 = imagecolorat($im, $x, $y);
29 if (get_hexcolor($im, $p1) != get_hexcolor($dst, $p2)) {
H A Ddashedlines.phpt18 $p1 = imagecolorat($im, 0,5) == $r;
26 if ($p1 && $p2 && $p3 && $p4 && $p5) {
39 $p1 = imagecolorat($im, 2,0) == $r;
46 if ($p1 && $p2 && $p3 && $p4 && $p5 && $p6) {
59 $p1 = imagecolorat($im, 0,0) == $r;
66 if ($p1 && $p2 && $p3 && $p4 && $p5 && $p6) {
H A Dlines.phpt13 $p1 = imagecolorat($im, 0,5)==0x00ff00;
19 if ($p1 && $p2 && $p3) {
27 $p1 = imagecolorat($im, 0,0)==0x00ff00;
34 if ($p1 && $p2 && $p3) {
45 $p1 = imagecolorat($im, 0,0)==0x00ff00;
55 if ($p1 && $p2 && $p3) {
/PHP-8.1/ext/iconv/
H A Diconv.c1200 const char *p1; in _php_iconv_mime_decode() local
1227 p1 = str; in _php_iconv_mime_decode()
1233 switch (*p1) { in _php_iconv_mime_decode()
1248 spaces = p1; in _php_iconv_mime_decode()
1271 if (*p1 == '\r' || *p1 == '\n') { in _php_iconv_mime_decode()
1272 --p1; in _php_iconv_mime_decode()
1301 --p1; in _php_iconv_mime_decode()
1381 ++p1; in _php_iconv_mime_decode()
1487 if (*p1 != ' ' && *p1 != '\t') { in _php_iconv_mime_decode()
1488 --p1; in _php_iconv_mime_decode()
[all …]
/PHP-8.1/ext/intl/collator/
H A Dcollator_sort.c222 static int collator_cmp_sort_keys( const void *p1, const void *p2 ) in collator_cmp_sort_keys() argument
224 char* key1 = ((collator_sort_key_index_t*)p1)->key; in collator_cmp_sort_keys()
/PHP-8.1/ext/mbstring/
H A Dmbstring.c273 char *p1, *endp, *tmpstr; in php_mb_parse_encoding_list() local
290 p1 = tmpstr; in php_mb_parse_encoding_list()
292 char *comma = (char *) php_memnstr(p1, ",", 1, endp); in php_mb_parse_encoding_list()
296 while (p1 < p && (*p1 == ' ' || *p1 == '\t')) { in php_mb_parse_encoding_list()
297 p1++; in php_mb_parse_encoding_list()
300 while (p > p1 && (*p == ' ' || *p == '\t')) { in php_mb_parse_encoding_list()
305 if (strcasecmp(p1, "auto") == 0) { in php_mb_parse_encoding_list()
318 allow_pass_encoding ? php_mb_get_encoding_or_pass(p1) : mbfl_name2encoding(p1); in php_mb_parse_encoding_list()
322 … php_error_docref("ref.mbstring", E_WARNING, "INI setting contains invalid encoding \"%s\"", p1); in php_mb_parse_encoding_list()
324 zend_argument_value_error(arg_num, "contains invalid encoding \"%s\"", p1); in php_mb_parse_encoding_list()
[all …]
/PHP-8.1/ext/mysqli/tests/
H A Dbug42548.phpt27 $mysqli->query("DROP PROCEDURE IF EXISTS p1") or die($mysqli->error);
28 $mysqli->query("CREATE PROCEDURE p1() BEGIN SELECT 23; SELECT 42; END") or die($mysqli->error);
30 if ($mysqli->multi_query("CALL p1();"))
50 $mysqli->query("DROP PROCEDURE p1") or die($mysqli->error);
60 mysqli_query($link, "DROP PROCEDURE IF EXISTS p1");
/PHP-8.1/ext/oci8/tests/
H A Dbind_char_3.phpt24 "create or replace function bind_char_3_fn(p1 char) return char as begin return p1; end;",
H A Dbind_char_3_11gR1.phpt24 "create or replace function bind_char_3_fn(p1 char) return char as begin return p1; end;",
H A Dbind_char_4.phpt26 … "create or replace function bind_char_3_fn(p1 varchar2) return varchar2 as begin return p1; end;",

Completed in 193 milliseconds

123