HomeSort by relevance Sort by last modified time
    Searched full:stats (Results 101 - 125 of 1357) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/llvm/test/CodeGen/X86/
constant-pool-remat-0.ll 10 ; RUN: llc < %s -mtriple=x86_64-linux -o /dev/null -stats -info-output-file - | FileCheck %s -check-prefix=X64stat
13 ; RUN: llc < %s -march=x86 -mattr=+sse2 -o /dev/null -stats -info-output-file - | FileCheck %s -check-prefix=X32stat
2003-08-03-CallArgLiveRanges.ll 7 ; RUN: llc < %s -march=x86 -stats 2>&1 | not grep spilled
2006-03-02-InstrSchedBug.ll 2 ; RUN: llc < %s -march=x86 -stats 2>&1 | \
vec_insert-6.ll 3 ; RUN: llc < %s -march=x86 -mattr=+sse2 -mcpu=penryn -mtriple=i686-apple-darwin9 -o /dev/null -stats -info-output-file - | grep asm-printer | grep 6
  /frameworks/base/core/java/android/net/
INetworkStatsSession.aidl 28 /** Return historical network layer stats for traffic that matches template. */
33 /** Return historical network layer stats for specific UID traffic that matches template. */
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
BatteryHistoryPreference.java 38 public BatteryHistoryPreference(Context context, BatteryStats stats) {
41 mStats = stats;
  /packages/providers/ApplicationsProvider/tests/src/com/android/providers/applications/
MockActivityManager.java 33 PkgUsageStats stats = new PkgUsageStats(packageName, 1, 0, new HashMap<String, Long>()); local
34 mPackageUsageStats.put(packageName, stats);
ApplicationsProviderForTesting.java 55 Map<String, PkgUsageStats> stats = new HashMap<String, PkgUsageStats>(); local
57 stats.put(pus.packageName, pus);
59 return stats;
  /external/blktrace/btt/
iostat.c 27 (dip)->stats. fld ++; \
33 (dip)->stats. fld --; \
40 (dip)->stats. fld += __v; \
47 (dip)->stats. fld -= __v; \
65 dip->stats.tot_qusz += ((now - dip->stats.last_qu_change) *
66 dip->stats.cur_qusz);
70 dip->stats.last_qu_change = dip->all_stats.last_qu_change = now;
75 if (dip->stats.cur_dev == 0 || force) {
76 dip->stats.idle_time += (now - dip->stats.last_dev_change)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarReport.java 33 import org.antlr.runtime.misc.Stats;
39 /** Because I may change the stats, I need to track version for later
43 public static final String GRAMMAR_STATS_FILENAME = "grammar.stats";
194 data.mink = Stats.min(depths);
195 data.maxk = Stats.max(depths);
196 data.avgk = Stats.avg(depths);
209 // data. = Stats.stddev(depths);
211 // data. = Stats.min(acyclicDFAStates);
213 // data. = Stats.max(acyclicDFAStates);
215 // data. = Stats.avg(acyclicDFAStates)
    [all...]
  /external/libvpx/libvpx/
vpxenc.c 162 int stats_open_file(stats_io_t *stats, const char *fpf, int pass)
166 stats->pass = pass;
170 stats->file = fopen(fpf, "wb");
171 stats->buf.sz = 0;
172 stats->buf.buf = NULL,
173 res = (stats->file != NULL);
183 stats->file = fdopen(fd, "rb");
185 stats->buf.sz = stat_buf.st_size;
186 stats->buf.buf = mmap(NULL, stats->buf.sz, PROT_READ, MAP_PRIVATE
1556 stats_io_t stats; member in struct:stream_state
    [all...]
  /system/extras/cpustats/
cpustats.c 121 // Read stats without aggregating freq stats in the total cpu
132 // Read stats again with aggregating freq stats in the total cpu
217 sprintf(filename, "/sys/devices/system/cpu/cpu%d/cpufreq/stats/time_in_state", cpu);
231 * Read the CPU and frequency stats for all cpus.
260 * Read the frequency stats for a given cpu.
267 sprintf(filename, "/sys/devices/system/cpu/cpu%d/cpufreq/stats/time_in_state", cpu);
290 * Print the stats for all CPUs.
308 * Print the stats for a single CPU
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDebug.java 32 private static native void nativeGetPagerStats(PagerStats stats);
133 /** statement cache stats: hits/misses/cachesize */
147 * return all pager and database stats for the current process.
151 PagerStats stats = new PagerStats(); local
152 nativeGetPagerStats(stats);
153 stats.dbStats = SQLiteDatabase.getDbStats();
154 return stats;
  /external/iproute2/ip/
iplink_can.c 263 struct can_device_stats *stats; local
265 if (xstats && RTA_PAYLOAD(xstats) == sizeof(*stats)) {
266 stats = RTA_DATA(xstats);
271 stats->restarts, stats->bus_error,
272 stats->arbitration_lost, stats->error_warning,
273 stats->error_passive, stats->bus_off);
  /external/srec/srec/cfront/
ca_wave.c 87 hWave->data.stats.highclip_level = hFrontend->config->waveobj->high_clip;
88 hWave->data.stats.lowclip_level = hFrontend->config->waveobj->low_clip;
89 hWave->data.stats.max_per10000_clip =
91 hWave->data.stats.max_dc_offset =
93 hWave->data.stats.high_noise_level_bit =
95 hWave->data.stats.low_speech_level_bit =
97 hWave->data.stats.min_samples =
182 reset_sig_check(&hWave->data.stats);
214 ws = &hWave->data.stats;
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
ResetStatsState.java 39 * Resets (clearFrame()) the render's stats object every frame
41 * with Application to ensure that the stats are cleared once
44 * stats reset no matter how many views it has or if it even
  /external/libppp/src/
link.h 48 } stats; member in struct:link
51 u_long proto_in[NPROTOSTAT]; /* outgoing protocol stats */
52 u_long proto_out[NPROTOSTAT]; /* incoming protocol stats */
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 550 // Emit per-block stats.
559 const PerBlockIDStats &Stats = I->second;
560 outs() << " Num Instances: " << Stats.NumInstances << "\n";
562 PrintSize(Stats.NumBits);
564 double pct = (Stats.NumBits * 100.0) / BufferSizeBits;
566 if (Stats.NumInstances > 1) {
568 PrintSize(Stats.NumBits/(double)Stats.NumInstances);
570 outs() << " Tot/Avg SubBlocks: " << Stats.NumSubBlocks << "/"
571 << Stats.NumSubBlocks/(double)Stats.NumInstances << "\n"
    [all...]
  /external/linux-tools-perf/
builtin-stat.c 13 Performance counter stats for './hackbench 10':
86 * Detailed stats (-d), covering the L1 and last level data caches:
116 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
159 * Very, very detailed stats (-d -d -d), adding prefetch events:
201 struct stats struct
207 struct stats res_stats[3];
222 static void update_stats(struct stats *stats, u64 val)
226 stats->n++;
227 delta = val - stats->mean
    [all...]
  /device/lge/mako/dumpstate/
dumpstate.c 22 dump_file("Power Management Stats", "/proc/msm_pm_stats");
  /external/chromium/chrome/browser/ui/cocoa/
first_run_dialog.h 12 // The dialog asks the user's explicit permission for reporting stats to help
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
stats_options_handler.h 15 // ChromeOS handler for "Stats/crash reporting to Google" option of the Advanced
  /external/clang/test/Analysis/
analyzer-config.c 17 // CHECK-NEXT: [stats]
  /external/iproute2/misc/
arpd.c 86 } stats; variable in typeref:struct:__anon9145
233 stats.probes_sent++;
259 stats.probes_suppressed++;
351 stats.app_bad++;
363 stats.app_neg++;
369 stats.app_recv++;
371 stats.app_success++;
380 stats.app_suppressed++;
405 stats.kern_neg++;
415 stats.kern_change++
    [all...]
  /external/llvm/test/
Makefile.tests 21 # Specify ENABLE_STATS on the command line to enable -stats and -time-passes
24 STATS = -stats -time-passes
66 -$(LGCCAS) $(STATS) $< -o $@

Completed in 4593 milliseconds

1 2 3 45 6 7 8 91011>>