HomeSort by relevance Sort by last modified time
    Searched refs:stats (Results 51 - 75 of 270) sorted by null

1 23 4 5 6 7 8 91011

  /external/quake/quake/src/QW/client/
sbar.c 27 #define STAT_MINUS 10 // num frame for '-' stats digit
517 if (cl.stats[STAT_ITEMS] & (IT_SHOTGUN<<i) )
525 if ( cl.stats[STAT_ACTIVEWEAPON] == (IT_SHOTGUN<<i) )
549 sprintf (num, "%3i",cl.stats[STAT_SHELLS+i] );
572 if (cl.stats[STAT_ITEMS] & (1<<(17+i)))
587 if (cl.stats[STAT_ITEMS] & (1<<(28+i)))
677 if ( (cl.stats[STAT_ITEMS] & (IT_INVISIBILITY | IT_INVULNERABILITY) )
683 if (cl.stats[STAT_ITEMS] & IT_QUAD)
688 if (cl.stats[STAT_ITEMS] & IT_INVISIBILITY)
693 if (cl.stats[STAT_ITEMS] & IT_INVULNERABILITY)
    [all...]
  /external/chromium/chrome/browser/renderer_host/
chrome_render_message_filter.cc 105 const WebCache::ResourceTypeStats& stats) {
107 static_cast<int>(stats.images.size / 1024));
109 static_cast<int>(stats.cssStyleSheets.size / 1024));
111 static_cast<int>(stats.scripts.size / 1024));
113 static_cast<int>(stats.xslStyleSheets.size / 1024));
115 static_cast<int>(stats.fonts.size / 1024));
119 base::GetProcId(peer_handle()), stats);
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_runner2.py 59 self.stats = {}
60 self.stats['name'] = worker_connection.name
61 self.stats['num_tests'] = 0
62 self.stats['total_time'] = 0
192 thread_timings = [worker_state.stats for worker_state in self._worker_states.values()]
222 worker_state.stats['total_time'] += elapsed_time
223 worker_state.stats['num_tests'] += 1
  /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/valgrind/unittest/
bigtest.cc 99 Vector * stats; member in class:GoalStats
113 GoalStats(): stats(NULL), cost_m(NULL), calculated(false) {}
114 ~GoalStats() { delete stats; delete cost_m; }
131 CHECK(stats == NULL);
138 CHECK(stats == NULL);
140 stats = new Vector(types.size());
142 (*stats)[i] = goal[types[i]];
147 return *stats;
151 CHECK(stats != NULL);
156 CHECK(stats != NULL)
    [all...]
  /external/dbus/test/
decode-gcov.c 2530 Stats stats = { 0, }; local
    [all...]
  /external/chromium/net/disk_cache/
stats_histogram.h 15 class Stats;
17 // This class provides support for sending the disk cache size stats as a UMA
40 // We'll be reporting data from the given set of cache stats.
41 bool Init(const Stats* stats);
51 static const Stats* stats_;
  /external/chromium/sdch/open-vcdiff/src/
