Searched refs:rope (Results 1 – 10 of 10) sorted by relevance
/php-src/Zend/tests/ |
H A D | exception_in_rope_end.phpt | 2 Exception during rope finalization
|
H A D | exception_in_nested_rope.phpt | 2 Exception during nested rope
|
H A D | rope_with_exception.phpt | 2 Exceptions thrown into a rope must not leak
|
/php-src/Zend/tests/temporary_cleaning/ |
H A D | temporary_cleaning_002.phpt | 2 Temporary leak on rope (encapsed string)
|
/php-src/ext/zend_test/tests/ |
H A D | strings_not_marked_as_utf8.phpt | 109 $rope = "$foo$bar$baz"; 110 var_dump(zend_test_is_string_marked_as_valid_utf8($rope));
|
H A D | strings_marked_as_utf8.phpt | 114 $rope = "$foo$bar$baz"; 115 var_dump(zend_test_is_string_marked_as_valid_utf8($rope));
|
/php-src/Zend/ |
H A D | zend_vm_def.h | 3367 zend_string **rope; variable 3374 rope[0] = Z_STR_P(var); 3384 rope[0] = Z_STR_P(var); 3391 rope[0] = zval_get_string_func(var); 3402 zend_string **rope; variable 3437 zend_string **rope; variable 3465 zend_string_release_ex(rope[i], 0); 3477 len += ZSTR_LEN(rope[i]); 3485 memcpy(target, ZSTR_VAL(rope[i]), ZSTR_LEN(rope[i])); 3486 target += ZSTR_LEN(rope[i]); [all …]
|
H A D | zend_vm_execute.h | 20596 zend_string **rope; in ZEND_ROPE_ADD_SPEC_TMP_CONST_HANDLER() local 20631 zend_string **rope; in ZEND_ROPE_END_SPEC_TMP_CONST_HANDLER() local 20679 memcpy(target, ZSTR_VAL(rope[i]), ZSTR_LEN(rope[i])); in ZEND_ROPE_END_SPEC_TMP_CONST_HANDLER() 21073 zend_string **rope; in ZEND_ROPE_ADD_SPEC_TMP_TMPVAR_HANDLER() local 21108 zend_string **rope; in ZEND_ROPE_END_SPEC_TMP_TMPVAR_HANDLER() local 21156 memcpy(target, ZSTR_VAL(rope[i]), ZSTR_LEN(rope[i])); in ZEND_ROPE_END_SPEC_TMP_TMPVAR_HANDLER() 21930 zend_string **rope; in ZEND_ROPE_ADD_SPEC_TMP_CV_HANDLER() local 21965 zend_string **rope; in ZEND_ROPE_END_SPEC_TMP_CV_HANDLER() local 22013 memcpy(target, ZSTR_VAL(rope[i]), ZSTR_LEN(rope[i])); in ZEND_ROPE_END_SPEC_TMP_CV_HANDLER() 34804 zend_string **rope; in ZEND_ROPE_INIT_SPEC_UNUSED_CONST_HANDLER() local [all …]
|
H A D | zend_execute.c | 4756 zend_string **rope = (zend_string **)var; in cleanup_live_vars() local 4764 zend_string_release_ex(*rope, 0); in cleanup_live_vars() 4768 zend_string_release_ex(rope[j], 0); in cleanup_live_vars()
|
/php-src/ext/opcache/jit/ |
H A D | zend_jit_helpers.c | 3343 static zend_string* ZEND_FASTCALL zend_jit_rope_end(zend_string **rope, uint32_t count) in zend_jit_rope_end() argument 3351 flags &= ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(rope[i]); in zend_jit_rope_end() 3352 len += ZSTR_LEN(rope[i]); in zend_jit_rope_end() 3359 target = zend_mempcpy(target, ZSTR_VAL(rope[i]), ZSTR_LEN(rope[i])); in zend_jit_rope_end() 3360 zend_string_release_ex(rope[i], 0); in zend_jit_rope_end()
|
Completed in 244 milliseconds