Home
last modified time | relevance | path

Searched refs:writeobj (Results 1 – 7 of 7) sorted by relevance

/php-src/ext/com_dotnet/
H A Dcom_handlers.c433 static zend_result com_object_cast(zend_object *readobj, zval *writeobj, int type) in com_object_cast() argument
441 ZVAL_NULL(writeobj); in com_object_cast()
482 php_com_zval_from_variant(writeobj, &v, obj->code_page); in com_object_cast()
491 return zend_std_cast_object_tostring(readobj, writeobj, type); in com_object_cast()
H A Dcom_saproxy.c343 static zend_result saproxy_object_cast(zend_object *readobj, zval *writeobj, int type) in saproxy_object_cast() argument
/php-src/ext/gmp/
H A Dgmp.c236 static zend_result gmp_cast_object(zend_object *readobj, zval *writeobj, int type) /* {{{ */ in gmp_cast_object() argument
242 gmp_strval(writeobj, gmpnum, 10); in gmp_cast_object()
246 ZVAL_LONG(writeobj, mpz_get_si(gmpnum)); in gmp_cast_object()
250 ZVAL_DOUBLE(writeobj, mpz_get_d(gmpnum)); in gmp_cast_object()
255 ZVAL_LONG(writeobj, mpz_get_si(gmpnum)); in gmp_cast_object()
257 ZVAL_DOUBLE(writeobj, mpz_get_d(gmpnum)); in gmp_cast_object()
262 ZVAL_BOOL(writeobj, mpz_sgn(gmpnum) != 0); in gmp_cast_object()
/php-src/ext/simplexml/
H A Dsimplexml.c54 static zend_result sxe_object_cast_ex(zend_object *readobj, zval *writeobj, int type);
1830 static zend_result sxe_object_cast_ex(zend_object *readobj, zval *writeobj, int type) in sxe_object_cast_ex() argument
1843 ZVAL_TRUE(writeobj); in sxe_object_cast_ex()
1845 ZVAL_BOOL(writeobj, !sxe_prop_is_empty(readobj)); in sxe_object_cast_ex()
1872 rv = cast_object(writeobj, type, (char *)contents); in sxe_object_cast_ex()
1883 static zend_result sxe_object_cast(zend_object *readobj, zval *writeobj, int type) in sxe_object_cast() argument
1886 && zend_std_cast_object_tostring(readobj, writeobj, IS_STRING) == SUCCESS in sxe_object_cast()
1891 return sxe_object_cast_ex(readobj, writeobj, type); in sxe_object_cast()
/php-src/Zend/
H A Dzend_object_handlers.h259 ZEND_API zend_result zend_std_cast_object_tostring(zend_object *object, zval *writeobj, int type);
H A Dzend_object_handlers.c2328 ZEND_API zend_result zend_std_cast_object_tostring(zend_object *readobj, zval *writeobj, int type) … in zend_std_cast_object_tostring() argument
2339 ZVAL_COPY_VALUE(writeobj, &retval); in zend_std_cast_object_tostring()
2350 ZVAL_TRUE(writeobj); in zend_std_cast_object_tostring()
/php-src/ext/ffi/
H A Dffi.c1159 ZVAL_DOUBLE(writeobj, *(float*)ptr); in zend_ffi_cdata_cast_object()
1170 ZVAL_LONG(writeobj, *(uint8_t*)ptr); in zend_ffi_cdata_cast_object()
1173 ZVAL_LONG(writeobj, *(int8_t*)ptr); in zend_ffi_cdata_cast_object()
1179 ZVAL_LONG(writeobj, *(int16_t*)ptr); in zend_ffi_cdata_cast_object()
1185 ZVAL_LONG(writeobj, *(int32_t*)ptr); in zend_ffi_cdata_cast_object()
1191 ZVAL_LONG(writeobj, *(int64_t*)ptr); in zend_ffi_cdata_cast_object()
1194 ZVAL_BOOL(writeobj, *(uint8_t*)ptr); in zend_ffi_cdata_cast_object()
1197 ZVAL_CHAR(writeobj, *(char*)ptr); in zend_ffi_cdata_cast_object()
1204 ZVAL_NULL(writeobj); in zend_ffi_cdata_cast_object()
1214 convert_to_string(writeobj); in zend_ffi_cdata_cast_object()
[all …]

Completed in 55 milliseconds