Home
last modified time | relevance | path

Searched refs:ops (Results 26 – 50 of 94) sorted by path

1234

/php-src/Zend/tests/generators/
H A Dyield_unary_precedence.phpt8 var_dump(yield * -1); // other ops still should behave normally
/php-src/Zend/tests/
H A Dglobals_005.phpt9 return "ops";
12 $GLOBALS[foo()] = "ops";
H A Doperator_unsupported_types.phpt34 '3.5', // Semi-legal for certain ops
H A Doverloaded_prop_assign_op_refs.phpt2 Handling of assign-ops and incdecs on overloaded properties using &__get()
H A Dtemporary_cleaning_001.phpt6 function ops() {
14 $r = [$x] + ($y ? ((array) $x) + [2] : ops());
H A Dtemporary_cleaning_003.phpt6 function ops() {
12 $r = [$x] + ops();
H A Dtemporary_cleaning_004.phpt6 function ops() {
19 $r = [$x] + ($y ? ((array) $x) + [2] : ops());
34 $r = [$x] + ($y ? ((array) $x) + [2] : ops());
H A Dtemporary_cleaning_005.phpt6 function ops() {
20 $r = [$x] + ($y ? ((array) $x) + [2] : ops());
37 $r = [$x] + ($y ? ((array) $x) + [2] : ops());
/php-src/Zend/tests/traits/
H A Dbug60809.phpt24 public $prop = "ops";
/php-src/Zend/tests/try/
H A Dbug70228_5.phpt9 throw new Exception("ops");
20 ops
/php-src/Zend/tests/type_declarations/
H A Dtyped_properties_047.phpt26 $x->foo = "ops";
H A Dtyped_properties_055.phpt14 $n = "ops";
/php-src/docs-old/
H A Dstreams.md251 The `php_streams` ops struct consists of pointers to methods that implement
255 efficiently behave as fgets. The ops struct also contains a label for the
290 PHPAPI php_stream * php_stream_alloc(php_stream_ops * ops, void * abstract,
294 * `ops` is a pointer to the implementation,
385 all mandatory. The rest are optional. Declare your stream ops struct:
/php-src/ext/fileinfo/tests/
H A Dmagic7007 >12 lelong x %d bytecode ops)
H A Dmagic私はガラスを食べられます7007 >12 lelong x %d bytecode ops)
/php-src/ext/hash/
H A Dhash.c111 return ops; in php_hash_fetch_ops()
367 if (!ops) { in php_hash_do_hash()
494 ops->hash_update(context, key, ops->block_size); in php_hash_hmac_round()
509 if (!ops || !ops->is_crypto) { in php_hash_do_hash_hmac()
537 ops->hash_update(context, K, ops->block_size); in php_hash_do_hash_hmac()
649 hash->ops = ops; in PHP_FUNCTION()
911 if (!ops || !ops->is_crypto) { in PHP_FUNCTION()
955 ops->hash_update(context, K, ops->block_size); in PHP_FUNCTION()
1006 if (!ops || !ops->is_crypto) { in PHP_FUNCTION()
1408 newobj->ops = oldobj->ops; in php_hashcontext_clone()
[all …]
H A Dhash_adler32.c55 PHP_HASH_API int PHP_ADLER32Copy(const php_hash_ops *ops, PHP_ADLER32_CTX *orig_context, PHP_ADLER3… in PHP_ADLER32Copy() argument
H A Dhash_crc32.c87 PHP_HASH_API int PHP_CRC32Copy(const php_hash_ops *ops, PHP_CRC32_CTX *orig_context, PHP_CRC32_CTX … in PHP_CRC32Copy() argument
H A Dhash_murmur.c73 PHP_HASH_API int PHP_MURMUR3ACopy(const php_hash_ops *ops, PHP_MURMUR3A_CTX *orig_context, PHP_MURM… in PHP_MURMUR3ACopy() argument
147 PHP_HASH_API int PHP_MURMUR3CCopy(const php_hash_ops *ops, PHP_MURMUR3C_CTX *orig_context, PHP_MURM… in PHP_MURMUR3CCopy() argument
219 PHP_HASH_API int PHP_MURMUR3FCopy(const php_hash_ops *ops, PHP_MURMUR3F_CTX *orig_context, PHP_MURM… in PHP_MURMUR3FCopy() argument
H A Dhash_xxhash.c69 PHP_HASH_API int PHP_XXH32Copy(const php_hash_ops *ops, PHP_XXH32_CTX *orig_context, PHP_XXH32_CTX … in PHP_XXH32Copy() argument
133 PHP_HASH_API int PHP_XXH64Copy(const php_hash_ops *ops, PHP_XXH64_CTX *orig_context, PHP_XXH64_CTX … in PHP_XXH64Copy() argument
213 PHP_HASH_API int PHP_XXH3_64_Copy(const php_hash_ops *ops, PHP_XXH3_64_CTX *orig_context, PHP_XXH3_… in PHP_XXH3_64_Copy() argument
263 PHP_HASH_API int PHP_XXH3_128_Copy(const php_hash_ops *ops, PHP_XXH3_128_CTX *orig_context, PHP_XXH… in PHP_XXH3_128_Copy() argument
H A Dphp_hash.h37 typedef int (*php_hash_copy_func_t)(const void *ops, void *orig_context, void *dest_context);
58 const php_hash_ops *ops; member
149 PHP_HASH_API void php_hash_register_algo(const char *algo, const php_hash_ops *ops);
150 PHP_HASH_API int php_hash_copy(const void *ops, void *orig_context, void *dest_context);
156 static inline void *php_hash_alloc_context(const php_hash_ops *ops) { in php_hash_alloc_context() argument
158 return ecalloc(1, ops->context_size); in php_hash_alloc_context()
H A Dphp_hash_adler32.h30 PHP_HASH_API int PHP_ADLER32Copy(const php_hash_ops *ops, PHP_ADLER32_CTX *orig_context, PHP_ADLER3…
H A Dphp_hash_crc32.h33 PHP_HASH_API int PHP_CRC32Copy(const php_hash_ops *ops, PHP_CRC32_CTX *orig_context, PHP_CRC32_CTX …
H A Dphp_hash_murmur.h30 PHP_HASH_API int PHP_MURMUR3ACopy(const php_hash_ops *ops, PHP_MURMUR3A_CTX *orig_context, PHP_MURM…
42 PHP_HASH_API int PHP_MURMUR3CCopy(const php_hash_ops *ops, PHP_MURMUR3C_CTX *orig_context, PHP_MURM…
54 PHP_HASH_API int PHP_MURMUR3FCopy(const php_hash_ops *ops, PHP_MURMUR3F_CTX *orig_context, PHP_MURM…
H A Dphp_hash_xxhash.h31 PHP_HASH_API int PHP_XXH32Copy(const php_hash_ops *ops, PHP_XXH32_CTX *orig_context, PHP_XXH32_CTX …
41 PHP_HASH_API int PHP_XXH64Copy(const php_hash_ops *ops, PHP_XXH64_CTX *orig_context, PHP_XXH64_CTX …
63 PHP_HASH_API int PHP_XXH3_64_Copy(const php_hash_ops *ops, PHP_XXH3_64_CTX *orig_context, PHP_XXH3_…
70 PHP_HASH_API int PHP_XXH3_128_Copy(const php_hash_ops *ops, PHP_XXH3_128_CTX *orig_context, PHP_XXH…

Completed in 224 milliseconds

1234