/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | ssim.c | 31 const VP8DistoStats* const stats, uint32_t N /*num samples*/) { in SSIMCalculation() argument 36 const uint64_t xmxm = (uint64_t)stats->xm * stats->xm; in SSIMCalculation() 37 const uint64_t ymym = (uint64_t)stats->ym * stats->ym; in SSIMCalculation() 39 const int64_t xmym = (int64_t)stats->xm * stats->ym; in SSIMCalculation() 40 const int64_t sxy = (int64_t)stats->xym * N - xmym; // can be negative in SSIMCalculation() 41 const uint64_t sxx = (uint64_t)stats->xxm * N - xmxm; in SSIMCalculation() 42 const uint64_t syy = (uint64_t)stats->yym * N - ymym; in SSIMCalculation() 55 double VP8SSIMFromStats(const VP8DistoStats* const stats) { in VP8SSIMFromStats() argument 56 return SSIMCalculation(stats, kWeightSum); in VP8SSIMFromStats() 59 double VP8SSIMFromStatsClipped(const VP8DistoStats* const stats) { in VP8SSIMFromStatsClipped() argument [all …]
|
/third_party/node/deps/npm/node_modules/cacache/lib/ |
D | verify.js | 44 const stats = {} 51 stats[k] = s[k] 55 if (!stats.runTime) { 56 stats.runTime = {} 58 stats.runTime[label] = end - start 60 stats.runTime.total = stats.endTime - stats.startTime 66 `${stats.runTime.total}ms` 68 return stats 118 const stats = { variable 135 stats.reclaimedCount++ [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | truthinessCallExpressionCoercion.types | 181 function A(stats: StatsBase<any>) { 182 >A : (stats: StatsBase<any>) => void 183 >stats : StatsBase<any> 185 if (stats.isDirectory) { // err 186 >stats.isDirectory : () => boolean 187 >stats : StatsBase<any> 190 console.log(`[Directory] ${stats.ctime}`) 191 >console.log(`[Directory] ${stats.ctime}`) : void 195 >`[Directory] ${stats.ctime}` : string 196 >stats.ctime : number [all …]
|
D | truthinessCallExpressionCoercion.symbols | 155 function A(stats: StatsBase<any>) { 157 >stats : Symbol(stats, Decl(truthinessCallExpressionCoercion.ts, 74, 11)) 160 if (stats.isDirectory) { // err 161 >stats.isDirectory : Symbol(StatsBase.isDirectory, Decl(truthinessCallExpressionCoercion.ts, 89, 24… 162 >stats : Symbol(stats, Decl(truthinessCallExpressionCoercion.ts, 74, 11)) 165 console.log(`[Directory] ${stats.ctime}`) 169 >stats.ctime : Symbol(StatsBase.ctime, Decl(truthinessCallExpressionCoercion.ts, 90, 27)) 170 >stats : Symbol(stats, Decl(truthinessCallExpressionCoercion.ts, 74, 11)) 182 if (a.stats.isDirectory) { // err 183 >a.stats.isDirectory : Symbol(StatsBase.isDirectory, Decl(truthinessCallExpressionCoercion.ts, 89, … [all …]
|
D | truthinessCallExpressionCoercion.js | 76 function A(stats: StatsBase<any>) { 77 if (stats.isDirectory) { // err 78 console.log(`[Directory] ${stats.ctime}`) 83 if (a.stats.isDirectory) { // err 84 b.stats.isDirectory(); 86 if (a.stats.isDirectory) { // ok 87 a.stats.isDirectory(); 97 stats: StatsBase<any>; 160 function A(stats) { 161 if (stats.isDirectory) { // err [all …]
|
/third_party/node/lib/internal/fs/ |
D | utils.js | 201 constructor(name, stats, path, filepath) { argument 203 this[kStats] = stats; 267 lazyLoadFs().lstat(filepath, (err, stats) => { 272 names[idx] = new DirentFromStats(name, stats, path, filepath); 303 lazyLoadFs().lstat(filepath, (err, stats) => { 308 callback(null, new DirentFromStats(name, stats, path, filepath)); 315 const stats = lazyLoadFs().lstatSync(filepath); 317 return new DirentFromStats(name, stats, path, callback === true ? filepath : path); 544 function getStatsFromBinding(stats, offset = 0) { argument 545 if (isBigInt64Array(stats)) { [all …]
|
/third_party/node/deps/v8/src/diagnostics/ |
D | compilation-statistics.cc | 17 const BasicStats& stats) { in RecordPhaseStats() argument 26 it->second.Accumulate(stats); in RecordPhaseStats() 30 const BasicStats& stats) { in RecordPhaseKindStats() argument 41 it->second.Accumulate(stats); in RecordPhaseKindStats() 44 void CompilationStatistics::RecordTotalStats(const BasicStats& stats) { in RecordTotalStats() argument 46 total_stats_.Accumulate(stats); in RecordTotalStats() 49 void CompilationStatistics::BasicStats::Accumulate(const BasicStats& stats) { in Accumulate() argument 50 delta_ += stats.delta_; in Accumulate() 51 total_allocated_bytes_ += stats.total_allocated_bytes_; in Accumulate() 52 if (stats.absolute_max_allocated_bytes_ > absolute_max_allocated_bytes_) { in Accumulate() [all …]
|
/third_party/gn/src/gn/ |
D | command_path.cc | 132 Stats* stats) { in InsertTargetsIntoFoundPaths() argument 154 if (stats->found_paths.find(pair.first) == stats->found_paths.end()) { in InsertTargetsIntoFoundPaths() 155 stats->found_paths.insert(std::make_pair(pair.first, type)); in InsertTargetsIntoFoundPaths() 163 stats->public_paths++; in InsertTargetsIntoFoundPaths() 165 stats->other_paths++; in InsertTargetsIntoFoundPaths() 174 Stats* stats) { in BreadthFirstSearch() argument 192 if (stats->total_paths() == 0 || print_what == PrintWhat::ALL) in BreadthFirstSearch() 198 InsertTargetsIntoFoundPaths(current_path, DepType::NONE, stats); in BreadthFirstSearch() 207 stats->found_paths.find(current_target); in BreadthFirstSearch() 208 if (found_current_target != stats->found_paths.end()) { in BreadthFirstSearch() [all …]
|
/third_party/libsnd/tests/ |
D | benchmark.tpl | 74 static void calc_raw_performance (PERF_STATS *stats) ; 87 { PERF_STATS stats ; 103 calc_raw_performance (&stats) ; 109 calc_short_performance (format_major | SF_FORMAT_PCM_16, stats.read_rate, stats.write_rate) ; 110 calc_int_performance (format_major | SF_FORMAT_PCM_24, stats.read_rate, stats.write_rate) ; 111 calc_int_performance (format_major | SF_FORMAT_PCM_32, stats.read_rate, stats.write_rate) ; 112 calc_float_performance (format_major | SF_FORMAT_PCM_16, stats.read_rate, stats.write_rate) ; 113 calc_float_performance (format_major | SF_FORMAT_PCM_24, stats.read_rate, stats.write_rate) ; 114 calc_float_performance (format_major | SF_FORMAT_PCM_32, stats.read_rate, stats.write_rate) ; 115 calc_float_performance (format_major | SF_FORMAT_FLOAT , stats.read_rate, stats.write_rate) ; [all …]
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_query.c | 179 struct pipe_query_data_so_statistics *stats = in llvmpipe_get_query_result() local 181 stats->num_primitives_written = pq->num_primitives_written[0]; in llvmpipe_get_query_result() 182 stats->primitives_storage_needed = pq->num_primitives_generated[0]; in llvmpipe_get_query_result() 186 struct pipe_query_data_pipeline_statistics *stats = in llvmpipe_get_query_result() local 190 pq->stats.ps_invocations += pq->end[i]; in llvmpipe_get_query_result() 192 pq->stats.ps_invocations *= LP_RASTER_BLOCK_SIZE * LP_RASTER_BLOCK_SIZE; in llvmpipe_get_query_result() 193 *stats = pq->stats; in llvmpipe_get_query_result() 298 value = pq->stats.ia_vertices; in llvmpipe_get_query_result_resource() 301 value = pq->stats.ia_primitives; in llvmpipe_get_query_result_resource() 304 value = pq->stats.vs_invocations; in llvmpipe_get_query_result_resource() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | ICURWLock.java | 42 private Stats stats = null; field in ICURWLock 105 Stats result = stats; in resetStats() 106 stats = new Stats(); in resetStats() 114 Stats result = stats; in clearStats() 115 stats = null; in clearStats() 123 return stats == null ? null : new Stats(stats); in getStats() 137 if (stats != null) { // stats is null by default in acquireRead() 139 stats._rc++; in acquireRead() 141 stats._mrc++; in acquireRead() 144 stats._wrc++; in acquireRead() [all …]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | ICURWLock.java | 44 private Stats stats = null; field in ICURWLock 108 Stats result = stats; in resetStats() 109 stats = new Stats(); in resetStats() 117 Stats result = stats; in clearStats() 118 stats = null; in clearStats() 126 return stats == null ? null : new Stats(stats); in getStats() 140 if (stats != null) { // stats is null by default in acquireRead() 142 stats._rc++; in acquireRead() 144 stats._mrc++; in acquireRead() 147 stats._wrc++; in acquireRead() [all …]
|
/third_party/python/Lib/test/ |
D | test_pstats.py | 31 self.stats = pstats.Stats(stats_file) 35 stats = pstats.Stats(stream=stream) 36 stats.add(self.stats, self.stats) 44 self.stats.sort_stats(arg_int) 45 self.assertEqual(self.stats.sort_type, 46 self.stats.sort_arg_dict_default[arg_str][-1]) 52 self.stats.sort_stats(sort_name) 53 self.assertEqual(self.stats.sort_type, 54 self.stats.sort_arg_dict_default[sort_name][-1]) 60 self.stats.sort_stats(sort_name) [all …]
|
/third_party/node/test/parallel/ |
D | test-fs-promises.js | 133 let stats = await handle.stat(); 134 verifyStatObject(stats); 135 assert.strictEqual(stats.size, 35); 139 stats = await handle.stat(); 140 verifyStatObject(stats); 141 assert.strictEqual(stats.size, 1); 143 stats = await stat(dest); 144 verifyStatObject(stats); 146 stats = await handle.stat(); 147 verifyStatObject(stats); [all …]
|
/third_party/mesa3d/src/freedreno/ir3/ |
D | disasm-a3xx.c | 102 struct shader_stats *stats; member 113 unsigned n = (ctx->stats->halfreg + 1) / 2; in print_stats() 115 ctx->stats->halfreg = 0; in print_stats() 116 ctx->stats->fullreg = MAX2(ctx->stats->fullreg, n); in print_stats() 124 levels[ctx->level], instructions, ctx->stats->nops, in print_stats() 125 instructions - ctx->stats->nops, ctx->stats->mov_count, in print_stats() 126 ctx->stats->cov_count); in print_stats() 130 levels[ctx->level], ctx->stats->last_baryf, in print_stats() 131 DIV_ROUND_UP(ctx->stats->halfreg, 4), in print_stats() 132 DIV_ROUND_UP(ctx->stats->fullreg, 4), in print_stats() [all …]
|
/third_party/node/deps/v8/src/heap/cppgc/ |
D | heap-statistics-collector.cc | 36 HeapStatistics::SpaceStatistics* InitializeSpace(HeapStatistics* stats, in InitializeSpace() argument 38 stats->space_stats.emplace_back(); in InitializeSpace() 39 HeapStatistics::SpaceStatistics* space_stats = &stats->space_stats.back(); in InitializeSpace() 45 HeapStatistics::SpaceStatistics* stats) { in InitializePage() argument 46 stats->page_stats.emplace_back(); in InitializePage() 47 HeapStatistics::PageStatistics* page_stats = &stats->page_stats.back(); in InitializePage() 62 void FinalizeSpace(HeapStatistics* stats, in FinalizeSpace() argument 67 DCHECK_NOT_NULL(stats); in FinalizeSpace() 68 stats->committed_size_bytes += (*space_stats)->committed_size_bytes; in FinalizeSpace() 69 stats->resident_size_bytes += (*space_stats)->resident_size_bytes; in FinalizeSpace() [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | af_aspectralstats.c | 55 ChannelSpectralStats *stats; member 97 s->stats = av_calloc(s->nb_channels, sizeof(*s->stats)); in config_output() 98 if (!s->stats) in config_output() 167 ChannelSpectralStats *stats = &s->stats[ch]; in set_metadata() local 169 set_meta(metadata, ch + 1, "mean", "%g", stats->mean); in set_metadata() 170 set_meta(metadata, ch + 1, "variance", "%g", stats->variance); in set_metadata() 171 set_meta(metadata, ch + 1, "centroid", "%g", stats->centroid); in set_metadata() 172 set_meta(metadata, ch + 1, "spread", "%g", stats->spread); in set_metadata() 173 set_meta(metadata, ch + 1, "skewness", "%g", stats->skewness); in set_metadata() 174 set_meta(metadata, ch + 1, "kurtosis", "%g", stats->kurtosis); in set_metadata() [all …]
|
/third_party/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_query.c | 46 struct pipe_query_data_pipeline_statistics stats; member 134 memcpy(&sq->stats, &softpipe->pipeline_statistics, in softpipe_begin_query() 135 sizeof(sq->stats)); in softpipe_begin_query() 202 sq->stats.ia_vertices = in softpipe_end_query() 203 softpipe->pipeline_statistics.ia_vertices - sq->stats.ia_vertices; in softpipe_end_query() 204 sq->stats.ia_primitives = in softpipe_end_query() 205 softpipe->pipeline_statistics.ia_primitives - sq->stats.ia_primitives; in softpipe_end_query() 206 sq->stats.vs_invocations = in softpipe_end_query() 207 softpipe->pipeline_statistics.vs_invocations - sq->stats.vs_invocations; in softpipe_end_query() 208 sq->stats.gs_invocations = in softpipe_end_query() [all …]
|
/third_party/skia/third_party/externals/libwebp/examples/ |
D | cwebp.c | 166 static void PrintFullLosslessInfo(const WebPAuxStats* const stats, in PrintFullLosslessInfo() argument 169 description, stats->lossless_size); in PrintFullLosslessInfo() 171 stats->lossless_hdr_size, stats->lossless_data_size); in PrintFullLosslessInfo() 172 if (stats->lossless_features) { in PrintFullLosslessInfo() 174 if (stats->lossless_features & 1) fprintf(stderr, " PREDICTION"); in PrintFullLosslessInfo() 175 if (stats->lossless_features & 2) fprintf(stderr, " CROSS-COLOR-TRANSFORM"); in PrintFullLosslessInfo() 176 if (stats->lossless_features & 4) fprintf(stderr, " SUBTRACT-GREEN"); in PrintFullLosslessInfo() 177 if (stats->lossless_features & 8) fprintf(stderr, " PALETTE"); in PrintFullLosslessInfo() 181 stats->histogram_bits, stats->transform_bits, stats->cache_bits); in PrintFullLosslessInfo() 182 if (stats->palette_size > 0) { in PrintFullLosslessInfo() [all …]
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
D | alpha_enc.c | 52 WebPAuxStats* const stats) { in EncodeLossless() argument 61 picture.stats = stats; in EncodeLossless() 105 WebPAuxStats stats; member 140 !reduce_levels, &tmp_bw, &result->stats); in EncodeAlphaInternal() 239 WebPAuxStats* const stats) { in ApplyFiltersAndEncode() argument 271 if (stats != NULL) { in ApplyFiltersAndEncode() 272 stats->lossless_features = best.stats.lossless_features; in ApplyFiltersAndEncode() 273 stats->histogram_bits = best.stats.histogram_bits; in ApplyFiltersAndEncode() 274 stats->transform_bits = best.stats.transform_bits; in ApplyFiltersAndEncode() 275 stats->cache_bits = best.stats.cache_bits; in ApplyFiltersAndEncode() [all …]
|
/third_party/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_query_sw.c | 55 return ctx->stats.prims_generated; in read_counter() 57 return ctx->stats.prims_emitted; in read_counter() 59 return ctx->stats.draw_calls; in read_counter() 61 return ctx->stats.batch_total; in read_counter() 63 return ctx->stats.batch_sysmem; in read_counter() 65 return ctx->stats.batch_gmem; in read_counter() 67 return ctx->stats.batch_nondraw; in read_counter() 69 return ctx->stats.batch_restore; in read_counter() 71 return ctx->stats.staging_uploads; in read_counter() 73 return ctx->stats.shadow_uploads; in read_counter() [all …]
|
/third_party/mesa3d/src/panfrost/bifrost/valhall/ |
D | va_perf.c | 30 va_count_instr_stats(bi_instr *I, struct va_stats *stats) in va_count_instr_stats() argument 38 stats->fma += words; in va_count_instr_stats() 42 stats->cvt += words; in va_count_instr_stats() 46 stats->sfu += words; in va_count_instr_stats() 51 stats->v += (I->vecsize + 1) * in va_count_instr_stats() 57 stats->ls++; in va_count_instr_stats() 61 stats->t++; in va_count_instr_stats() 67 stats->ls += (2 * 2); in va_count_instr_stats() 68 stats->t++; in va_count_instr_stats()
|
/third_party/ffmpeg/tools/ |
D | plotframes | 117 my %stats; 123 if (not $stats{$type}) { 124 $stats{$type}->{tmpfile} = File::Temp->new(SUFFIX => '.dat'); 125 my $fn = $stats{$type}->{tmpfile}->filename; 126 open($stats{$type}->{fh}, ">", $fn) or die "Can't open $fn"; 129 print { $stats{$type}->{fh} } 132 foreach (keys %stats) { close $stats{$_}->{fh}; } 155 foreach my $type (keys %stats) { 156 my $fn = $stats{$type}->{tmpfile}->filename;
|
/third_party/skia/experimental/lowp-basic/ |
D | lerp-study.cpp | 86 Stats stats; in check_lerp() local 93 stats.log(golden, candidate); in check_lerp() 95 return stats; in check_lerp() 99 Stats stats; in main() local 102 stats = check_lerp(full_res_lerp); in main() 103 stats.print(); in main() 106 stats = check_lerp(saturating_lerp<7>); in main() 107 stats.print(); in main() 110 stats = check_lerp(ssse3_lerp<7>); in main() 111 stats.print(); in main() [all …]
|
/third_party/python/Lib/ |
D | pstats.py | 126 self.stats = {} 138 self.stats = {} 142 self.stats = marshal.load(f) 151 self.stats = arg.stats 152 arg.stats = {} 153 if not self.stats: 159 for func, (cc, nc, tt, ct, callers) in self.stats.items(): 186 for func, stat in item.stats.items(): 187 if func in self.stats: 188 old_func_stat = self.stats[func] [all …]
|