pv                 74 Zend/zend_exceptions.c 	zval  pv, zv, rv;
pv                 80 Zend/zend_exceptions.c 	ZVAL_OBJ(&pv, add_previous);
pv                 81 Zend/zend_exceptions.c 	if (!instanceof_function(Z_OBJCE(pv), zend_ce_throwable)) {
pv                 88 Zend/zend_exceptions.c 		ancestor = zend_read_property(i_get_exception_base(&pv), &pv, "previous", sizeof("previous")-1, 1, &rv);
pv                 99 Zend/zend_exceptions.c 			zend_update_property(base_ce, ex, "previous", sizeof("previous")-1, &pv);
pv               1103 Zend/zend_execute_API.c 	zval pv;
pv               1109 Zend/zend_execute_API.c 		ZVAL_NEW_STR(&pv, zend_string_alloc(str_len + sizeof("return ;")-1, 1));
pv               1110 Zend/zend_execute_API.c 		memcpy(Z_STRVAL(pv), "return ", sizeof("return ") - 1);
pv               1111 Zend/zend_execute_API.c 		memcpy(Z_STRVAL(pv) + sizeof("return ") - 1, str, str_len);
pv               1112 Zend/zend_execute_API.c 		Z_STRVAL(pv)[Z_STRLEN(pv) - 1] = ';';
pv               1113 Zend/zend_execute_API.c 		Z_STRVAL(pv)[Z_STRLEN(pv)] = '\0';
pv               1115 Zend/zend_execute_API.c 		ZVAL_STRINGL(&pv, str, str_len);
pv               1122 Zend/zend_execute_API.c 	new_op_array = zend_compile_string(&pv, string_name);
pv               1158 Zend/zend_execute_API.c 	zval_dtor(&pv);
pv                105 ext/com_dotnet/com_persist.c static HRESULT STDMETHODCALLTYPE stm_read(IStream *This, void *pv, ULONG cb, ULONG *pcbRead)
pv                110 ext/com_dotnet/com_persist.c 	nread = (ULONG)php_stream_read(stm->stream, pv, cb);
pv                121 ext/com_dotnet/com_persist.c static HRESULT STDMETHODCALLTYPE stm_write(IStream *This, void const *pv, ULONG cb, ULONG *pcbWritten)
pv                126 ext/com_dotnet/com_persist.c 	nwrote = (ULONG)php_stream_write(stm->stream, pv, cb);
pv               1063 ext/mbstring/libmbfl/mbfl/mbfilter.c 			const unsigned char *pv = p;
pv               1083 ext/mbstring/libmbfl/mbfl/mbfilter.c 			if (p <= pv) {
pv               1084 ext/mbstring/libmbfl/mbfl/mbfilter.c 				p = pv + 1;
pv               1149 ext/mbstring/libmbfl/mbfl/mbfilter.c 			const unsigned char *pv = p;
pv               1171 ext/mbstring/libmbfl/mbfl/mbfilter.c 			if (p >= pv) {
pv               1172 ext/mbstring/libmbfl/mbfl/mbfilter.c 				p = pv - 1;
pv                806 sapi/phpdbg/phpdbg_bp.c 	zval pv;
pv                826 sapi/phpdbg/phpdbg_bp.c 	Z_STR(pv) = zend_string_alloc(expr_len + sizeof("return ;") - 1, 0);
pv                827 sapi/phpdbg/phpdbg_bp.c 	memcpy(Z_STRVAL(pv), "return ", sizeof("return ") - 1);
pv                828 sapi/phpdbg/phpdbg_bp.c 	memcpy(Z_STRVAL(pv) + sizeof("return ") - 1, expr, expr_len);
pv                829 sapi/phpdbg/phpdbg_bp.c 	Z_STRVAL(pv)[Z_STRLEN(pv) - 1] = ';';
pv                830 sapi/phpdbg/phpdbg_bp.c 	Z_STRVAL(pv)[Z_STRLEN(pv)] = '\0';
pv                831 sapi/phpdbg/phpdbg_bp.c 	Z_TYPE_INFO(pv) = IS_STRING;
pv                833 sapi/phpdbg/phpdbg_bp.c 	new_break.ops = zend_compile_string(&pv, "Conditional Breakpoint Code");
pv                835 sapi/phpdbg/phpdbg_bp.c 	zval_dtor(&pv);