Home
last modified time | relevance | path

Searched refs:instance (Results 1 – 25 of 578) sorted by relevance

12345678910>>...24

/PHP-7.4/ext/hash/sha3/generic32lc/
H A DKeccakHash.c27 result = (HashReturn)KeccakWidth1600_SpongeInitialize(&instance->sponge, rate, capacity); in Keccak_HashInitialize()
30 instance->fixedOutputLength = hashbitlen; in Keccak_HashInitialize()
31 instance->delimitedSuffix = delimitedSuffix; in Keccak_HashInitialize()
40 return (HashReturn)KeccakWidth1600_SpongeAbsorb(&instance->sponge, data, databitlen/8); in Keccak_HashUpdate()
49 instance->delimitedSuffix = delimitedLastBytes & 0xFF; in Keccak_HashUpdate()
54 ret = (HashReturn)KeccakWidth1600_SpongeAbsorb(&instance->sponge, oneByte, 1); in Keccak_HashUpdate()
55 instance->delimitedSuffix = (delimitedLastBytes >> 8) & 0xFF; in Keccak_HashUpdate()
64 HashReturn Keccak_HashFinal(Keccak_HashInstance *instance, BitSequence *hashval) in Keccak_HashFinal() argument
66 …urn ret = (HashReturn)KeccakWidth1600_SpongeAbsorbLastFewBits(&instance->sponge, instance->delimit… in Keccak_HashFinal()
68 …return (HashReturn)KeccakWidth1600_SpongeSqueeze(&instance->sponge, hashval, instance->fixedOutput… in Keccak_HashFinal()
[all …]
H A DKeccakSponge.inc141 instance->rate = rate;
142 instance->byteIOIndex = 0;
143 instance->squeezing = 0;
157 if (instance->squeezing)
198 SnP_AddBytes(instance->state, curData, instance->byteIOIndex, partialBlock);
218 if (instance->squeezing)
229 SnP_AddByte(instance->state, delimitedData, instance->byteIOIndex);
244 instance->byteIOIndex = 0;
245 instance->squeezing = 1;
261 if (!instance->squeezing)
[all …]
/PHP-7.4/ext/hash/sha3/generic64lc/
H A DKeccakHash.c27 result = (HashReturn)KeccakWidth1600_SpongeInitialize(&instance->sponge, rate, capacity); in Keccak_HashInitialize()
30 instance->fixedOutputLength = hashbitlen; in Keccak_HashInitialize()
31 instance->delimitedSuffix = delimitedSuffix; in Keccak_HashInitialize()
40 return (HashReturn)KeccakWidth1600_SpongeAbsorb(&instance->sponge, data, databitlen/8); in Keccak_HashUpdate()
49 instance->delimitedSuffix = delimitedLastBytes & 0xFF; in Keccak_HashUpdate()
54 ret = (HashReturn)KeccakWidth1600_SpongeAbsorb(&instance->sponge, oneByte, 1); in Keccak_HashUpdate()
55 instance->delimitedSuffix = (delimitedLastBytes >> 8) & 0xFF; in Keccak_HashUpdate()
64 HashReturn Keccak_HashFinal(Keccak_HashInstance *instance, BitSequence *hashval) in Keccak_HashFinal() argument
66 …urn ret = (HashReturn)KeccakWidth1600_SpongeAbsorbLastFewBits(&instance->sponge, instance->delimit… in Keccak_HashFinal()
68 …return (HashReturn)KeccakWidth1600_SpongeSqueeze(&instance->sponge, hashval, instance->fixedOutput… in Keccak_HashFinal()
[all …]
H A DKeccakSponge.inc141 instance->rate = rate;
142 instance->byteIOIndex = 0;
143 instance->squeezing = 0;
157 if (instance->squeezing)
198 SnP_AddBytes(instance->state, curData, instance->byteIOIndex, partialBlock);
218 if (instance->squeezing)
229 SnP_AddByte(instance->state, delimitedData, instance->byteIOIndex);
244 instance->byteIOIndex = 0;
245 instance->squeezing = 1;
261 if (!instance->squeezing)
[all …]
/PHP-7.4/Zend/tests/
H A Dbug68652.phpt7 private static $instance;
9 if (isset(self::$instance)) {
10 return self::$instance;
12 return self::$instance = new self();
22 private static $instance;
24 if (isset(self::$instance)) {
25 return self::$instance;
27 return self::$instance = new self();
31 if (!isset(self::$instance)) return;
H A Dclosure_043.phpt6 * a bound instance. It should also not be automatically converted
7 * to a non-static instance when attempting to bind one */
24 echo "After binding, null scope, no instance", "\n";
28 echo "After binding, null scope, with instance", "\n";
32 echo "After binding, with scope, no instance", "\n";
36 echo "After binding, with scope, with instance", "\n";
49 After binding, null scope, no instance
56 After binding, null scope, with instance
58 Warning: Cannot bind an instance to a static closure in %s on line %d
61 After binding, with scope, no instance
[all …]
H A Dcall_user_func_003.phpt7 static $instance;
9 if (is_null($instance)) {
10 $instance = function () {
15 return $instance;
27 ["instance"]=>
H A Dbug34045.phpt7 private static $instance;
10 self::$instance = $this;
14 if (!(self::$instance instanceof BasicSingleton)) {
16 self::$instance = new $c;
18 return self::$instance;
H A Dbug32322.phpt2 Bug #32322 (Return values by reference broken( using self::),example singleton instance)
9 private static $instance = null;
20 if ( self::$instance == null )
22 self::$instance = new test('Singleton1');
25 echo "Using old class " . self::$instance -> myname . "\n";
27 return self::$instance;
51 echo "Try static instance inside class :\n";
57 echo "Try static instance inside function :\n";
67 Try static instance inside class :
73 Try static instance inside function :
H A Dbug69124.phpt11 function test(&$instance, &$method) {
12 $instance->{$method}();
15 $instance = new Foo;
18 test($instance, $method);
H A Dbug39721.phpt7 public $instance;
10 $this->instance = ++self::$instances;
25 echo $foo->instance . "\n";
26 echo $child->instance . "\n";
H A Dclosure_059.phpt36 Exception: Argument 1 passed to {closure}() must be an instance of A, instance of B %s
37 Exception: Argument 1 passed to {closure}() must be an instance of A, instance of B %s
38 Exception: Argument 1 passed to {closure}() must be an instance of A, instance of B %s
H A Dbug51176.phpt16 echo "instance\n";
30 instance
31 instance
32 instance
H A Dclosure_044.phpt5 /* A non-static closure has a bound instance if it has a scope
6 * and doesn't have an instance if it has no scope */
24 echo "After binding, null scope, no instance", "\n";
28 echo "After binding, null scope, with instance", "\n";
32 echo "After binding, with scope, no instance", "\n";
36 echo "After binding, with scope, with instance", "\n";
49 After binding, null scope, no instance
58 After binding, null scope, with instance
65 After binding, with scope, no instance
74 After binding, with scope, with instance
H A Dclosure_062.phpt8 echo "instance scoped, non-static, \$this used\n";
13 echo "instance scoped, static, \$this used\n";
18 echo "instance scoped, non-static, \$this not used\n";
49 instance scoped, non-static, $this used
52 instance scoped, static, $this used
53 instance scoped, non-static, $this not used
H A Dbug47165.phpt9 static $instance = null;
10 $instance = new Foo();
11 return $instance->bar;
H A Dclosure_046.phpt8 * to having a bound instance. */
27 echo "After binding, no instance", "\n";
33 echo "After binding, with same-class instance for the bound one", "\n";
37 echo "After binding, with different instance for the bound one", "\n";
49 After binding, no instance
58 After binding, with same-class instance for the bound one
65 After binding, with different instance for the bound one
/PHP-7.4/tests/lang/
H A Dbug22510.phpt36 $this->instance = new foo();
37 $this->instance->method1($this);
38 $this->instance->method1($this);
43 $this->instance = new foo();
44 $this->instance->method2($this);
45 $this->instance->method2($this);
50 $this->instance = new foo();
82 $bar->instance->finalize();
85 $bar->instance->finalize();
88 $bar->instance->finalize();
[all …]
/PHP-7.4/ext/reflection/tests/
H A DReflectionObject_getConstants_basic.phpt20 echo "Reflecting on instance of class $class: \n";
27 Reflecting on instance of class C:
32 Reflecting on instance of class D:
37 Reflecting on instance of class E:
42 Reflecting on instance of class F:
47 Reflecting on instance of class X:
H A DReflectionObject_getConstant_basic.phpt20 echo "Reflecting on instance of class $class: \n";
27 Reflecting on instance of class C:
30 Reflecting on instance of class D:
33 Reflecting on instance of class E:
36 Reflecting on instance of class F:
39 Reflecting on instance of class X:
/PHP-7.4/ext/pdo/tests/
H A Dpdo_036.phpt8 $instance = new reflectionclass('pdostatement');
9 $x = $instance->newInstance();
12 $instance = new reflectionclass('pdorow');
13 $x = $instance->newInstance();
/PHP-7.4/Zend/tests/closures/
H A Dclosure_from_callable_basic.phpt20 echo 'Access public instance method of object';
24 echo 'Access public instance method of parent object through parent:: ';
69 echo 'Access public instance method of parent object through "parent::" ';
74 echo 'Access public instance method of self object through "self::" ';
89 echo 'MagicCall __call instance method ';
104 Access public instance method of object OK
105 Access public instance method of parent object through parent:: OK
115 Access public instance method of parent object through "parent::" OK
116 Access public instance method of self object through "self::" OK
117 Access public instance method of parent object through "self::" to parent method OK
[all …]
/PHP-7.4/tests/classes/
H A Dtype_hinting_004.phpt49 echo "in C::f1 (instance);\n";
56 echo "in C::f2 (instance);\n";
94 echo "\n\n---> Type hints with callback instance method:\n";
98 echo "in C::f1 (instance);\n";
105 echo "in C::f2 (instance);\n";
147 0: Argument 1 passed to f1() must be an instance of A, int given%s(%d)
168 ---> Type hints with callback instance method:
171 in C::f1 (instance);
174 in C::f2 (instance);
175 in C::f2 (instance);
[all …]
/PHP-7.4/ext/standard/tests/class_object/
H A Dget_declared_classes_variation1.phpt18 echo "\n-- before instance is declared --\n";
21 echo "\n-- after instance is declared --\n";
31 -- before instance is declared --
34 -- after instance is declared --
/PHP-7.4/ext/intl/tests/
H A Dtimezone_equals_basic.phpt15 echo "Comparison to equal instance:\n";
17 echo "Comparison to equivalent instance:\n";
27 Comparison to equal instance:
29 Comparison to equivalent instance:

Completed in 30 milliseconds

12345678910>>...24