vcdiff_test.sh 195 # Test using -stats flag
200 -stats \
201 || { echo "Encode with -stats failed"; \
203 $VCDIFF -stats \
207 || { echo "Decode with -stats failed"; \
223 -stats \
295 -stats \
306 -stats \
313 -stats \
344 -stats \
    [all...]
  /external/iproute2/misc/
arpd.c 86 } stats; variable in typeref:struct:__anon6710
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/oprofile/libdb/tests/
db_test.c 154 odb_hash_stat_t * stats; local
155 stats = odb_hash_stat(&hash);
156 odb_hash_display_stat(stats);
157 odb_hash_free_stat(stats);
  /external/protobuf/src/google/protobuf/testing/
file.cc 150 struct stat stats;
151 if (lstat(name.c_str(), &stats) != 0) return;
153 if (S_ISDIR(stats.st_mode)) {
169 } else if (S_ISREG(stats.st_mode)) {
  /external/quake/quake/src/WinQuake/
sbar.cpp 27 #define STAT_MINUS 10 // num frame for '-' stats digit
463 sprintf (str,"Monsters:%3i /%3i", cl.stats[STAT_MONSTERS], cl.stats[STAT_TOTALMONSTERS]);
466 sprintf (str,"Secrets :%3i /%3i", cl.stats[STAT_SECRETS], cl.stats[STAT_TOTALSECRETS]);
555 if ( cl.stats[STAT_ACTIVEWEAPON] >= RIT_LAVA_NAILGUN )
574 if ( cl.stats[STAT_ACTIVEWEAPON] == (IT_SHOTGUN<<i) )
602 if ( cl.stats[STAT_ACTIVEWEAPON] == (1<<hipweapons[i]) )
649 if ( cl.stats[STAT_ACTIVEWEAPON] >= RIT_LAVA_NAILGUN )
653 if (cl.stats[STAT_ACTIVEWEAPON] == (RIT_LAVA_NAILGUN << i)
    [all...]
  /external/webkit/Source/WebKit2/Shared/
WebMemorySampler.cpp 142 WebMemoryStatistics stats = sampleWebKit(); local
143 if (!stats.keys.isEmpty()) {
144 for (size_t i = 0; i < stats.keys.size(); ++i) {
146 header.append(stats.keys[i].utf8().data());
  /external/v8/src/
global-handles.cc 498 void GlobalHandles::RecordStats(HeapStats* stats) {
499 *stats->global_handle_count = 0;
500 *stats->weak_global_handle_count = 0;
501 *stats->pending_global_handle_count = 0;
502 *stats->near_death_global_handle_count = 0;
503 *stats->destroyed_global_handle_count = 0;
505 *stats->global_handle_count += 1;
507 *stats->weak_global_handle_count += 1;
509 *stats->pending_global_handle_count += 1;
511 *stats->near_death_global_handle_count += 1
    [all...]
  /frameworks/base/core/java/com/android/internal/net/
NetworkStatsFactory.java 62 /** Path to {@code /proc/net/xt_qtaguid/stats}. */
88 mStatsXtUid = new File(procRoot, "net/xt_qtaguid/stats");
98 * @throws IllegalStateException when problem parsing stats.
109 final NetworkStats stats = new NetworkStats(SystemClock.elapsedRealtime(), 6); local
149 stats.addValues(entry);
152 throw new IllegalStateException("problem parsing stats: " + e);
154 throw new IllegalStateException("problem parsing stats: " + e);
156 throw new IllegalStateException("problem parsing stats: " + e);
160 return stats;
168 final NetworkStats stats = new NetworkStats(SystemClock.elapsedRealtime(), 6) local
260 final NetworkStats stats = new NetworkStats(SystemClock.elapsedRealtime(), 24); local
    [all...]
  /bionic/libc/kernel/common/linux/sunrpc/
clnt.h 19 #include <linux/sunrpc/stats.h>
79 struct rpc_stat * stats; member in struct:rpc_program
  /development/ndk/platforms/android-3/include/linux/sunrpc/
clnt.h 19 #include <linux/sunrpc/stats.h>
79 struct rpc_stat * stats; member in struct:rpc_program
  /external/oprofile/libdb/
odb.h 171 void odb_hash_display_stat(odb_hash_stat_t const * stats);
172 void odb_hash_free_stat(odb_hash_stat_t * stats);
  /external/ppp/pppd/include/net/
if_ppp.h 103 struct ppp_stats stats; member in struct:ifpppstatsreq
108 struct ppp_comp_stats stats; member in struct:ifpppcstatsreq
  /frameworks/base/tools/aapt/
FileFinder.cpp 80 void SystemFileFinder::checkAndAddFile(String8 path, const struct stat* stats,
94 fileStore.add(path,stats->st_mtime);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
ppp-comp.h 86 void (*comp_stat) (void *state, struct compstat *stats);
110 void (*decomp_stat) (void *state, struct compstat *stats);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/net/
if_ppp.h 124 struct ppp_stats stats; /* statistic information */ member in struct:ifpppstatsreq
129 struct ppp_comp_stats stats; member in struct:ifpppcstatsreq
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/sunrpc/
clnt.h 19 #include <linux/sunrpc/stats.h>
79 struct rpc_stat * stats; member in struct:rpc_program
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/sunrpc/
clnt.h 19 #include <linux/sunrpc/stats.h>
79 struct rpc_stat * stats; member in struct:rpc_program
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/sunrpc/
clnt.h 19 #include <linux/sunrpc/stats.h>
79 struct rpc_stat * stats; member in struct:rpc_program

Completed in 722 milliseconds

1 23 4 5 6 7 8 91011