/external/arm-neon-tests/ |
D | ref-rvct-neon-nofp16.txt | 342 VQDMLAL_LANE cumulative saturation output: 343 VQDMLAL_LANE:0:vqdmlal_lane_s16 Neon cumulative saturation 0 344 VQDMLAL_LANE:1:vqdmlal_lane_s32 Neon cumulative saturation 0 370 VQDMLAL_LANE (mul with input=0) cumulative saturation output: 371 VQDMLAL_LANE:24:vqdmlal_lane_s16 Neon cumulative saturation 0 372 VQDMLAL_LANE:25:vqdmlal_lane_s32 Neon cumulative saturation 0 398 VQDMLAL_LANE (check mul cumulative saturation) cumulative saturation output: 399 VQDMLAL_LANE:48:vqdmlal_lane_s16 Neon cumulative saturation 1 400 VQDMLAL_LANE:49:vqdmlal_lane_s32 Neon cumulative saturation 1 402 VQDMLAL_LANE (check mul cumulative saturation) output: [all …]
|
D | ref-rvct-neon.txt | 370 VQDMLAL_LANE cumulative saturation output: 371 VQDMLAL_LANE:0:vqdmlal_lane_s16 Neon cumulative saturation 0 372 VQDMLAL_LANE:1:vqdmlal_lane_s32 Neon cumulative saturation 0 400 VQDMLAL_LANE (mul with input=0) cumulative saturation output: 401 VQDMLAL_LANE:26:vqdmlal_lane_s16 Neon cumulative saturation 0 402 VQDMLAL_LANE:27:vqdmlal_lane_s32 Neon cumulative saturation 0 430 VQDMLAL_LANE (check mul cumulative saturation) cumulative saturation output: 431 VQDMLAL_LANE:52:vqdmlal_lane_s16 Neon cumulative saturation 1 432 VQDMLAL_LANE:53:vqdmlal_lane_s32 Neon cumulative saturation 1 434 VQDMLAL_LANE (check mul cumulative saturation) output: [all …]
|
D | ref-rvct-all.txt | 370 VQDMLAL_LANE cumulative saturation output: 371 VQDMLAL_LANE:0:vqdmlal_lane_s16 Neon cumulative saturation 0 372 VQDMLAL_LANE:1:vqdmlal_lane_s32 Neon cumulative saturation 0 400 VQDMLAL_LANE (mul with input=0) cumulative saturation output: 401 VQDMLAL_LANE:26:vqdmlal_lane_s16 Neon cumulative saturation 0 402 VQDMLAL_LANE:27:vqdmlal_lane_s32 Neon cumulative saturation 0 430 VQDMLAL_LANE (check mul cumulative saturation) cumulative saturation output: 431 VQDMLAL_LANE:52:vqdmlal_lane_s16 Neon cumulative saturation 1 432 VQDMLAL_LANE:53:vqdmlal_lane_s32 Neon cumulative saturation 1 434 VQDMLAL_LANE (check mul cumulative saturation) output: [all …]
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_CumulativeLogsumexp.pbtxt | 20 If `True`, perform exclusive cumulative log-sum-exp. 29 summary: "Compute the cumulative product of the tensor `x` along `axis`." 31 By default, this op performs an inclusive cumulative log-sum-exp, 38 By setting the `exclusive` kwarg to `True`, an exclusive cumulative log-sum-exp is 47 By setting the `reverse` kwarg to `True`, the cumulative log-sum-exp is performed in the
|
D | api_def_Cumprod.pbtxt | 30 summary: "Compute the cumulative product of the tensor `x` along `axis`."
|
D | api_def_Cumsum.pbtxt | 30 summary: "Compute the cumulative sum of the tensor `x` along `axis`."
|
/external/python/cpython3/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)
|
/external/jemalloc_new/bin/ |
D | jeprof.in | 604 my $cumulative = CumulativeProfile($reduced); 609 PrintDisassembly($libs, $flat, $cumulative, $main::opt_disasm); 611 PrintListing($total, $libs, $flat, $cumulative, $main::opt_list, 0); 621 PrintText($symbols, $flat, $cumulative, -1); 627 if (PrintDot($main::prog, $symbols, $profile, $flat, $cumulative, $total)) { 886 my $cumulative = CumulativeProfile($reduced); 888 PrintText($symbols, $flat, $cumulative, $line_limit); 921 my $cumulative = CumulativeProfile($reduced); 923 PrintListing($total, $libs, $flat, $cumulative, $routine, $html); 939 my $cumulative = CumulativeProfile($reduced); [all …]
|
/external/perfetto/src/trace_processor/dynamic/ |
D | experimental_flamegraph_generator.cc | 204 const auto& cumulative = node_to_cumulatives[i]; in FocusTable() local 205 alloc_row.cumulative_count = cumulative.count; in FocusTable() 206 alloc_row.cumulative_size = cumulative.size; in FocusTable() 207 alloc_row.cumulative_alloc_count = cumulative.alloc_count; in FocusTable() 208 alloc_row.cumulative_alloc_size = cumulative.alloc_size; in FocusTable()
|
/external/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()
|
/external/abseil-cpp/absl/random/ |
D | poisson_distribution_test.cc | 222 double cumulative = e_neg_mean; in InitCDF() local 224 cdf_.push_back({0, e_neg_mean, cumulative}); in InitCDF() 229 cumulative += result; in InitCDF() 230 if (result < 1e-10 && result < last_result && cumulative > 0.999999) { in InitCDF() 234 cdf_.push_back({i, result, cumulative}); in InitCDF()
|
/external/angle/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()
|
/external/rust/crates/grpcio-sys/grpc/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()
|
/external/libtextclassifier/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()
|
/external/grpc-grpc/src/core/ext/filters/http/server/ |
D | http_server_filter.cc | 92 static void hs_add_error(const char* error_name, grpc_error** cumulative, in hs_add_error() argument 95 if (*cumulative == GRPC_ERROR_NONE) { in hs_add_error() 96 *cumulative = GRPC_ERROR_CREATE_FROM_COPIED_STRING(error_name); in hs_add_error() 98 *cumulative = grpc_error_add_child(*cumulative, new_err); in hs_add_error()
|
/external/openscreen/third_party/abseil/src/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()
|
/external/webrtc/third_party/abseil-cpp/absl/random/ |
D | poisson_distribution_test.cc | 222 double cumulative = e_neg_mean; in InitCDF() local 224 cdf_.push_back({0, e_neg_mean, cumulative}); in InitCDF() 229 cumulative += result; in InitCDF() 230 if (result < 1e-10 && result < last_result && cumulative > 0.999999) { in InitCDF() 234 cdf_.push_back({i, result, cumulative}); in InitCDF()
|
/external/rust/crates/grpcio-sys/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()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_program.c | 564 brw->shader_time.cumulative = rzalloc_array(brw, struct shader_times, in brw_init_shader_time() 627 written = brw->shader_time.cumulative[i].written; in brw_report_shader_time() 628 reset = brw->shader_time.cumulative[i].reset; in brw_report_shader_time() 640 uint64_t time = brw->shader_time.cumulative[i].time; in brw_report_shader_time() 745 brw->shader_time.cumulative[i].time += times[BRW_SHADER_TIME_STRIDE * 0 / 4]; in brw_collect_shader_time() 746 brw->shader_time.cumulative[i].written += times[BRW_SHADER_TIME_STRIDE * 1 / 4]; in brw_collect_shader_time() 747 brw->shader_time.cumulative[i].reset += times[BRW_SHADER_TIME_STRIDE * 2 / 4]; in brw_collect_shader_time()
|
/external/iproute2/ |
D | README.distribution | 4 translated, inverse to the cumulative distribution function. 6 Here's how to think about it: Let F() be the cumulative distribution 26 To see this, it's enough to show that Y's cumulative distribution function, 56 3. Determine the cumulative distribution. The code I wrote creates a table
|
/external/iproute2/netem/ |
D | README.distribution | 6 translated, inverse to the cumulative distribution function. 8 Here's how to think about it: Let F() be the cumulative distribution 28 To see this, it's enough to show that Y's cumulative distribution function, 58 3. Determine the cumulative distribution. The code I wrote creates a table
|
D | maketable.c | 135 inverttable(int *table, int inversesize, int tablesize, int cumulative) in inverttable() argument 147 fvalue = (double)table[i]/(double)cumulative; in inverttable()
|
/external/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()
|
/external/python/cpython2/Doc/library/ |
D | profile.rst | 121 is the cumulative time spent in this and all subfunctions (from invocation 176 p.sort_stats('cumulative').print_stats(10) 178 This sorts the profile by cumulative time in a function, and then only prints 201 cumulative time, and then prints out some of the statistics. To be specific, the 276 sortby = 'cumulative' 402 | ``'cumulative'`` | cumulative time | 404 | ``'cumtime'`` | cumulative time | 442 ``'calls'``, ``'time'``, and ``'cumulative'`` respectively. If this old 500 second non-parenthesized number repeats the cumulative time spent in the 505 cumulative times spent in the current function while it was invoked by [all …]
|
/external/python/cpython3/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
|