Home
last modified time | relevance | path

Searched refs:Z_LVAL (Results 1 – 25 of 44) sorted by relevance

12

/php-src/Zend/
H A Dzend_vm_trace_map.h48 if (Z_LVAL(p1->val) > Z_LVAL(p2->val)) { in zend_vm_trace_compare()
50 } else if (Z_LVAL(p1->val) < Z_LVAL(p2->val)) { in zend_vm_trace_compare()
H A Dzend_vm_trace_handlers.h56 if (Z_LVAL(p1->val) < Z_LVAL(p2->val)) { in zend_vm_trace_compare()
58 } else if (Z_LVAL(p1->val) > Z_LVAL(p2->val)) { in zend_vm_trace_compare()
H A Dzend_attributes.c58 if (Z_LVAL(flags) & ~ZEND_ATTRIBUTE_FLAGS) { in validate_attribute()
327 internal_attr->flags = Z_LVAL(attr->args[0].value); in zend_mark_internal_attribute()
H A Dzend_vm_execute.skl104 Z_LVAL(tmp) = i;
/php-src/ext/zend_test/
H A Diterators.c52 ZVAL_LONG(&iterator->current, Z_LVAL(iterator->current) + 1); in test_traversable_it_next()
58 if (Z_LVAL(iterator->current) < 4) { in test_traversable_it_valid()
67 ZVAL_LONG(return_value, Z_LVAL(iterator->current)); in test_traversable_it_key()
/php-src/ext/pdo_sqlite/
H A Dpdo_sqlite.c357 if (Z_LVAL(retval) > 0) { in php_sqlite_collation_callback()
359 } else if (Z_LVAL(retval) < 0) { in php_sqlite_collation_callback()
H A Dsqlite_driver.c387 sqlite3_result_int(context, Z_LVAL(retval)); in do_callback()
464 if (Z_LVAL(retval) > 0) { in php_sqlite3_collation_callback()
466 } else if (Z_LVAL(retval) < 0) { in php_sqlite3_collation_callback()
/php-src/ext/com_dotnet/
H A Dcom_saproxy.c171 indices[i] = (LONG)Z_LVAL(proxy->indices[i]); in saproxy_read_dimension()
248 indices[i] = (LONG)Z_LVAL(proxy->indices[i]); in saproxy_write_dimension()
548 I->indices[i] = (LONG)Z_LVAL(proxy->indices[i]); in php_com_saproxy_iter_get()
H A Dcom_typeinfo.c228 ZVAL_LONG(&c.value, Z_LVAL(value)); in php_com_import_typelib()
/php-src/ext/intl/collator/
H A Dcollator_sort.c212 if( Z_LVAL(result) < 0 ) in collator_compare_func()
214 else if( Z_LVAL(result) > 0 ) in collator_compare_func()
/php-src/ext/intl/common/
H A Dcommon_date.cpp131 *millis = U_MILLIS_PER_SECOND * (double)Z_LVAL(retval) + (datetime->time->us / 1000); in intl_datetime_decompose()
/php-src/ext/session/
H A Dmod_user.c213 *nrdels = Z_LVAL(retval); in PS_GC_FUNC()
/php-src/sapi/phpdbg/
H A Dphpdbg_frame.c272 Z_LVAL(startline) = zend_get_executed_lineno(); in phpdbg_dump_backtrace()
H A Dphpdbg_info.c146 VARIABLEINFO("\nint ("ZEND_LONG_FMT")", Z_LVAL(data->value)); in PHPDBG_INFO()
/php-src/ext/standard/
H A Dpack.c1260 int size = sizeof(Z_LVAL(val)); in PHP_MINIT_FUNCTION()
1261 Z_LVAL(val)=0; /*silence a warning*/ in PHP_MINIT_FUNCTION()
H A Duser_filters.c184 ret = (int)Z_LVAL(retval); in userfilter_filter()
H A Darray.c1240 if (min_lval > Z_LVAL(args[i])) { in PHP_FUNCTION()
1241 min_lval = Z_LVAL(args[i]); in PHP_FUNCTION()
1264 …} else if (Z_TYPE(args[i]) == IS_LONG && (zend_dval_to_lval((double) Z_LVAL(args[i])) == Z_LVAL(ar… in PHP_FUNCTION()
1266 if (min_dval > (double)Z_LVAL(args[i])) { in PHP_FUNCTION()
1267 min_dval = (double)Z_LVAL(args[i]); in PHP_FUNCTION()
1368 if (max_lval < Z_LVAL(args[i])) { in PHP_FUNCTION()
1369 max_lval = Z_LVAL(args[i]); in PHP_FUNCTION()
1392 …} else if (Z_TYPE(args[i]) == IS_LONG && (zend_dval_to_lval((double) Z_LVAL(args[i])) == Z_LVAL(ar… in PHP_FUNCTION()
1394 if (max_dval < (double)Z_LVAL(args[i])) { in PHP_FUNCTION()
1395 max_dval = (double)Z_LVAL(args[i]); in PHP_FUNCTION()
/php-src/ext/intl/converter/
H A Dconverter.c241 *pErrorCode = Z_LVAL(zargs[3]); in php_converter_to_u_callback()
322 *pErrorCode = Z_LVAL(zargs[3]); in php_converter_from_u_callback()
/php-src/Zend/Optimizer/
H A Dcompact_literals.c358 if ((pos = zend_hash_index_find(&hash, Z_LVAL(op_array->literals[i]))) != NULL) { in zend_optimizer_compact_literals()
363 zend_hash_index_add_new(&hash, Z_LVAL(op_array->literals[i]), &zv); in zend_optimizer_compact_literals()
H A Dblock_pass.c354 Z_LVAL(OPLINE_OP2_LITERAL(sv)) == 1 in zend_optimize_block()
357 char *fname = FUNCTION_CACHE->funcs[Z_LVAL(ZEND_OP1_LITERAL(fcall))].function_name; in zend_optimize_block()
358 size_t flen = FUNCTION_CACHE->funcs[Z_LVAL(ZEND_OP1_LITERAL(fcall))].name_len; in zend_optimize_block()
/php-src/ext/spl/
H A Dspl_heap.c241 zend_long a = Z_LVAL(((spl_pqueue_elem*) x)->priority); in spl_ptr_pqueue_elem_cmp_long()
242 zend_long b = Z_LVAL(((spl_pqueue_elem*) y)->priority); in spl_ptr_pqueue_elem_cmp_long()
/php-src/ext/sqlite3/
H A Dsqlite3.c822 sqlite3_result_int64(context, Z_LVAL(retval)); in sqlite3_do_callback()
824 sqlite3_result_int(context, Z_LVAL(retval)); in sqlite3_do_callback()
929 ret = Z_LVAL(retval); in php_sqlite3_callback_compare()
2132 authreturn = Z_LVAL(retval); in php_sqlite3_authorizer()
/php-src/main/streams/
H A Duserspace.c591 didwrite = Z_LVAL(retval); in php_userstreamop_write()
785 *newoffs = Z_LVAL(retval); in php_userstreamop_seek()
/php-src/docs/source/core/data-structures/
H A Dzval.rst142 - - ``Z_LVAL[_P]``
/php-src/ext/pdo/
H A Dpdo_stmt.c926 …_index_update((return_all ? Z_ARRVAL_P(return_all) : Z_ARRVAL_P(return_value)), Z_LVAL(val), &tmp); in do_fetch()
1753 if (Z_LVAL(args[0]) < 0) { in pdo_stmt_setup_fetch_mode()
1757 stmt->fetch.column = Z_LVAL(args[0]); in pdo_stmt_setup_fetch_mode()

Completed in 158 milliseconds

12