Searched refs:_ret (Results 1 – 3 of 3) sorted by relevance
/php-src/Zend/ |
H A D | zend_hash.h | 196 #define ZEND_HASH_INDEX_FIND(_ht, _h, _ret, _not_found) do { \ argument 199 _ret = &_ht->arPacked[_h]; \ 200 if (UNEXPECTED(Z_TYPE_P(_ret) == IS_UNDEF)) { \ 207 _ret = _zend_hash_index_find(_ht, _h); \ 208 if (UNEXPECTED(_ret == NULL)) { \ 219 #define ZEND_HASH_INDEX_LOOKUP(_ht, _h, _ret) do { \ argument 222 _ret = &_ht->arPacked[_h]; \ 223 if (EXPECTED(Z_TYPE_P(_ret) != IS_UNDEF)) { \ 228 _ret = zend_hash_index_lookup(_ht, _h); \
|
/php-src/ext/fileinfo/libmagic/ |
H A D | funcs.c | 336 int _ret = php_stream_cast(stream, PHP_STREAM_AS_FD, (void **)&_fd, 0); in file_buffer() local 337 if (SUCCESS == _ret) { in file_buffer()
|
/php-src/ext/fileinfo/ |
H A D | libmagic.patch | 1958 + int _ret = php_stream_cast(stream, PHP_STREAM_AS_FD, (void **)&_fd, 0); 1959 + if (SUCCESS == _ret) {
|
Completed in 24 milliseconds