Home
last modified time | relevance | path

Searched refs:A (Results 1 – 25 of 1603) sorted by relevance

12345678910>>...65

/php-src/ext/mysqlnd/
H A Dmysqlnd_portability.h61 #define int1store(T,A) do { *((int8_t*) (T)) = (A); } while(0) argument
62 #define uint1korr(A) (*(((uint8_t*)(A)))) argument
112 #define sint2korr(A) (*((int16_t *) (A))) argument
121 #define sint4korr(A) (*((zend_long *) (A))) argument
123 #define uint2korr(A) (*((uint16_t *) (A))) argument
127 #define uint4korr(A) (*((zend_ulong *) (A))) argument
131 #define uint8korr(A) (*((uint64_t *) (A))) argument
132 #define sint8korr(A) (*((int64_t *) (A))) argument
174 #define sint4korr(A) (int32_t) (((uint32_t) ((A)[0])) +\ argument
179 #define sint8korr(A) (int64_t) uint8korr(A) argument
[all …]
H A Dconfig-win.h39 #define sint2korr(A) (*((int16_t *) (A))) argument
48 #define sint4korr(A) (*((int32_t *) (A))) argument
49 #define uint2korr(A) (*((uint16_t *) (A))) argument
51 #define uint4korr(A) (*((uint32_t *) (A))) argument
57 #define uint8korr(A) (*((uint64_t *) (A))) argument
58 #define sint8korr(A) (*((int64_t *) (A))) argument
59 #define int2store(T,A) *((uint16_t*) (T))= (uint16_t) (A) argument
60 #define int3store(T,A) { *(T)= (zend_uchar) ((A));\ argument
63 #define int4store(T,A) *((int32_t *) (T))= (int32_t) (A) argument
64 #define int5store(T,A) { *(T)= (zend_uchar)((A));\ argument
[all …]
/php-src/ext/hash/sha3/generic64lc/
H A DKeccakP-1600-unrolling.macros19 thetaRhoPiChiIotaPrepareTheta( 0, A, E) \
20 thetaRhoPiChiIotaPrepareTheta( 1, E, A) \
21 thetaRhoPiChiIotaPrepareTheta( 2, A, E) \
42 thetaRhoPiChiIota(23, E, A) \
57 thetaRhoPiChiIota(23, E, A) \
90 thetaRhoPiChiIota(23, E, A) \
141 copyStateVariables(A, E) \
150 copyStateVariables(A, E) \
173 copyStateVariables(A, E) \
180 copyStateVariables(A, E) \
[all …]
/php-src/Zend/tests/
H A Dclosure_058.phpt5 class A {
15 $a = A::foo();
25 $x = new A();
35 string(1) "A"
36 string(1) "A"
37 string(1) "A"
38 string(1) "A"
39 string(1) "A"
40 string(1) "A"
41 string(1) "A"
[all …]
H A Dgh10935.phpt26 class A {
51 A::$test = 'A';
54 echo 'A::$test: ' . A::$test . "\n";
55 echo 'A::getASelf(): ' . A::getASelf() . "\n";
56 echo 'A::getAStatic(): ' . A::getAStatic() . "\n";
57 echo 'A::getFooSelf(): ' . A::getFooSelf() . "\n";
70 A::$test: A
71 A::getASelf(): A
72 A::getAStatic(): A
73 A::getFooSelf(): A
[all …]
H A Dgh9500.phpt7 var A|(B&C) $a;
8 var (B&C)|A $b;
9 private A|(B&C) $c;
10 private (B&C)|A $d;
11 static A|(B&C) $e;
12 static (B&C)|A $f;
13 private static A|(B&C) $g;
14 private static (B&C)|A $h;
15 readonly private A|(B&C) $i;
17 readonly A|(B&C) $k;
[all …]
H A Dlsb_015.phpt17 class A {
71 via A:
72 A
73 A
74 A
75 A
77 A
78 A
79 A
80 A
[all …]
H A Dbug48215.phpt5 class A
10 protected function A()
15 class B extends A
21 public function A()
24 parent::A();
28 $b->A();
32 A::__construct
33 B::A
34 A::A
H A Dns_060.phpt6 use Bar\A as B;
7 class A {}
9 $b = new A;
13 use Foo\A as B;
15 $b = new A;
18 class A {}
21 Bar\A
22 Foo\A
23 Foo\A
24 Bar\A
H A Dns_040.phpt7 const A = "ok\n";
8 const B = A;
9 function f1($x=A) {
12 function f2($x=\X\A) {
15 function f3($x=Y\A) {
18 function f4($x=\X\A) {
24 function f6($x=array(A)) {
33 echo A;
34 echo \X\A;
35 echo Y\A;
[all …]
/php-src/ext/standard/tests/file/
H A Dfscanf_variation23.phpt86 string(1) "A"
90 string(1) "A"
94 string(1) "A"
98 string(1) "A"
102 string(1) "A"
106 string(1) "A"
110 string(1) "A"
114 string(1) "A"
118 string(1) "A"
122 string(1) "A"
[all …]
/php-src/ext/reflection/tests/
H A DReflectionMethod_setAccessible.phpt5 class A {
41 A::aPrivate
42 A::aPrivate
43 A::aPrivateStatic
44 A::aPrivateStatic
45 A::aProtected
46 A::aProtected
49 A::aPrivate
50 A::aPrivate
53 A::aProtected
[all …]
H A DReflectionClass_getDefaultProperties_001.phpt10 class A {
28 class B extends A {
98 [pubC] => pubC in A
99 [protC] => protC in A
100 [privC] => privC in A
101 [pubA] => pubA in A
102 [protA] => protA in A
103 [privA] => privA in A
138 [pubA] => pubA in A
139 [protA] => protA in A
[all …]
H A Dproperty_exists.phpt7 class A
126 A::$a
128 A::$b
130 A::$c
132 A::$d
134 A::$e
137 A::$a
139 A::$b
141 A::$c
143 A::$d
[all …]
/php-src/ext/standard/tests/strings/
H A Dstrrchr_variation1.phpt81 string(16) "lo123456he #4 A "
92 string(8) "he #4 A "
192 string(20) "@hello123456he #4 A "
195 string(20) "@hello123456he #4 A "
198 string(14) "123456he #4 A "
201 string(5) "#4 A "
204 string(5) "#4 A "
207 string(2) "A "
210 string(2) "A "
213 string(4) "4 A "
[all …]
/php-src/Zend/tests/type_declarations/
H A Dtyped_class_constants_type_success1.phpt5 class A {
19 var_dump(A::CONST1);
20 var_dump(A::CONST1);
21 var_dump(A::CONST2);
22 var_dump(A::CONST2);
23 var_dump(A::CONST3);
24 var_dump(A::CONST3);
25 var_dump(A::CONST4);
26 var_dump(A::CONST4);
27 var_dump(A::CONST5);
[all …]
/php-src/Zend/tests/type_declarations/union_types/
H A Dinheritance.phpt7 public A|B|int $prop;
8 public function method(A|B|int $arg): A|B|int { }
10 private A|B|int $prop2;
11 private function method2(A|B|int $arg): A|B|int { }
18 public A|B|int $prop;
19 public function method(A|B|int $arg): A|B|int { }
21 private A|B|int $prop2;
22 private function method2(A|B|int $arg): A|B|int { }
36 public A|B|int $prop;
37 public function method(A|B|int $arg): A|B|int { }
[all …]
/php-src/Zend/tests/varSyntax/
H A DstaticMember.phpt6 class A {
12 $A_str = 'A';
13 $A_obj = new A;
17 var_dump(A::$b);
20 var_dump(('A' . '')::$b);
21 var_dump('A'::$b);
22 var_dump('\A'::$b);
23 var_dump('A'[0]::$b);
24 var_dump(A::$$b_str);
25 var_dump(A::$$c_str[1]);
[all …]
/php-src/ext/spl/tests/
H A Dfixedarray_002.phpt31 $a = new A;
71 A::offsetSet
73 A::offsetGet
77 A::offsetSet
78 A::offsetSet
79 A::offsetSet
80 A::offsetSet
81 A::offsetSet
91 A::offsetGet
92 A::offsetGet
[all …]
/php-src/ext/standard/tests/serialize/
H A Dserialization_objects_011.phpt5 Class A {
15 Class B extends A {
60 prettyPrint(new A);
73 object(A)#%d (3) {
75 string(7) "A.APriv"
77 string(7) "A.AProt"
79 string(6) "A.APub"
82 string(98) "O:1:"A":3:{s:8:"\0A\0APriv";s:7:"A.APriv";s:8:"\0*\0AProt";s:7:"A.AProt";s:4:"APub";s:6…
84 object(A)#%d (3) {
90 string(6) "A.APub"
[all …]
/php-src/ext/pcre/pcre2lib/sljit/
H A DsljitNativePPC_32.c32 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm)); in load_immediate()
43 (RLWINM | S(src) | A(dst) | RLWI_MBE(from, 31))
57 return push_inst(compiler, OR | S(src2) | A(dst) | B(src2)); in emit_single_op()
65 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
69 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
80 return push_inst(compiler, EXTSH | S(src2) | A(dst)); in emit_single_op()
90 return push_inst(compiler, CNTLZW | S(src2) | A(dst)); in emit_single_op()
94 FAIL_IF(push_inst(compiler, NEG | D(TMP_REG1) | A(src2))); in emit_single_op()
96 FAIL_IF(push_inst(compiler, CNTLZW | S(dst) | A(dst))); in emit_single_op()
130 return push_inst(compiler, ADD | D(dst) | A(src1) | B(src2)); in emit_single_op()
[all …]
H A DsljitNativePPC_64.c50 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm)); in load_immediate()
125 (RLDICL | S(src) | A(dst) | RLDI_SH(0) | RLDI_MB(n))
170 return push_inst(compiler, EXTSW | S(src2) | A(dst)); in emit_single_op()
183 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
187 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
198 return push_inst(compiler, EXTSH | S(src2) | A(dst)); in emit_single_op()
212 FAIL_IF(push_inst(compiler, NEG | D(TMP_REG1) | A(src2))); in emit_single_op()
231 return push_inst(compiler, SRDI(32) | S(dst) | A(dst)); in emit_single_op()
261 return push_inst(compiler, CMPI | A(dst) | 0); in emit_single_op()
320 return push_inst(compiler, SRDI(32) | S(dst) | A(dst)); in emit_single_op()
[all …]
/php-src/Zend/tests/named_params/
H A Dcall_user_func_array.phpt14 call_user_func_array($test, ['A', 'B']);
16 call_user_func_array($test, ['A', 'c' => 'C']);
32 call_user_func_array($test, ['A', 'B']);
50 a = A, b = B, c = c
51 a = A, b = B, c = c
52 a = A, b = b, c = C
55 string(1) "A"
62 a = A, b = B, c = c
63 a = A, b = B, c = c
64 a = A, b = b, c = C
[all …]
H A Dbasic.phpt73 a=A, b=B, c=C, d=D, e=E
74 a=A, b=B, c=C, d=D, e=E
75 a=A, b=B, c=C, d=D, e=E
76 a=A, b=B, c=C, d=d, e=E
78 a=A, b=B, c=C, d=D, e=E
79 a=A, b=B, c=C, d=D, e=E
80 a=A, b=B, c=C, d=D, e=E
81 a=A, b=B, c=C, d=d, e=E
83 a=A, b=B, c=C, d=D, e=E
84 a=A, b=B, c=C, d=D, e=E
[all …]
/php-src/Zend/tests/new_without_parentheses/
H A Dnew_with_ctor_arguments_parentheses.phpt6 class A implements ArrayAccess
46 $class = A::class;
48 echo new A()::C;
49 echo new A()::{'C'};
55 echo new A()->property;
63 new A()();
65 new (trim(' A '))()();
67 new A()->method();
71 new A()::staticMethod();
75 new A()['key'];
[all …]

Completed in 75 milliseconds

12345678910>>...65