Lines Matching refs:tmp

1244     zval *prop, tmp;  in object_properties_load()  local
1279 ZVAL_INDIRECT(&tmp, slot); in object_properties_load()
1280 zend_hash_update(object->properties, key, &tmp); in object_properties_load()
1356 zval tmp; in add_assoc_long_ex() local
1358 ZVAL_LONG(&tmp, n); in add_assoc_long_ex()
1359 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_long_ex()
1366 zval tmp; in add_assoc_null_ex() local
1368 ZVAL_NULL(&tmp); in add_assoc_null_ex()
1369 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_null_ex()
1376 zval tmp; in add_assoc_bool_ex() local
1378 ZVAL_BOOL(&tmp, b); in add_assoc_bool_ex()
1379 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_bool_ex()
1386 zval tmp; in add_assoc_resource_ex() local
1388 ZVAL_RES(&tmp, r); in add_assoc_resource_ex()
1389 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_resource_ex()
1396 zval tmp; in add_assoc_double_ex() local
1398 ZVAL_DOUBLE(&tmp, d); in add_assoc_double_ex()
1399 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_double_ex()
1406 zval tmp; in add_assoc_str_ex() local
1408 ZVAL_STR(&tmp, str); in add_assoc_str_ex()
1409 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_str_ex()
1416 zval tmp; in add_assoc_string_ex() local
1418 ZVAL_STRING(&tmp, str); in add_assoc_string_ex()
1419 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_string_ex()
1426 zval tmp; in add_assoc_stringl_ex() local
1428 ZVAL_STRINGL(&tmp, str, length); in add_assoc_stringl_ex()
1429 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_stringl_ex()
1443 zval tmp; in add_index_long() local
1445 ZVAL_LONG(&tmp, n); in add_index_long()
1446 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_long()
1453 zval tmp; in add_index_null() local
1455 ZVAL_NULL(&tmp); in add_index_null()
1456 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_null()
1463 zval tmp; in add_index_bool() local
1465 ZVAL_BOOL(&tmp, b); in add_index_bool()
1466 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_bool()
1473 zval tmp; in add_index_resource() local
1475 ZVAL_RES(&tmp, r); in add_index_resource()
1476 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_resource()
1483 zval tmp; in add_index_double() local
1485 ZVAL_DOUBLE(&tmp, d); in add_index_double()
1486 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_double()
1493 zval tmp; in add_index_str() local
1495 ZVAL_STR(&tmp, str); in add_index_str()
1496 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_str()
1503 zval tmp; in add_index_string() local
1505 ZVAL_STRING(&tmp, str); in add_index_string()
1506 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_string()
1513 zval tmp; in add_index_stringl() local
1515 ZVAL_STRINGL(&tmp, str, length); in add_index_stringl()
1516 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_stringl()
1530 zval tmp; in add_next_index_long() local
1532 ZVAL_LONG(&tmp, n); in add_next_index_long()
1533 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_long()
1539 zval tmp; in add_next_index_null() local
1541 ZVAL_NULL(&tmp); in add_next_index_null()
1542 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_null()
1548 zval tmp; in add_next_index_bool() local
1550 ZVAL_BOOL(&tmp, b); in add_next_index_bool()
1551 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_bool()
1557 zval tmp; in add_next_index_resource() local
1559 ZVAL_RES(&tmp, r); in add_next_index_resource()
1560 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_resource()
1566 zval tmp; in add_next_index_double() local
1568 ZVAL_DOUBLE(&tmp, d); in add_next_index_double()
1569 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_double()
1575 zval tmp; in add_next_index_str() local
1577 ZVAL_STR(&tmp, str); in add_next_index_str()
1578 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_str()
1584 zval tmp; in add_next_index_string() local
1586 ZVAL_STRING(&tmp, str); in add_next_index_string()
1587 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_string()
1593 zval tmp; in add_next_index_stringl() local
1595 ZVAL_STRINGL(&tmp, str, length); in add_next_index_stringl()
1596 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_stringl()
1608 zval tmp, *ret; in add_get_assoc_string_ex() local
1610 ZVAL_STRING(&tmp, str); in add_get_assoc_string_ex()
1611 ret = zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_get_assoc_string_ex()
1618 zval tmp, *ret; in add_get_assoc_stringl_ex() local
1620 ZVAL_STRINGL(&tmp, str, length); in add_get_assoc_stringl_ex()
1621 ret = zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_get_assoc_stringl_ex()
1628 zval tmp; in add_get_index_long() local
1630 ZVAL_LONG(&tmp, l); in add_get_index_long()
1631 return zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_get_index_long()
1637 zval tmp; in add_get_index_double() local
1639 ZVAL_DOUBLE(&tmp, d); in add_get_index_double()
1640 return zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_get_index_double()
1646 zval tmp; in add_get_index_str() local
1648 ZVAL_STR(&tmp, str); in add_get_index_str()
1649 return zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_get_index_str()
1655 zval tmp; in add_get_index_string() local
1657 ZVAL_STRING(&tmp, str); in add_get_index_string()
1658 return zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_get_index_string()
1664 zval tmp; in add_get_index_stringl() local
1666 ZVAL_STRINGL(&tmp, str, length); in add_get_index_stringl()
1667 return zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_get_index_stringl()
1714 zval tmp; in add_property_long_ex() local
1717 ZVAL_LONG(&tmp, n); in add_property_long_ex()
1719 Z_OBJ_HANDLER_P(arg, write_property)(arg, &z_key, &tmp, NULL); in add_property_long_ex()
1727 zval tmp; in add_property_bool_ex() local
1730 ZVAL_BOOL(&tmp, b); in add_property_bool_ex()
1732 Z_OBJ_HANDLER_P(arg, write_property)(arg, &z_key, &tmp, NULL); in add_property_bool_ex()
1740 zval tmp; in add_property_null_ex() local
1743 ZVAL_NULL(&tmp); in add_property_null_ex()
1745 Z_OBJ_HANDLER_P(arg, write_property)(arg, &z_key, &tmp, NULL); in add_property_null_ex()
1753 zval tmp; in add_property_resource_ex() local
1756 ZVAL_RES(&tmp, r); in add_property_resource_ex()
1758 Z_OBJ_HANDLER_P(arg, write_property)(arg, &z_key, &tmp, NULL); in add_property_resource_ex()
1759 zval_ptr_dtor(&tmp); /* write_property will add 1 to refcount */ in add_property_resource_ex()
1767 zval tmp; in add_property_double_ex() local
1770 ZVAL_DOUBLE(&tmp, d); in add_property_double_ex()
1772 Z_OBJ_HANDLER_P(arg, write_property)(arg, &z_key, &tmp, NULL); in add_property_double_ex()
1780 zval tmp; in add_property_str_ex() local
1783 ZVAL_STR(&tmp, str); in add_property_str_ex()
1785 Z_OBJ_HANDLER_P(arg, write_property)(arg, &z_key, &tmp, NULL); in add_property_str_ex()
1786 zval_ptr_dtor(&tmp); /* write_property will add 1 to refcount */ in add_property_str_ex()
1794 zval tmp; in add_property_string_ex() local
1797 ZVAL_STRING(&tmp, str); in add_property_string_ex()
1799 Z_OBJ_HANDLER_P(arg, write_property)(arg, &z_key, &tmp, NULL); in add_property_string_ex()
1800 zval_ptr_dtor(&tmp); /* write_property will add 1 to refcount */ in add_property_string_ex()
1808 zval tmp; in add_property_stringl_ex() local
1811 ZVAL_STRINGL(&tmp, str, length); in add_property_stringl_ex()
1813 Z_OBJ_HANDLER_P(arg, write_property)(arg, &z_key, &tmp, NULL); in add_property_stringl_ex()
1814 zval_ptr_dtor(&tmp); /* write_property will add 1 to refcount */ in add_property_stringl_ex()
1902 Bucket tmp; in zend_sort_modules() local
1916 tmp = *b1; in zend_sort_modules()
1918 *b2 = tmp; in zend_sort_modules()
3999 zval tmp; in zend_update_property_null() local
4001 ZVAL_NULL(&tmp); in zend_update_property_null()
4002 zend_update_property(scope, object, name, name_length, &tmp); in zend_update_property_null()
4026 zval tmp; in zend_update_property_bool() local
4028 ZVAL_BOOL(&tmp, value); in zend_update_property_bool()
4029 zend_update_property(scope, object, name, name_length, &tmp); in zend_update_property_bool()
4035 zval tmp; in zend_update_property_long() local
4037 ZVAL_LONG(&tmp, value); in zend_update_property_long()
4038 zend_update_property(scope, object, name, name_length, &tmp); in zend_update_property_long()
4044 zval tmp; in zend_update_property_double() local
4046 ZVAL_DOUBLE(&tmp, value); in zend_update_property_double()
4047 zend_update_property(scope, object, name, name_length, &tmp); in zend_update_property_double()
4053 zval tmp; in zend_update_property_str() local
4055 ZVAL_STR(&tmp, value); in zend_update_property_str()
4056 zend_update_property(scope, object, name, name_length, &tmp); in zend_update_property_str()
4062 zval tmp; in zend_update_property_string() local
4064 ZVAL_STRING(&tmp, value); in zend_update_property_string()
4065 Z_SET_REFCOUNT(tmp, 0); in zend_update_property_string()
4066 zend_update_property(scope, object, name, name_length, &tmp); in zend_update_property_string()
4072 zval tmp; in zend_update_property_stringl() local
4074 ZVAL_STRINGL(&tmp, value, value_len); in zend_update_property_stringl()
4075 Z_SET_REFCOUNT(tmp, 0); in zend_update_property_stringl()
4076 zend_update_property(scope, object, name, name_length, &tmp); in zend_update_property_stringl()
4122 zval tmp; in zend_update_static_property_null() local
4124 ZVAL_NULL(&tmp); in zend_update_static_property_null()
4125 return zend_update_static_property(scope, name, name_length, &tmp); in zend_update_static_property_null()
4131 zval tmp; in zend_update_static_property_bool() local
4133 ZVAL_BOOL(&tmp, value); in zend_update_static_property_bool()
4134 return zend_update_static_property(scope, name, name_length, &tmp); in zend_update_static_property_bool()
4140 zval tmp; in zend_update_static_property_long() local
4142 ZVAL_LONG(&tmp, value); in zend_update_static_property_long()
4143 return zend_update_static_property(scope, name, name_length, &tmp); in zend_update_static_property_long()
4149 zval tmp; in zend_update_static_property_double() local
4151 ZVAL_DOUBLE(&tmp, value); in zend_update_static_property_double()
4152 return zend_update_static_property(scope, name, name_length, &tmp); in zend_update_static_property_double()
4158 zval tmp; in zend_update_static_property_string() local
4160 ZVAL_STRING(&tmp, value); in zend_update_static_property_string()
4161 Z_SET_REFCOUNT(tmp, 0); in zend_update_static_property_string()
4162 return zend_update_static_property(scope, name, name_length, &tmp); in zend_update_static_property_string()
4168 zval tmp; in zend_update_static_property_stringl() local
4170 ZVAL_STRINGL(&tmp, value, value_len); in zend_update_static_property_stringl()
4171 Z_SET_REFCOUNT(tmp, 0); in zend_update_static_property_stringl()
4172 return zend_update_static_property(scope, name, name_length, &tmp); in zend_update_static_property_stringl()