/prebuilts/gradle-plugin/com/android/tools/analytics-library/protos/25.4.0-alpha7/ |
protos-25.4.0-alpha7.jar | |
/art/runtime/ |
utils.cc | 722 std::string stats; local 723 if (!ReadFileToString(StringPrintf("/proc/self/task/%d/stat", tid), &stats)) { 727 stats = stats.substr(stats.find(')') + 2); 730 Split(stats, ' ', &fields);
|
/bionic/libc/dns/resolv/ |
res_send.c | 490 struct __res_stats stats[MAXNS]; local 492 int revision_id = _resolv_cache_get_resolver_stats(statp->netid, ¶ms, stats); 494 android_net_res_stats_get_usable_servers(¶ms, stats, statp->nscount, 559 * Only record stats the first time we try a query. This ensures that 561 * SERVFAIL or times out) do not unduly affect the stats. 589 /* Only record stats the first time we try a query. See above. */ [all...] |
/cts/tests/tests/media/libmediandkjni/ |
codec-utils-jni.cpp | 438 bool Raw2YUVStats(jlong rawStats[10], jfloat stats[9]) { 450 stats[0] = sum_x[0] / (float)num; // y average 451 stats[1] = sum_x[1] / (float)num; // u average 452 stats[2] = sum_x[2] / (float)num; // v average 456 stats[3] = sqrtf((sum_xx[0] + 1) * num - sum_x[0] * sum_x[0]) / num; // y stdev 457 stats[4] = sqrtf((sum_xx[1] + 1) * num - sum_x[1] * sum_x[1]) / num; // u stdev 458 stats[5] = sqrtf((sum_xx[2] + 1) * num - sum_x[2] * sum_x[2]) / num; // v stdev 461 stats[6] = (float)(sum_xy[0] + 1 - sum_x[0] * sum_x[1] / num) / num / stats[3] / stats[4] 499 jfloat stats[9]; local 520 jfloat stats[9]; local [all...] |
/developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/ |
ImageCache.java | 672 final StatFs stats = new StatFs(path.getPath()); local 673 return (long) stats.getBlockSize() * (long) stats.getAvailableBlocks();
|
/developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/ |
ImageCache.java | 672 final StatFs stats = new StatFs(path.getPath()); local 673 return (long) stats.getBlockSize() * (long) stats.getAvailableBlocks();
|
/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/ |
ImageCache.java | 672 final StatFs stats = new StatFs(path.getPath()); local 673 return (long) stats.getBlockSize() * (long) stats.getAvailableBlocks();
|
/device/huawei/angler/power/ |
power.c | 664 uint64_t stats[sizeof(parameter_names)] = {0}; local 671 ret = extract_stats(stats, RPM_STAT, RPM_PARAMETERS, 0); 677 ret = extract_stats(stats, RPM_MASTER_STAT, NUM_PARAMETERS, 4); 685 list[0].total_transitions = stats[0]; 686 list[0].residency_in_msec_since_boot = stats[1]; 692 list[0].voters[0].total_time_in_msec_voted_for_since_boot = stats[4]; 693 list[0].voters[0].total_number_of_times_voted_since_boot = stats[5]; 697 list[0].voters[1].total_time_in_msec_voted_for_since_boot = stats[6]; 698 list[0].voters[1].total_number_of_times_voted_since_boot = stats[7]; 702 list[0].voters[2].total_time_in_msec_voted_for_since_boot = stats[8] [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
Profiler.cs | 57 /** Because I may change the stats, I need to track that for later 61 public static readonly string RuntimeStatsFilename = "runtime.stats"; 90 ProfileStats stats = new ProfileStats(); field in class:Antlr.Runtime.Debug.Profiler 102 stats.numRuleInvocations++; 104 stats.maxRuleInvocationDepth = Math.Max(stats.maxRuleInvocationDepth, ruleLevel); 128 stats.numMemoizationCacheMisses++; 129 stats.numGuessingRuleInvocations++; // we'll have to enter 134 stats.numMemoizationCacheHits++; 147 stats.numMemoizationCacheEntries++ [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
Profiler.cs | 57 /** Because I may change the stats, I need to track that for later 61 public static readonly string RuntimeStatsFilename = "runtime.stats"; 90 ProfileStats stats = new ProfileStats(); field in class:Antlr.Runtime.Debug.Profiler 105 stats.numRuleInvocations++; 107 stats.maxRuleInvocationDepth = Math.Max(stats.maxRuleInvocationDepth, ruleLevel); 134 stats.numMemoizationCacheMisses++; 135 stats.numGuessingRuleInvocations++; // we'll have to enter 142 stats.numMemoizationCacheHits++; 156 stats.numMemoizationCacheEntries++ [all...] |
/external/autotest/client/tests/cyclictest/src/ |
cyclictest.c | 66 struct thread_stat *stats; member in struct:thread_param 207 struct thread_stat *stat = par->stats; 499 struct thread_stat *stat = par->stats; 574 par[i].stats = &stat[i];
|
/external/compiler-rt/lib/scudo/ |
scudo_allocator.cpp | 606 uptr stats[AllocatorStatCount]; local 607 getAllocator().GetStats(stats); 608 return stats[AllocatorStatAllocated]; 612 uptr stats[AllocatorStatCount]; local 613 getAllocator().GetStats(stats); 614 return stats[AllocatorStatMapped];
|
/external/deqp/modules/gles2/performance/ |
es2pDrawCallBatchingTests.cpp | 815 Statistics stats; local 817 stats.mean = mean; 818 stats.standardDeviation = standardDeviation; 819 stats.standardErrorOfMean = standardErrorOfMean; 821 return stats; [all...] |
/external/e2fsprogs/e2fsck/ |
journal.c | 966 io_stats stats = 0; local 987 ctx->fs->io->manager->get_stats(ctx->fs->io, &stats); 988 if (stats && stats->bytes_written) 989 kbytes_written = stats->bytes_written >> 10;
|
/external/fio/t/ |
read-to-pipe-async.c | 49 struct stats { struct 72 struct stats s; 82 struct stats s; 200 static void add_lat(struct stats *s, unsigned int us, const char *name) 444 static void show_latencies(struct stats *s, const char *msg)
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
ICUService.java | 952 public String stats() { method in class:ICUService 953 ICURWLock.Stats stats = factoryLock.resetStats(); local [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
ICUService.java | 950 public String stats() { method in class:ICUService 951 ICURWLock.Stats stats = factoryLock.resetStats(); local [all...] |
/external/iproute2/misc/ |
arpd.c | 87 } stats; variable in typeref:struct:__anon20823 236 stats.probes_sent++; 262 stats.probes_suppressed++; 354 stats.app_bad++; 366 stats.app_neg++; 372 stats.app_recv++; 374 stats.app_success++; 383 stats.app_suppressed++; 408 stats.kern_neg++; 418 stats.kern_change++ [all...] |
ifstat.c | 67 static const char *stats[MAXS] = { variable 276 for (i=0; i<MAXS && stats[i]; i++) 277 jsonw_uint_field(jw, stats[i], vals[i]); 391 for (i=0; i < m && stats[i]; i++) 392 jsonw_uint_field(jw, stats[i], vals[i]);
|
/external/llvm/lib/MC/ |
MCAssembler.cpp | 39 namespace stats { namespace in namespace:__anon25576 172 ++stats::evaluateFixup; 325 ++stats::FragmentLayouts; 435 ++stats::EmittedFragments; 439 ++stats::EmittedAlignFragments; 479 ++stats::EmittedDataFragments; 484 ++stats::EmittedRelaxableFragments; 489 ++stats::EmittedCompactEncodedInstFragments; 494 ++stats::EmittedFillFragments; 526 ++stats::EmittedOrgFragments [all...] |
/external/lzma/C/ |
Ppmd7.c | 30 #define STATS(ctx) Ppmd7_GetStats(p, ctx)
307 p->MinContext->Stats = REF(p->FoundState);
361 for (s = STATS(c); s->Symbol != p->FoundState->Symbol; s++);
385 for (s = STATS(c); s->Symbol != upState.Symbol; s++);
441 CPpmd_State *s = STATS(c);
525 oldPtr = STATS(c);
528 c->Stats = STATS_REF(ptr);
542 c->Stats = REF(s);
562 CPpmd_State *s = STATS(c) + ns1;
575 CPpmd_State *stats = STATS(p->MinContext); local [all...] |
/external/mesa3d/src/gallium/drivers/etnaviv/ |
etnaviv_context.h | 172 /* stats/counters */ 176 } stats; member in struct:etna_context
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
threads.cpp | 331 /// @brief Update client stats. 340 SWR_STATS stats{ 0 }; 342 // Sum up stats across all workers before sending to client. 345 stats.DepthPassCount += dynState.pStats[i].DepthPassCount; 347 stats.PsInvocations += dynState.pStats[i].PsInvocations; 348 stats.CsInvocations += dynState.pStats[i].CsInvocations; 352 pContext->pfnUpdateStats(GetPrivateState(pDC), &stats); local 585 SWR_STATS_FE& stats = pDC->dynState.statsFE; local 588 stats.IaVertices, stats.IaPrimitives, stats.VsInvocations, stats.HsInvocations 595 pContext->pfnUpdateStatsFE(GetPrivateState(pDC), &stats); local [all...] |
/external/ppp/pppd/include/net/ |
ppp_defs.h | 139 struct ppp_stats stats; member in struct:ifpppstatsreq
|
/external/selinux/libselinux/src/ |
label_file.c | 978 static void stats(struct selabel_handle *rec) function 1015 rec->func_stats = &stats;
|