Home
last modified time | relevance | path

Searched refs:t1 (Results 1 – 25 of 39) sorted by path

12

/php-src/Zend/Optimizer/
H A Ddce.c203 uint32_t t1 = OP1_INFO(); in may_have_side_effects() local
204 if (t1 & MAY_BE_REF) { in may_have_side_effects()
H A Dzend_func_info.c61 uint32_t t1 = _ssa_op1_info(op_array, ssa, call_info->arg_info[0].opline, in zend_range_info() local
72 if ((t1 & MAY_BE_STRING) && (t2 & MAY_BE_STRING)) { in zend_range_info()
75 if ((t1 & (MAY_BE_DOUBLE|MAY_BE_STRING)) in zend_range_info()
80 if ((t1 & ((MAY_BE_ANY|MAY_BE_UNDEF)-MAY_BE_DOUBLE)) in zend_range_info()
H A Dzend_inference.c2650 tmp = t1; in _zend_update_type_info()
2701 tmp = t1; in _zend_update_type_info()
2756 orig = t1; in _zend_update_type_info()
2763 orig = t1; in _zend_update_type_info()
3173 tmp = t1; in _zend_update_type_info()
3232 tmp = t1; in _zend_update_type_info()
3288 tmp = t1; in _zend_update_type_info()
3427 tmp = t1; in _zend_update_type_info()
3483 tmp = t1; in _zend_update_type_info()
3967 tmp = t1; in _zend_update_type_info()
[all …]
H A Dzend_inference.h224 ZEND_API uint32_t zend_array_element_type(uint32_t t1, uint8_t op_type, int write, int insert);
236 …zend_ssa_op *ssa_op, const zend_op_array *op_array, const zend_ssa *ssa, uint32_t t1, uint32_t t2);
/php-src/Zend/tests/
H A Dbug55086.phpt8 public function hello() { return 'hello from t1'; }
35 hello from t1
36 hello from t1
H A Dfunction_arguments_003.phpt7 function t1($a = 1 + 1, $b = 1 << 2, $c = "foo" . "bar", $d = a * 10) {
11 t1();
/php-src/Zend/
H A Dzend_alloc.c1233 unsigned int t1, t2; local
1239 t1 = size - 1;
1240 t2 = zend_mm_small_size_to_bit(t1) - 3;
1241 t1 = t1 >> t2;
1244 return (int)(t1 + t2);
H A Dzend_operators.c61 #define TYPE_PAIR(t1,t2) (((t1) << 4) | (t2)) argument
/php-src/ext/date/lib/
H A Dtimelib.c75 int timelib_time_compare(timelib_time *t1, timelib_time *t2) in timelib_time_compare() argument
77 if (t1->sse == t2->sse) { in timelib_time_compare()
78 if (t1->us == t2->us) { in timelib_time_compare()
82 return (t1->us < t2->us) ? -1 : 1; in timelib_time_compare()
85 return (t1->sse < t2->sse) ? -1 : 1; in timelib_time_compare()
H A Dtimelib.h927 int timelib_time_compare(timelib_time *t1, timelib_time *t2);
/php-src/ext/date/tests/
H A Dbug-gh9106.phpt13 $t1 = $start->add($oneAndHalfSec);
14 $t2 = $t1->add($oneAndHalfSec);
19 var_dump($t1->getTimestamp());
/php-src/ext/dom/tests/
H A Dbug28721.phpt57 $p->appendChild($t1 = $xml->createTextNode(" t1 "));
65 echo "\nAppend t1 to p:\n";
66 $ret = $p->appendChild($t1);
71 echo "t1 == ret: ";
72 var_dump( $t1 === $ret );
127 name (value): #text ( t1 )
152 Append t1 to p:
179 name (value): #text ( t1 )
184 t1 == ret: bool(true)
278 name (value): #text ( t1 )
[all …]
/php-src/ext/ffi/
H A Dffi.c1873 zend_ffi_type *t1, *t2; in zend_ffi_cdata_do_operation() local
1877 t1 = ZEND_FFI_TYPE(type1->pointer.type); in zend_ffi_cdata_do_operation()
1880 t1 = ZEND_FFI_TYPE(type1->array.type); in zend_ffi_cdata_do_operation()
1890 if (zend_ffi_is_same_type(t1, t2)) { in zend_ffi_cdata_do_operation()
1892 (zend_long)(p1 - p2) / (zend_long)t1->size); in zend_ffi_cdata_do_operation()
/php-src/ext/ffi/tests/
H A D029.phpt10 typedef char t1;
13 var_dump(FFI::sizeof($ffi->new("struct {char a; t1 b;}")));
H A D033.phpt15 $t1 = FFI::typeof($p1);
16 var_dump($t1);
18 $p4 = $ffi->new($t1);
H A Ddeprecations.phpt24 $t1 = FFI::type("uint16_t[2]");
/php-src/ext/hash/
H A Dhash_snefru.c44 const uint32_t *t0,*t1; in Snefru() local
66 t1 = tables[2*index+1]; in Snefru()
70 round(B01, B02, B03, t1); in Snefru()
71 round(B02, B03, B04, t1); in Snefru()
74 round(B05, B06, B07, t1); in Snefru()
75 round(B06, B07, B08, t1); in Snefru()
78 round(B09, B10, B11, t1); in Snefru()
79 round(B10, B11, B12, t1); in Snefru()
82 round(B13, B14, B15, t1); in Snefru()
83 round(B14, B15, B00, t1); in Snefru()
H A Dhash_tiger.c40 a -= t1[(unsigned char)(c)] ^ \
47 t1[(unsigned char)(((uint32_t)((c)>>(4*8)))>>(3*8))]; \
H A Dphp_hash_tiger_tables.h18 #define t1 (table) macro
/php-src/ext/intl/breakiterator/
H A Dcodepointiterator_internal.cpp23 zend_long t1; member
/php-src/ext/mysqli/tests/
H A Dmysqli_explain_metadata.phpt13 if (!$res = mysqli_query($link, 'EXPLAIN SELECT t1.*, t2.* FROM test AS t1, test AS t2'))
64 … if ($stmt->prepare('EXPLAIN SELECT t1.*, t2.* FROM test AS t1, test AS t2') && $stmt->execute()) {
98 if ($stmt->prepare('EXPLAIN SELECT t1.*, t2.* FROM test AS t1, test AS t2') &&
H A Dmysqli_get_warnings.phpt88 if (!$mysqli->query("DROP TABLE IF EXISTS t1"))
91 if (!$mysqli->query("CREATE TABLE t1 (a smallint)"))
99 if (!$mysqli->query("DROP TABLE t1"))
114 if (!$mysqli->query("DROP TABLE IF EXISTS t1"))
117 if (!$mysqli->query("CREATE TABLE t1 (a smallint)"))
121 if (!$mysqli->query("INSERT IGNORE INTO t1(a) VALUES (65536), (65536), (65536)"))
147 if (!mysqli_query($link, "DROP TABLE IF EXISTS t1"))
/php-src/ext/opcache/jit/ir/dynasm/
H A Dminilua.c635 if(ttype(t1)!=ttype(t2))return 0; in luaO_rawequalObj()
636 else switch(ttype(t1)){ in luaO_rawequalObj()
642 return bvalue(t1)==bvalue(t2); in luaO_rawequalObj()
644 return pvalue(t1)==pvalue(t2); in luaO_rawequalObj()
646 return gcvalue(t1)==gcvalue(t2); in luaO_rawequalObj()
2563 if(t1[2]==t2[2])
4862 switch(ttype(t1)){
4865 case 1:return bvalue(t1)==bvalue(t2);
4868 if(uvalue(t1)==uvalue(t2))return 1;
4874 if(hvalue(t1)==hvalue(t2))return 1;
[all …]
/php-src/ext/opcache/jit/ir/
H A Dir.c718 ir_ref ir_proto_1(ir_ctx *ctx, uint8_t flags, ir_type ret_type, ir_type t1) argument
725 proto.param_types[0] = t1;
729 ir_ref ir_proto_2(ir_ctx *ctx, uint8_t flags, ir_type ret_type, ir_type t1, ir_type t2) argument
736 proto.param_types[0] = t1;
741 ir_ref ir_proto_3(ir_ctx *ctx, uint8_t flags, ir_type ret_type, ir_type t1, ir_type t2, ir_type t3) argument
748 proto.param_types[0] = t1;
754 ir_ref ir_proto_4(ir_ctx *ctx, uint8_t flags, ir_type ret_type, ir_type t1, ir_type t2, ir_type t3, argument
762 proto.param_types[0] = t1;
769 ir_ref ir_proto_5(ir_ctx *ctx, uint8_t flags, ir_type ret_type, ir_type t1, ir_type t2, ir_type t3, argument
777 proto.param_types[0] = t1;
H A Dir.h688 ir_ref ir_proto_1(ir_ctx *ctx, uint8_t flags, ir_type ret_type, ir_type t1);
689 ir_ref ir_proto_2(ir_ctx *ctx, uint8_t flags, ir_type ret_type, ir_type t1, ir_type t2);
690 ir_ref ir_proto_3(ir_ctx *ctx, uint8_t flags, ir_type ret_type, ir_type t1, ir_type t2, ir_type t3);
691 ir_ref ir_proto_4(ir_ctx *ctx, uint8_t flags, ir_type ret_type, ir_type t1, ir_type t2, ir_type t3,
693 ir_ref ir_proto_5(ir_ctx *ctx, uint8_t flags, ir_type ret_type, ir_type t1, ir_type t2, ir_type t3,

Completed in 145 milliseconds

12