summaryrefslogtreecommitdiffstats
path: root/REFLECTION
blob: 15efc03800737a4788c390a969b118024088cec4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
Extension [ <persistent> extension #75 hdrhistogram version 0.5.0 ] {

  - Functions {
    Function [ <internal:hdrhistogram> function hdr_init ] {

      - Parameters [3] {
        Parameter #0 [ <required> int $lowest_trackable_value ]
        Parameter #1 [ <required> int $highest_trackable_value ]
        Parameter #2 [ <required> int $significant_figures ]
      }
      - Return [ HdrHistogram\Histogram|false ]
    }
    Function [ <internal:hdrhistogram> function hdr_get_memory_size ] {

      - Parameters [1] {
        Parameter #0 [ <required> HdrHistogram\Histogram $hdr ]
      }
      - Return [ int ]
    }
    Function [ <internal:hdrhistogram> function hdr_record_value ] {

      - Parameters [2] {
        Parameter #0 [ <required> HdrHistogram\Histogram $hdr ]
        Parameter #1 [ <required> int $value ]
      }
      - Return [ bool ]
    }
    Function [ <internal:hdrhistogram> function hdr_record_values ] {

      - Parameters [3] {
        Parameter #0 [ <required> HdrHistogram\Histogram $hdr ]
        Parameter #1 [ <required> int $value ]
        Parameter #2 [ <required> int $count ]
      }
      - Return [ bool ]
    }
    Function [ <internal:hdrhistogram> function hdr_record_corrected_value ] {

      - Parameters [3] {
        Parameter #0 [ <required> HdrHistogram\Histogram $hdr ]
        Parameter #1 [ <required> int $value ]
        Parameter #2 [ <required> int $expected_interval ]
      }
      - Return [ bool ]
    }
    Function [ <internal:hdrhistogram> function hdr_mean ] {

      - Parameters [1] {
        Parameter #0 [ <required> HdrHistogram\Histogram $hdr ]
      }
      - Return [ float ]
    }
    Function [ <internal:hdrhistogram> function hdr_stddev ] {

      - Parameters [1] {
        Parameter #0 [ <required> HdrHistogram\Histogram $hdr ]
      }
      - Return [ float ]
    }
    Function [ <internal:hdrhistogram> function hdr_min ] {

      - Parameters [1] {
        Parameter #0 [ <required> HdrHistogram\Histogram $hdr ]
      }
      - Return [ int ]
    }
    Function [ <internal:hdrhistogram> function hdr_max ] {

      - Parameters [1] {
        Parameter #0 [ <required> HdrHistogram\Histogram $hdr ]
      }
      - Return [ int ]
    }
    Function [ <internal:hdrhistogram> function hdr_total_count ] {

      - Parameters [1] {
        Parameter #0 [ <required> HdrHistogram\Histogram $hdr ]
      }
      - Return [ int ]
    }
    Function [ <internal:hdrhistogram> function hdr_reset ] {

      - Parameters [1] {
        Parameter #0 [ <required> HdrHistogram\Histogram $hdr ]
      }
      - Return [ void ]
    }
    Function [ <internal:hdrhistogram> function hdr_count_at_value ] {

      - Parameters [2] {
        Parameter #0 [ <required> HdrHistogram\Histogram $hdr ]
        Parameter #1 [ <required> int $value ]
      }
      - Return [ int ]
    }
    Function [ <internal:hdrhistogram> function hdr_value_at_percentile ] {

      - Parameters [2] {
        Parameter #0 [ <required> HdrHistogram\Histogram $hdr ]
        Parameter #1 [ <required> float $percentile ]
      }
      - Return [ int ]
    }
    Function [ <internal:hdrhistogram> function hdr_add ] {

      - Parameters [2] {
        Parameter #0 [ <required> HdrHistogram\Histogram $hdr1 ]
        Parameter #1 [ <required> HdrHistogram\Histogram $hdr2 ]
      }
      - Return [ HdrHistogram\Histogram|false ]
    }
    Function [ <internal:hdrhistogram> function hdr_merge_into ] {

      - Parameters [2] {
        Parameter #0 [ <required> HdrHistogram\Histogram $hdr1 ]
        Parameter #1 [ <required> HdrHistogram\Histogram $hdr2 ]
      }
      - Return [ int ]
    }
    Function [ <internal:hdrhistogram> function hdr_iter_init ] {

      - Parameters [1] {
        Parameter #0 [ <required> HdrHistogram\Histogram $hdr ]
      }
      - Return [ HdrHistogram\Iterator|false ]
    }
    Function [ <internal:hdrhistogram> function hdr_iter_next ] {

      - Parameters [1] {
        Parameter #0 [ <required> HdrHistogram\Iterator $hdr ]
      }
      - Return [ array|false ]
    }
    Function [ <internal:hdrhistogram> function hdr_percentile_iter_init ] {

      - Parameters [2] {
        Parameter #0 [ <required> HdrHistogram\Histogram $hdr ]
        Parameter #1 [ <required> int $ticks_per_half_distance ]
      }
      - Return [ HdrHistogram\Iterator\Percentile|false ]
    }
    Function [ <internal:hdrhistogram> function hdr_percentile_iter_next ] {

      - Parameters [1] {
        Parameter #0 [ <required> HdrHistogram\Iterator\Percentile $hdr ]
      }
      - Return [ array|false ]
    }
    Function [ <internal:hdrhistogram> function hdr_export ] {

      - Parameters [1] {
        Parameter #0 [ <required> HdrHistogram\Histogram $hdr ]
      }
      - Return [ array ]
    }
    Function [ <internal:hdrhistogram> function hdr_import ] {

      - Parameters [1] {
        Parameter #0 [ <required> array $import ]
      }
      - Return [ HdrHistogram\Histogram|false ]
    }
    Function [ <internal:hdrhistogram> function hdr_base64_encode ] {

      - Parameters [1] {
        Parameter #0 [ <required> HdrHistogram\Histogram $hdr ]
      }
      - Return [ string|false ]
    }
    Function [ <internal:hdrhistogram> function hdr_base64_decode ] {

      - Parameters [1] {
        Parameter #0 [ <required> string $data ]
      }
      - Return [ HdrHistogram\Histogram|false ]
    }
  }

  - Classes [3] {
    Class [ <internal:hdrhistogram> final class HdrHistogram\Histogram ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [1] {
        Method [ <internal:hdrhistogram, ctor> public method __construct ] {

          - Parameters [3] {
            Parameter #0 [ <required> int $lowestDiscernibleValue ]
            Parameter #1 [ <required> int $highestTrackableValue ]
            Parameter #2 [ <required> int $significantFigures ]
          }
        }
      }
    }

    Class [ <internal:hdrhistogram> final class HdrHistogram\Iterator ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [1] {
        Method [ <internal:hdrhistogram, ctor> public method __construct ] {

          - Parameters [1] {
            Parameter #0 [ <required> HdrHistogram\Histogram $histogram ]
          }
        }
      }
    }

    Class [ <internal:hdrhistogram> final class HdrHistogram\Iterator\Percentile ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [1] {
        Method [ <internal:hdrhistogram, ctor> public method __construct ] {

          - Parameters [2] {
            Parameter #0 [ <required> HdrHistogram\Histogram $histogram ]
            Parameter #1 [ <required> int $ticksPerHalfDistance ]
          }
        }
      }
    }
  }
}