From 855510660a01cef799f88cec4f13dc8fc66e1c05 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 9 Dec 2020 15:38:40 +0100 Subject: update to 0.4.2 raise dependency on PHP 7 add patch for PHP 8 (missing arginfo) from https://github.com/beberlei/hdrhistogram-php/pull/13 --- REFLECTION | 106 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 105 insertions(+), 1 deletion(-) (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION index 7659450..f95ee95 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,51 +1,155 @@ -Extension [ extension #73 hdrhistogram version 0.3.0 ] { +Extension [ extension #73 hdrhistogram version 0.4.2 ] { - Functions { Function [ function hdr_init ] { + + - Parameters [3] { + Parameter #0 [ $lowest_trackable_value ] + Parameter #1 [ $highest_trackable_value ] + Parameter #2 [ $significant_figures ] + } } Function [ function hdr_get_memory_size ] { + + - Parameters [1] { + Parameter #0 [ $hdr ] + } } Function [ function hdr_record_value ] { + + - Parameters [2] { + Parameter #0 [ $hdr ] + Parameter #1 [ $value ] + } } Function [ function hdr_record_values ] { + + - Parameters [3] { + Parameter #0 [ $hdr ] + Parameter #1 [ $value ] + Parameter #2 [ $count ] + } } Function [ function hdr_record_corrected_value ] { + + - Parameters [3] { + Parameter #0 [ $hdr ] + Parameter #1 [ $value ] + Parameter #2 [ $expected_interval ] + } } Function [ function hdr_mean ] { + + - Parameters [1] { + Parameter #0 [ $hdr ] + } } Function [ function hdr_stddev ] { + + - Parameters [1] { + Parameter #0 [ $hdr ] + } } Function [ function hdr_min ] { + + - Parameters [1] { + Parameter #0 [ $hdr ] + } } Function [ function hdr_max ] { + + - Parameters [1] { + Parameter #0 [ $hdr ] + } } Function [ function hdr_total_count ] { + + - Parameters [1] { + Parameter #0 [ $hdr ] + } } Function [ function hdr_reset ] { + + - Parameters [1] { + Parameter #0 [ $hdr ] + } } Function [ function hdr_count_at_value ] { + + - Parameters [2] { + Parameter #0 [ $hdr ] + Parameter #1 [ $value ] + } } Function [ function hdr_value_at_percentile ] { + + - Parameters [2] { + Parameter #0 [ $hdr ] + Parameter #1 [ $percentile ] + } } Function [ function hdr_add ] { + + - Parameters [2] { + Parameter #0 [ $hdr1 ] + Parameter #1 [ $hdr2 ] + } } Function [ function hdr_merge_into ] { + + - Parameters [2] { + Parameter #0 [ $hdr1 ] + Parameter #1 [ $hdr2 ] + } } Function [ function hdr_iter_init ] { + + - Parameters [1] { + Parameter #0 [ $hdr ] + } } Function [ function hdr_iter_next ] { + + - Parameters [1] { + Parameter #0 [ $hdr ] + } } Function [ function hdr_percentile_iter_init ] { + + - Parameters [2] { + Parameter #0 [ $hdr ] + Parameter #1 [ $ticks_per_half_distance ] + } } Function [ function hdr_percentile_iter_next ] { + + - Parameters [1] { + Parameter #0 [ $hdr ] + } } Function [ function hdr_export ] { + + - Parameters [1] { + Parameter #0 [ $hdr ] + } } Function [ function hdr_import ] { + + - Parameters [1] { + Parameter #0 [ $import ] + } } Function [ function hdr_base64_encode ] { + + - Parameters [1] { + Parameter #0 [ $hdr ] + } } Function [ function hdr_base64_decode ] { + + - Parameters [1] { + Parameter #0 [ $data ] + } } } } -- cgit