HomeSort by relevance Sort by last modified time
    Searched refs:Counter (Results 101 - 125 of 368) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/llvm/unittests/ADT/
DenseMapTest.cpp 501 unsigned *Counter = nullptr;
503 CachedHashTest(unsigned Val, unsigned *Counter)
504 : Val(Val), Counter(Counter) {}
512 ++*X.Counter;
523 unsigned Counter = 0;
524 CachedHashTest Val(0, &Counter);
528 ASSERT_EQ(1u, Counter);
531 ASSERT_EQ(2u, Counter);
536 unsigned Counter = 0
    [all...]
  /external/guice/core/test/com/google/inject/
ProvisionListenerTest.java 215 final Counter count1 = new Counter();
235 final Counter count1 = new Counter();
236 final Counter count2 = new Counter();
250 final Counter count1 = new Counter();
251 final Counter count2 = new Counter();
362 final Counter counter = new Counter(); local
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
sizeofpack.cpp 124 struct Counter
126 static const int count = 1 + Counter<Args...>::count;
130 struct Counter<T>
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
GCOV.h 187 GCOVBlock(uint32_t N) : Number(N), Counter(0) {}
191 void addCount(uint64_t N) { Counter = N; }
196 uint64_t Counter;
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
FakeUid.java 20 import android.os.BatteryStats.Counter;
321 public Counter getBluetoothScanResultCounter() {
326 public Counter getBluetoothScanResultBgCounter() {
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AtomicDoubleArrayTest.java 288 class Counter extends CheckedRunnable {
291 Counter(AtomicDoubleArray a) { aa = a; }
322 Counter c1 = new Counter(aa);
323 Counter c2 = new Counter(aa);
  /libcore/jsr166-tests/src/test/java/jsr166/
AtomicIntegerArrayTest.java 282 class Counter extends CheckedRunnable {
285 Counter(AtomicIntegerArray a) { aa = a; }
313 Counter c1 = new Counter(aa);
314 Counter c2 = new Counter(aa);
AtomicLongArrayTest.java 281 class Counter extends CheckedRunnable {
284 Counter(AtomicLongArray a) { aa = a; }
312 Counter c1 = new Counter(aa);
313 Counter c2 = new Counter(aa);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_InterpolateLuma_HalfHor4x4_unsafe_s.s 87 Counter RN 11
97 MOV Counter, #2
177 SUBS Counter, Counter, #1
armVCM4P10_InterpolateLuma_HalfVer4x4_unsafe_s.s 109 Counter RN 8
115 MOV Counter, #2
188 SUBS Counter, Counter, #1
  /device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/
MpService.c 166 ASSERT (mSmmMpSyncData->Counter <= mNumberOfCpus);
168 if (mSmmMpSyncData->Counter == mNumberOfCpus) {
207 ASSERT (mSmmMpSyncData->Counter <= mNumberOfCpus);
246 if (mSmmMpSyncData->Counter < mNumberOfCpus) {
359 // Lock the counter down and retrieve the number of APs
362 ApCount = LockdownSemaphore (&mSmmMpSyncData->Counter) - 1;
447 // Lock the counter down and retrieve the number of APs
450 ApCount = LockdownSemaphore (&mSmmMpSyncData->Counter) - 1;
533 mSmmMpSyncData->Counter = 0;
596 WaitForSemaphore (&mSmmMpSyncData->Counter);
    [all...]
  /external/autotest/scheduler/shard/
shard_client.py 137 metrics.Counter(
314 metrics.Counter('chromeos/autotest/shard_client/heartbeat_failure'
367 metrics.Counter('chromeos/autotest/shard_client/tick').increment()
430 metrics.Counter('chromeos/autotest/shard_client/start').increment()
433 metrics.Counter('chromeos/autotest/shard_client/uncaught_exception'
  /external/v8/src/
d8.h 25 // A single counter in a counter collection.
26 class Counter {
49 Counter* GetNextCounter();
56 Counter counters_[kMaxCounters];
63 Counter* Lookup(const char* name) {
67 return reinterpret_cast<Counter*>(answer->value);
69 void Set(const char* name, Counter* value) {
82 Counter* CurrentValue() { return static_cast<Counter*>(entry_->value);
    [all...]
  /external/v8/tools/
stats-viewer.py 31 """A cross-platform execution counter viewer.
51 # Mapping from counter prefix to the formatting to be used for the counter
68 name_filter: The regexp filter to apply to counter names.
77 # A mapping from counter names to the ui element that displays
81 # The counter collection used to access the counters file
103 print "\"%s\" is neither a counter file nor a PID." % self.data_name
113 print "Can't find counter file in maps for PID %s." % self.data_name
147 counter = self.data.Counter(i
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 110 GlobalVariable *buildEdgeLookupTable(Function *F, GlobalVariable *Counter,
626 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0,
628 Value *Count = Builder.CreateLoad(Counter);
630 Builder.CreateStore(Count, Counter);
636 Value *Counter = Builder.CreateInBoundsGEP(
638 Value *Count = Builder.CreateLoad(Counter);
640 Builder.CreateStore(Count, Counter);
669 // Build code to increment the counter.
718 // requires complex logic to pick which counter to update.
746 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/ARM/VExpress/AcpiTables/rtsm_ve-aemv8a/
gtdt.asl 48 [0008] Counter Block Address : 0000000000000000
85 /* The 64-bit physical address at which the Counter Read block is located */
  /external/google-benchmark/src/
console_reporter.cc 17 #include "counter.h"
153 if (c.second.flags & Counter::kIsRate) {
159 const char* unit = (c.second.flags & Counter::kIsRate) ? "/s" : "";
  /external/llvm/include/llvm/ProfileData/Coverage/
CoverageMappingReader.h 141 Error decodeCounter(unsigned Value, Counter &C);
142 Error readCounter(Counter &C);
  /packages/apps/Settings/src/com/android/settings/fuelgauge/anomaly/checker/
WakeupAlarmAnomalyDetector.java 127 final ArrayMap<String, ? extends BatteryStats.Counter> alarms =
129 for (Map.Entry<String, ? extends BatteryStats.Counter> alarm : alarms.entrySet()) {
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMappingReader.h 143 Error decodeCounter(unsigned Value, Counter &C);
144 Error readCounter(Counter &C);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMappingReader.h 143 Error decodeCounter(unsigned Value, Counter &C);
144 Error readCounter(Counter &C);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMappingReader.h 143 Error decodeCounter(unsigned Value, Counter &C);
144 Error readCounter(Counter &C);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMappingReader.h 143 Error decodeCounter(unsigned Value, Counter &C);
144 Error readCounter(Counter &C);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMappingReader.h 143 Error decodeCounter(unsigned Value, Counter &C);
144 Error readCounter(Counter &C);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMappingReader.h 143 Error decodeCounter(unsigned Value, Counter &C);
144 Error readCounter(Counter &C);

Completed in 1405 milliseconds

1 2 3 45 6 7 8 91011>>