Home
last modified time | relevance | path

Searched refs:Z_LVAL_P (Results 1 – 25 of 116) sorted by path

12345

/PHP-5.5/Zend/
H A Dzend.c237 if (Z_LVAL_P(expr)) { in zend_make_printable_zval()
247 …(expr_copy), sizeof("Resource id #") - 1 + MAX_LENGTH_OF_LONG, "Resource id #%ld", Z_LVAL_P(expr)); in zend_make_printable_zval()
1156 Z_LVAL_P(z_error_type) = type; in zend_error()
1163 Z_LVAL_P(z_error_lineno) = error_lineno; in zend_error()
1211 if (Z_TYPE_P(retval) == IS_BOOL && Z_LVAL_P(retval) == 0) { in zend_error()
H A Dzend_API.c1552 …_STRICT, "Resource ID#%ld used as offset, casting to integer (%ld)", Z_LVAL_P(key), Z_LVAL_P(key)); in array_set_zval_key()
1556 result = zend_hash_index_update(ht, Z_LVAL_P(key), &value, sizeof(zval *), NULL); in array_set_zval_key()
H A Dzend_API.h548 Z_LVAL_P(__z) = l; \
554 Z_LVAL_P(__z) = ((b) != 0); \
564 Z_LVAL_P(__z) = l; \
H A Dzend_builtin_functions.c1878 resource_type = zend_rsrc_list_get_rsrc_type(Z_LVAL_P(z_resource_type) TSRMLS_CC); in ZEND_FUNCTION()
H A Dzend_compile.c3350 if (Z_LVAL_P(zv)) { in zend_get_function_declaration()
H A Dzend_exceptions.c916 …zend_error_va(E_WARNING, file ? Z_STRVAL_P(file) : NULL, line ? Z_LVAL_P(line) : 0, "Uncaught %s i… in zend_exception_error()
927 …zend_error_va(severity, (Z_STRLEN_P(file) > 0) ? Z_STRVAL_P(file) : NULL, Z_LVAL_P(line), "Uncaugh… in zend_exception_error()
H A Dzend_execute.c674 (Z_TYPE_P(object) == IS_BOOL && Z_LVAL_P(object) == 0) || in zend_assign_to_object()
1049 …_STRICT, "Resource ID#%ld used as offset, casting to integer (%ld)", Z_LVAL_P(dim), Z_LVAL_P(dim)); in zend_fetch_dimension_address_inner()
1053 hval = Z_LVAL_P(dim); in zend_fetch_dimension_address_inner()
1182 result->str_offset.offset = Z_LVAL_P(dim); in zend_fetch_dimension_address()
1231 if (type != BP_VAR_UNSET && Z_LVAL_P(container)==0) { in zend_fetch_dimension_address()
1304 if (Z_LVAL_P(dim) < 0 || Z_STRLEN_P(container) <= Z_LVAL_P(dim)) { in zend_fetch_dimension_address_read()
1306 zend_error(E_NOTICE, "Uninitialized string offset: %ld", Z_LVAL_P(dim)); in zend_fetch_dimension_address_read()
1312 Z_STRVAL_P(ptr)[0] = Z_STRVAL_P(container)[Z_LVAL_P(dim)]; in zend_fetch_dimension_address_read()
1368 (Z_TYPE_P(container) == IS_BOOL && Z_LVAL_P(container)==0) || in zend_fetch_property_address()
H A Dzend_execute.h105 result = (Z_LVAL_P(op)?1:0); in i_zend_is_true()
136 result = Z_LVAL_P(tmp); in i_zend_is_true()
H A Dzend_hash.c1189 Z_LVAL_P(key) = p->h; in zend_hash_get_current_key_zval_ex()
H A Dzend_operators.c528 Z_LVAL_P(op) = (Z_LVAL_P(op) ? 1 : 0); in convert_to_boolean()
818 long lval = Z_LVAL_P(op1) + Z_LVAL_P(op2); in add_function()
880 long lval = Z_LVAL_P(op1) - Z_LVAL_P(op2); in sub_function()
929 …ZEND_SIGNED_MULTIPLY_LONG(Z_LVAL_P(op1),Z_LVAL_P(op2), Z_LVAL_P(result),Z_DVAL_P(result),overflow); in mul_function()
972 } else if (Z_LVAL_P(op2) == -1 && Z_LVAL_P(op1) == LONG_MIN) { in div_function()
977 if (Z_LVAL_P(op1) % Z_LVAL_P(op2) == 0) { /* integer */ in div_function()
978 ZVAL_LONG(result, Z_LVAL_P(op1) / Z_LVAL_P(op2)); in div_function()
980 ZVAL_DOUBLE(result, ((double) Z_LVAL_P(op1)) / Z_LVAL_P(op2)); in div_function()
1479 ZVAL_LONG(result, Z_LVAL_P(op1)>Z_LVAL_P(op2)?1:(Z_LVAL_P(op1)<Z_LVAL_P(op2)?-1:0)); in compare_function()
1668 Z_LVAL_P(result) = (Z_LVAL_P(op1) == Z_LVAL_P(op2)); in is_identical_function()
[all …]
H A Dzend_operators.h650 && (Z_LVAL_P(op1) & LONG_SIGN_MASK) != ((Z_LVAL_P(op1) + Z_LVAL_P(op2)) & LONG_SIGN_MASK))) { in fast_add_function()
654 Z_LVAL_P(result) = Z_LVAL_P(op1) + Z_LVAL_P(op2); in fast_add_function()
737 Z_LVAL_P(result) = Z_LVAL_P(op1) - Z_LVAL_P(op2); in fast_sub_function()
773 …ZEND_SIGNED_MULTIPLY_LONG(Z_LVAL_P(op1), Z_LVAL_P(op2), Z_LVAL_P(result), Z_DVAL_P(result), overfl… in fast_mul_function()
809 } else if (EXPECTED(Z_LVAL_P(op1) % Z_LVAL_P(op2) == 0)) { in fast_div_function()
811 Z_LVAL_P(result) = Z_LVAL_P(op1) / Z_LVAL_P(op2); in fast_div_function()
871 Z_LVAL_P(result) = Z_LVAL_P(op1) % Z_LVAL_P(op2); in fast_mod_function()
883 return Z_LVAL_P(op1) == Z_LVAL_P(op2); in fast_equal_function()
902 return Z_LVAL_P(op1) != Z_LVAL_P(op2); in fast_not_equal_function()
921 return Z_LVAL_P(op1) < Z_LVAL_P(op2); in fast_is_smaller_function()
[all …]
H A Dzend_vm_def.h173 Z_LVAL_P(result) = !Z_LVAL_P(result);
2116 ret = Z_LVAL_P(val);
2146 ret = Z_LVAL_P(val);
2176 retval = Z_LVAL_P(val);
2210 retval = Z_LVAL_P(val);
2241 retval = Z_LVAL_P(val);
3631 hval = Z_LVAL_P(offset);
3983 hval = Z_LVAL_P(offset);
4483 hval = Z_LVAL_P(offset);
4618 EG(exit_status) = Z_LVAL_P(ptr);
[all …]
H A Dzend_vm_execute.h3194 Z_LVAL_P(result) = !Z_LVAL_P(result); in ZEND_IS_NOT_IDENTICAL_SPEC_CONST_CONST_HANDLER()
4374 Z_LVAL_P(result) = !Z_LVAL_P(result); in ZEND_IS_NOT_IDENTICAL_SPEC_CONST_TMP_HANDLER()
5067 Z_LVAL_P(result) = !Z_LVAL_P(result); in ZEND_IS_NOT_IDENTICAL_SPEC_CONST_VAR_HANDLER()
6819 Z_LVAL_P(result) = !Z_LVAL_P(result); in ZEND_IS_NOT_IDENTICAL_SPEC_CONST_CV_HANDLER()
8557 Z_LVAL_P(result) = !Z_LVAL_P(result); in ZEND_IS_NOT_IDENTICAL_SPEC_TMP_CONST_HANDLER()
9602 Z_LVAL_P(result) = !Z_LVAL_P(result); in ZEND_IS_NOT_IDENTICAL_SPEC_TMP_TMP_HANDLER()
10297 Z_LVAL_P(result) = !Z_LVAL_P(result); in ZEND_IS_NOT_IDENTICAL_SPEC_TMP_VAR_HANDLER()
11904 Z_LVAL_P(result) = !Z_LVAL_P(result); in ZEND_IS_NOT_IDENTICAL_SPEC_TMP_CV_HANDLER()
13978 Z_LVAL_P(result) = !Z_LVAL_P(result); in ZEND_IS_NOT_IDENTICAL_SPEC_VAR_CONST_HANDLER()
16497 Z_LVAL_P(result) = !Z_LVAL_P(result); in ZEND_IS_NOT_IDENTICAL_SPEC_VAR_TMP_HANDLER()
[all …]
/PHP-5.5/ext/bcmath/
H A Dbcmath.c566 Z_LVAL_P(return_value) = bc_compare(first, second); in PHP_FUNCTION()
/PHP-5.5/ext/calendar/
H A Deaster.c115 Z_LVAL_P(return_value) = mktime(&te); in _cal_easter()
117 Z_LVAL_P(return_value) = easter; in _cal_easter()
/PHP-5.5/ext/com_dotnet/
H A Dcom_handlers.c112 if (php_com_safearray_get_elem(&obj->v, &v, Z_LVAL_P(offset) TSRMLS_CC)) { in com_read_dimension()
156 indices = Z_LVAL_P(offset); in com_write_dimension()
H A Dcom_saproxy.c157 if (Z_LVAL_P(offset) < lbound || Z_LVAL_P(offset) > ubound) { in saproxy_read_dimension()
175 indices[i] = Z_LVAL_P(proxy->indices[i]); in saproxy_read_dimension()
179 indices[dims-1] = Z_LVAL_P(offset); in saproxy_read_dimension()
249 indices[i] = Z_LVAL_P(proxy->indices[i]); in saproxy_write_dimension()
254 indices[dims-1] = Z_LVAL_P(offset); in saproxy_write_dimension()
575 I->indices[i] = Z_LVAL_P(proxy->indices[i]); in php_com_saproxy_iter_get()
H A Dcom_variant.c146 V_I4(v) = Z_LVAL_P(z); in php_com_variant_from_zval()
/PHP-5.5/ext/ctype/
H A Dctype.c150 if (Z_LVAL_P(c) <= 255 && Z_LVAL_P(c) >= 0) { \
151 RETURN_BOOL(iswhat(Z_LVAL_P(c))); \
152 } else if (Z_LVAL_P(c) >= -128 && Z_LVAL_P(c) < 0) { \
153 RETURN_BOOL(iswhat(Z_LVAL_P(c) + 256)); \
/PHP-5.5/ext/curl/
H A Dinterface.c1361 length = Z_LVAL_P(retval_ptr); in curl_write()
1427 rval = Z_LVAL_P(retval_ptr); in curl_fnmatch()
1506 if (0 != Z_LVAL_P(retval_ptr)) { in curl_progress()
1659 length = Z_LVAL_P(retval_ptr); in curl_write_header()
1990 ch->id = Z_LVAL_P(return_value); in PHP_FUNCTION()
2018 zend_list_addref(Z_LVAL_P(zid)); in PHP_FUNCTION()
2096 dupch->id = Z_LVAL_P(return_value); in PHP_FUNCTION()
3282 zend_list_delete(Z_LVAL_P(zid)); in PHP_FUNCTION()
H A Dmulti.c115 zend_list_delete(Z_LVAL_P(z_ch)); in _php_curl_multi_cleanup_list()
124 Z_LVAL_P( z1 ) == Z_LVAL_PP( z2 ) ); in curl_compare_resources()
226 still_running = Z_LVAL_P(z_still_running); in PHP_FUNCTION()
335 zend_list_delete(Z_LVAL_P(z_mh)); in PHP_FUNCTION()
H A Dshare.c65 zend_list_delete(Z_LVAL_P(z_sh)); in PHP_FUNCTION()
/PHP-5.5/ext/date/
H A Dphp_date.c4105 obj->diff->n = Z_LVAL_P(value); \ in date_interval_write_property()
/PHP-5.5/ext/dba/
H A Ddba.c1056 if (Z_TYPE_P(zkey) == IS_NULL || (Z_TYPE_P(zkey) == IS_BOOL && !Z_LVAL_P(zkey))) { in PHP_FUNCTION()
/PHP-5.5/ext/dom/
H A Ddocument.c438 standalone = Z_LVAL_P(newval); in dom_document_standalone_write()
556 doc_prop->stricterror = Z_LVAL_P(newval); in dom_document_strict_error_checking_write()
599 doc_prop->formatoutput = Z_LVAL_P(newval); in dom_document_format_output_write()
641 doc_prop->validateonparse = Z_LVAL_P(newval); in dom_document_validate_on_parse_write()
683 doc_prop->resolveexternals = Z_LVAL_P(newval); in dom_document_resolve_externals_write()
725 doc_prop->preservewhitespace = Z_LVAL_P(newval); in dom_document_preserve_whitespace_write()
767 doc_prop->recover = Z_LVAL_P(newval); in dom_document_recover_write()
809 doc_prop->substituteentities = Z_LVAL_P(newval); in dom_document_substitue_entities_write()

Completed in 395 milliseconds

12345