/php-src/ext/standard/tests/strings/ |
H A D | htmlentities-utf-3.phpt | 46 for ($b2 = 0x80; $b2 < 0xBF; $b2++) { 47 $s = chr($b1).chr($b2); 55 for ($b2 = 0x80; $b2 < 0xBF; $b2++) { 56 $s = chr($b1).chr($b2)."\x80"; 59 $s = chr($b1).chr($b2)."\xBF"; 66 for ($b2 = 0x80; $b2 < 0xBF; $b2++) { 67 $s = chr($b1).chr($b2)."\x80\x80"; 70 $s = chr($b1).chr($b2)."\xBF\x80"; 73 $s = chr($b1).chr($b2)."\x80\xBF"; 76 $s = chr($b1).chr($b2)."\xBF\xBF";
|
H A D | strnatcmp_basic.phpt | 13 $b2 = "ABC10"; 24 var_dump(strnatcmp($a1, $b2)); 33 var_dump(strnatcmp($b1, $b2)); 45 var_dump(strnatcmp($c1, $b2));
|
H A D | bug65947.phpt | 9 $b2 = basename($filename); 10 if ($filename != $b2)
|
H A D | strtolower.phpt | 232 b2 => b2
|
H A D | strtoupper1.phpt | 235 b2 => b2
|
/php-src/ext/standard/tests/serialize/ |
H A D | serialization_arrays_005.phpt | 114 &string(12) "b2.0.changed" 120 &string(12) "b2.0.changed" 127 &string(12) "b2.0.changed" 135 string(12) "b2.1.changed" 205 string(10) "b2.changed" 252 &string(12) "b2.0.changed" 265 &string(12) "b2.0.changed" 267 &string(12) "b2.1.changed" 323 &string(12) "b2.0.changed" 336 &string(12) "b2.0.changed" [all …]
|
H A D | serialization_arrays_002.phpt | 16 $b[2] = "b2.changed"; 133 string(10) "b2.changed" 177 string(10) "b2.changed" 217 &string(10) "b2.changed" 219 &string(10) "b2.changed" 265 string(10) "b2.changed" 307 &string(10) "b2.changed" 309 &string(10) "b2.changed" 349 &string(10) "b2.changed" 353 &string(10) "b2.changed" [all …]
|
H A D | serialization_arrays_003.phpt | 16 $b[2] = "b2.changed"; 103 string(10) "b2.changed" 147 string(10) "b2.changed" 191 string(10) "b2.changed" 235 string(10) "b2.changed" 275 &string(10) "b2.changed" 277 &string(10) "b2.changed" 279 &string(10) "b2.changed"
|
H A D | serialization_arrays_004.phpt | 16 $b[2] = "b2.changed"; 91 string(10) "b2.changed" 149 string(10) "b2.changed" 210 &string(10) "b2.changed" 212 &string(10) "b2.changed" 214 &string(10) "b2.changed"
|
/php-src/ext/dom/tests/ |
H A D | gh11500.phpt | 17 $b2 = $a2->appendChild($dom->createElementNS('http://example.com', 'b2')); 26 var_dump($b2->namespaceURI); 41 $b2 = $dom->createElementNS('http://example.com', 'b2'); 43 $a2->appendChild($b2); 45 $b2 = $a2->appendChild($dom->createElementNS('http://example.com', 'b2')); 57 var_dump($b2->namespaceURI); 102 <root xmlns="http://example.com"><a1><b1/></a1><a2><b2/></a2></root> 110 …s="http://example.com"><b1><c1/></b1></a1><a2 xmlns="http://example.com"><b2><c2/></b2></a2></root> 120 <root xmlns="http://example.com"><a1><b1><c1/></b1></a1><a2><b2><c2/></b2></a2></root> 130 …s="http://example.com"><b1><c1/></b1></a1><a2 xmlns="http://example.com"><b2><c2/></b2></a2></root> [all …]
|
/php-src/Zend/tests/type_declarations/ |
H A D | typed_properties_094.phpt | 28 $b2 = new B2; 29 $r2 =& $b2->getRef(); 30 unset($b2);
|
H A D | typed_properties_059.phpt | 13 public ?int $b2; 23 ["b2"]=>
|
H A D | typed_properties_052.phpt | 12 public ?\B $b2; 30 ["b2"]=>
|
/php-src/ext/reflection/tests/ |
H A D | bug49719.phpt | 33 $b2 = new ReflectionClass('B2'); 34 $prop = $b2->getProperty('a'); 35 var_dump($prop->getValue(new b2));
|
/php-src/Zend/tests/ |
H A D | class_properties_static.phpt | 7 public $b2 = 1 << 2; 13 $f->b2,
|
/php-src/ext/reflection/tests/property_hooks/ |
H A D | ReflectionProperty_isInitialized.phpt | 15 public string $b2 { get => throw new Exception($this->b2); } 48 b2
|
/php-src/ext/opcache/jit/ir/ |
H A D | ir_check.c | 74 uint32_t b2 = ctx->cfg_map[use]; in ir_check_domination() local 77 const ir_block *bb2 = &blocks[b2]; in ir_check_domination() 79 if (b1 == b2) { in ir_check_domination() 83 b2 = bb2->dom_parent; in ir_check_domination() 84 bb2 = &blocks[b2]; in ir_check_domination() 86 return b1 == b2; in ir_check_domination()
|
H A D | ir_gcm.c | 68 b2 = ctx->cfg_blocks[b2].dom_parent; in ir_gcm_find_lca() 70 while (b1 != b2) { in ir_gcm_find_lca() 72 b2 = ctx->cfg_blocks[b2].dom_parent; in ir_gcm_find_lca() 74 return b2; in ir_gcm_find_lca() 484 b2 = bb2->dom_parent; in ir_gcm_dominates() 487 return b1 == b2; in ir_gcm_dominates() 740 ir_hashtab_bucket *b1, *b2; in ir_xlat_binding() local 749 b2 = binding->data; in ir_xlat_binding() 755 b2->key = key; in ir_xlat_binding() 760 b2->val = b1->val; in ir_xlat_binding() [all …]
|
H A D | ir_cfg.c | 865 static bool ir_dominates(const ir_block *blocks, uint32_t b1, uint32_t b2) in ir_dominates() argument 868 const ir_block *bb2 = &blocks[b2]; in ir_dominates() 871 b2 = bb2->dom_parent; in ir_dominates() 872 bb2 = &blocks[b2]; in ir_dominates() 874 return b1 == b2; in ir_dominates() 1093 static int ir_edge_info_cmp(const void *b1, const void *b2) in ir_edge_info_cmp() argument 1096 ir_edge_info *e2 = (ir_edge_info*)b2; in ir_edge_info_cmp()
|
/php-src/ext/gd/libgd/ |
H A D | gd_topal.c | 549 register boxptr b1, b2; in median_cut() local 568 b2->c0max = b1->c0max; in median_cut() 569 b2->c1max = b1->c1max; in median_cut() 570 b2->c2max = b1->c2max; in median_cut() 571 b2->c0min = b1->c0min; in median_cut() 572 b2->c1min = b1->c1min; in median_cut() 573 b2->c2min = b1->c2min; in median_cut() 620 b2->c0min = lb + 1; in median_cut() 625 b2->c1min = lb + 1; in median_cut() 630 b2->c2min = lb + 1; in median_cut() [all …]
|
/php-src/Zend/ |
H A D | zend_strtod.c | 2397 b2 = p2; 2401 b2 = 0; 3895 b2 = 0; in zend_dtoa() 3899 b2 = -j; in zend_dtoa() 3908 b2 -= k; in zend_dtoa() 4133 m2 = b2; in zend_dtoa() 4146 b2 += i; in zend_dtoa() 4152 b2 -= i; in zend_dtoa() 4188 b2 += Log2P; in zend_dtoa() 4202 b2 += i; in zend_dtoa() [all …]
|
/php-src/ext/ffi/tests/ |
H A D | 046.phpt | 14 $x = FFI::type("enum __attribute__((packed)) {a2, b2}");
|
/php-src/ext/standard/ |
H A D | base64.c | 679 #define build_dword(b0, b1, b2, b3) \ argument 681 ((uint32_t)(uint8_t)b2 << 16) | ((uint32_t)(uint8_t)b3 << 24) 683 #define _mm512_set4lanes_epi8(b0, b1, b2, b3, b4, b5, b6, b7, b8, b9, b10, b11, b12, b13, b14, b15)… argument 684 _mm512_setr4_epi32(build_dword(b0, b1, b2, b3), build_dword(b4, b5, b6, b7), \
|
H A D | var.c | 1183 char b1[32], b2[32]; in php_var_serialize_intern() local 1186 char *s2 = zend_print_long_to_buf(b2 + sizeof(b2) - 1, serialized_length); in php_var_serialize_intern() 1187 size_t l2 = b2 + sizeof(b2) - 1 - s2; in php_var_serialize_intern()
|
/php-src/ext/mbstring/ucgendat/ |
H A D | ucgendat.php | 618 usort($buckets, function ($b1, $b2) { 619 return -(count($b1) <=> count($b2));
|