/third_party/boost/libs/random/test/ |
D | test_piecewise_linear.cpp | 32 cumulative(1, 0.0) in piecewise_linear() 35 cumulative.push_back((weights[i] + weights[i + 1]) / 2); in piecewise_linear() 37 boost::partial_sum(cumulative, cumulative.begin()); in piecewise_linear() 38 double sum = cumulative.back(); in piecewise_linear() 39 for(std::vector<double>::iterator iter = cumulative.begin(), end = cumulative.end(); in piecewise_linear() 50 assert(this->weights.size() == this->cumulative.size()); in piecewise_linear() 59 double start = cumulative[index - 1]; in cdf() 72 std::vector<double> cumulative; member in piecewise_linear
|
D | test_piecewise_constant.cpp | 30 cumulative(1, 0.0) in piecewise_constant() 32 boost::partial_sum(weights, std::back_inserter(cumulative)); in piecewise_constant() 33 for(std::vector<double>::iterator iter = cumulative.begin(), end = cumulative.end(); in piecewise_constant() 36 *iter /= cumulative.back(); in piecewise_constant() 46 double lower_weight = cumulative[index - 1]; in cdf() 47 double upper_weight = cumulative[index]; in cdf() 55 std::vector<double> cumulative; member in piecewise_constant
|
/third_party/boost/tools/build/src/engine/ |
D | debug.cpp | 45 p->cumulative = 0; in profile_enter() 94 frame->info->cumulative += t; in profile_exit() 121 profile_total.cumulative += p->net; in dump_profile_entry() 125 p->cumulative, p->net, q, p->memory, mem_each, object_str( p->name ) ); in dump_profile_entry()
|
D | debug.h | 21 double cumulative; member
|
/third_party/flutter/flutter/packages/flutter/test/foundation/ |
D | consolidate_response_test.dart | 77 onBytesReceived: (int cumulative, int total) { 78 records.addAll(<int>[cumulative, total]); 121 onBytesReceived: (int cumulative, int total) { 177 onBytesReceived: (int cumulative, int total) { 178 records.addAll(<int>[cumulative, total]); 197 onBytesReceived: (int cumulative, int total) { 198 records.addAll(<int>[cumulative, total]);
|
/third_party/python/Lib/ |
D | tracemalloc.py | 477 def _group_by(self, key_type, cumulative): argument 480 if cumulative and key_type not in ('lineno', 'filename'): 486 if not cumulative: 528 def statistics(self, key_type, cumulative=False): argument 533 grouped = self._group_by(key_type, cumulative) 538 def compare_to(self, old_snapshot, key_type, cumulative=False): argument 544 new_group = self._group_by(key_type, cumulative) 545 old_group = old_snapshot._group_by(key_type, cumulative)
|
/third_party/selinux/libselinux/utils/ |
D | avcstat.c | 98 int fd, i, cumulative = 0; in main() local 110 cumulative = 1; in main() 207 if (cumulative || !i) in main()
|
/third_party/abseil-cpp/absl/random/ |
D | poisson_distribution_test.cc | 223 double cumulative = e_neg_mean; in InitCDF() local 225 cdf_.push_back({0, e_neg_mean, cumulative}); in InitCDF() 230 cumulative += result; in InitCDF() 231 if (result < 1e-10 && result < last_result && cumulative > 0.999999) { in InitCDF() 235 cdf_.push_back({i, result, cumulative}); in InitCDF()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
D | poisson_distribution_test.cc | 223 double cumulative = e_neg_mean; in InitCDF() local 225 cdf_.push_back({0, e_neg_mean, cumulative}); in InitCDF() 230 cumulative += result; in InitCDF() 231 if (result < 1e-10 && result < last_result && cumulative > 0.999999) { in InitCDF() 235 cdf_.push_back({i, result, cumulative}); in InitCDF()
|
/third_party/grpc/src/core/ext/filters/http/server/ |
D | http_server_filter.cc | 117 static void hs_add_error(const char* error_name, grpc_error** cumulative, in hs_add_error() argument 120 if (*cumulative == GRPC_ERROR_NONE) { in hs_add_error() 121 *cumulative = GRPC_ERROR_CREATE_FROM_COPIED_STRING(error_name); in hs_add_error() 123 *cumulative = grpc_error_add_child(*cumulative, new_err); in hs_add_error()
|
/third_party/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_program.c | 480 brw->shader_time.cumulative = rzalloc_array(brw, struct shader_times, in brw_init_shader_time() 543 written = brw->shader_time.cumulative[i].written; in brw_report_shader_time() 544 reset = brw->shader_time.cumulative[i].reset; in brw_report_shader_time() 556 uint64_t time = brw->shader_time.cumulative[i].time; in brw_report_shader_time() 661 brw->shader_time.cumulative[i].time += times[BRW_SHADER_TIME_STRIDE * 0 / 4]; in brw_collect_shader_time() 662 brw->shader_time.cumulative[i].written += times[BRW_SHADER_TIME_STRIDE * 1 / 4]; in brw_collect_shader_time() 663 brw->shader_time.cumulative[i].reset += times[BRW_SHADER_TIME_STRIDE * 2 / 4]; in brw_collect_shader_time()
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/ |
D | StatisticsTool.java | 150 double cumulative = 0; in dumpNGrams() local 176 cumulative += ratio; in dumpNGrams() 183 output.println(value + "\t" + refCount + "\t" + ratio + "%\t" + cumulative + "%"); in dumpNGrams()
|
/third_party/mindspore/mindspore/lite/test/config/ |
D | models_caffe_fp16.cfg | 92 … is adjusted to [0,255], the precision will decrease to 15.5415%, and the rest is cumulative error. 125 # ml_face_mnet: The precision problem caused by cumulative error.
|
D | models_tf_fp16.cfg | 26 # The Difference of output node divided by 0 results in cumulative deviation
|
/third_party/flutter/flutter/packages/flutter/lib/src/painting/ |
D | _network_image_io.dart | 94 onBytesReceived: (int cumulative, int total) { 96 cumulativeBytesLoaded: cumulative,
|
/third_party/boost/libs/math/doc/distributions/ |
D | empirical_cdf.qbk | 34 The empirical cumulative distribution function is a step function constructed from observed data wh…
|
D | nag_library.qbk | 6 …-us/excel/HP052090051033.aspx Microsoft Excel BINOMDIST(number_s,trials,probability_s,cumulative)],
|
/third_party/flutter/flutter/packages/flutter/lib/src/foundation/ |
D | consolidate_response.dart | 13 /// The `cumulative` parameter will contain the total number of bytes received 26 typedef BytesReceivedCallback = void Function(int cumulative, int total);
|
/third_party/python/Doc/library/ |
D | profile.rst | 98 is the cumulative time spent in this and all subfunctions (from invocation 164 This sorts the profile by cumulative time in a function, and then only prints 187 cumulative time, and then prints out some of the statistics. To be specific, the 410 | ``'cumulative'`` | SortKey.CUMULATIVE | cumulative time | 412 | ``'cumtime'`` | N/A | cumulative time | 450 ``'calls'``, ``'time'``, and ``'cumulative'`` respectively. If this old 511 second non-parenthesized number repeats the cumulative time spent in the 516 cumulative times spent in the current function while it was invoked by 567 cumulative times in this profiler allows statistics for recursive
|
D | tracemalloc.rst | 377 by ``'traceback'`` or to compute cumulative statistics: see the 534 .. method:: compare_to(old_snapshot: Snapshot, key_type: str, cumulative: bool=False) 539 See the :meth:`Snapshot.statistics` method for *key_type* and *cumulative* 577 .. method:: statistics(key_type: str, cumulative: bool=False) 590 If *cumulative* is ``True``, cumulate size and count of memory blocks of 592 The cumulative mode can only be used with *key_type* equals to
|
/third_party/gstreamer/gstplugins_good/gst/cutter/ |
D | README | 32 the cumulative length is more than the runlength
|
/third_party/boost/libs/math/doc/statistics/ |
D | anderson_darling.qbk | 27 …from a normal distribution by computing an integral over the empirical cumulative distribution fun… 32 where /F/[sub /n/] is the empirical cumulative distribution and /F/ is the CDF of the normal distri…
|
/third_party/boost/libs/serialization/doc/ |
D | profile1.txt | 6 % cumulative self self total 16 cumulative a running sum of the number of seconds accounted
|
D | profile3.txt | 6 % cumulative self self total 17 cumulative a running sum of the number of seconds accounted
|
/third_party/python/Tools/stringbench/ |
D | README | 61 The final line of the output is the cumulative time for byte and
|