Home
last modified time | relevance | path

Searched refs:Counter (Results 1 – 25 of 80) sorted by relevance

1234

/external/wpa_supplicant_8/src/eapol_auth/
Deapol_auth_sm_i.h21 typedef unsigned int Counter; typedef
80 Counter authEntersConnecting;
81 Counter authEapLogoffsWhileConnecting;
82 Counter authEntersAuthenticating;
83 Counter authAuthSuccessesWhileAuthenticating;
84 Counter authAuthTimeoutsWhileAuthenticating;
85 Counter authAuthFailWhileAuthenticating;
86 Counter authAuthEapStartsWhileAuthenticating;
87 Counter authAuthEapLogoffWhileAuthenticating;
88 Counter authAuthReauthsWhileAuthenticated;
[all …]
/external/webkit/Source/WebCore/css/
DCounter.h29 class Counter : public RefCounted<Counter> {
31 …static PassRefPtr<Counter> create(PassRefPtr<CSSPrimitiveValue> identifier, PassRefPtr<CSSPrimitiv… in create()
33 return adoptRef(new Counter(identifier, listStyle, separator)); in create()
47Counter(PassRefPtr<CSSPrimitiveValue> identifier, PassRefPtr<CSSPrimitiveValue> listStyle, PassRef… in Counter() function
DCSSPrimitiveValue.h32 class Counter; variable
169 Counter* getCounterValue(ExceptionCode&) const;
170 Counter* getCounterValue() const { return m_type != CSS_COUNTER ? 0 : m_value.counter; } in getCounterValue()
218 void init(PassRefPtr<Counter>);
234 Counter* counter;
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DCountersTable.java142 Counter counter = (Counter) counters.elementAt(i); in countNode()
171 Counter counter = (Counter) counters.elementAt(i); in countNode()
197 Counter counter = new Counter(numberElem, new NodeSetDTM(support.getDTMManager())); in countNode()
DCounter.java37 public class Counter class
86 Counter(ElemNumber numberElem, NodeSetDTM countNodes) throws TransformerException in Counter() method in Counter
/external/llvm/utils/TableGen/
DCallingConvEmitter.cpp44 Counter = 0; in EmitCallingConv()
99 O << IndentStr << "static const uint16_t RegList" << ++Counter in EmitAction()
108 << Counter << ", " << RegList->getSize() << ")) {\n"; in EmitAction()
127 unsigned RegListNumber = ++Counter; in EmitAction()
128 unsigned ShadowRegListNumber = ++Counter; in EmitAction()
160 O << IndentStr << "unsigned Offset" << ++Counter in EmitAction()
176 << Counter << ", LocVT, LocInfo));\n"; in EmitAction()
/external/v8/src/
Dd8.h45 class Counter {
68 Counter* GetNextCounter();
75 Counter counters_[kMaxCounters];
82 Counter* Lookup(const char* name) { in Lookup()
88 return reinterpret_cast<Counter*>(answer->value); in Lookup()
90 void Set(const char* name, Counter* value) { in Set()
105 Counter* CurrentValue() { return static_cast<Counter*>(entry_->value); } in CurrentValue()
379 static Counter* GetCounter(const char* name, bool is_histogram);
Dmksnapshot.cc46 class Counter { class
71 max_name_size_ = Counter::kMaxNameSize; in CounterCollection()
74 Counter* GetNextCounter() { in GetNextCounter()
83 Counter counters_[kMaxCounters];
/external/protobuf/gtest/samples/
Dsample4.cc39 int Counter::Increment() { in Increment()
44 void Counter::Print() const { in Print()
Dsample4.h38 class Counter {
44 Counter() : counter_(0) {} in Counter() function
Dsample4_unittest.cc36 TEST(Counter, Increment) { in TEST() argument
37 Counter c; in TEST()
/external/gtest/samples/
Dsample4.cc39 int Counter::Increment() { in Increment()
44 void Counter::Print() const { in Print()
Dsample4.h38 class Counter {
44 Counter() : counter_(0) {} in Counter() function
Dsample4_unittest.cc36 TEST(Counter, Increment) { in TEST() argument
37 Counter c; in TEST()
/external/chromium/testing/gtest/samples/
Dsample4.cc39 int Counter::Increment() { in Increment()
44 void Counter::Print() const { in Print()
Dsample4.h38 class Counter {
44 Counter() : counter_(0) {} in Counter() function
Dsample4_unittest.cc36 TEST(Counter, Increment) { in TEST() argument
37 Counter c; in TEST()
/external/javassist/sample/rmi/
DCounter.java8 public class Counter { class
25 web.exportObject("counter", new Counter()); in main()
DCountApplet.java13 private Counter counter;
53 counter = (Counter)importer.lookupObject(paramName); in start()
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DAtomicDoubleArrayTest.java287 class Counter extends CheckedRunnable { class in AtomicDoubleArrayTest
290 Counter(AtomicDoubleArray a) { aa = a; } in Counter() method in AtomicDoubleArrayTest.Counter
321 Counter c1 = new Counter(aa); in testCountingInMultipleThreads()
322 Counter c2 = new Counter(aa); in testCountingInMultipleThreads()
/external/v8/tools/
Dstats-viewer.py147 counter = self.data.Counter(i)
192 counter = self.data.Counter(i)
327 class Counter(object): class
374 def Counter(self, index): member in CounterCollection
376 return Counter(self.data, 16 + index * self.CounterSize())
444 def Counter(self, i): member in ChromeCounterCollection
/external/srtp/doc/
Ddraft-irtf-cfrg-icm-00.txt15 Integer Counter Mode
42 This document specifies Integer Counter Mode (ICM), a mode of
49 Counter Mode admits many variations. The variant specified in
62 Internet Draft Integer Counter Mode October, 2002
74 Counter Mode is a way to define a pseudorandom keystream generator
119 Internet Draft Integer Counter Mode October, 2002
176 Internet Draft Integer Counter Mode October, 2002
233 Internet Draft Integer Counter Mode October, 2002
271 Counter Keystream
290 Internet Draft Integer Counter Mode October, 2002
[all …]
/external/llvm/include/llvm/Support/
DGCOV.h187 GCOVBlock(uint32_t N) : Number(N), Counter(0) {} in GCOVBlock()
191 void addCount(uint64_t N) { Counter = N; } in addCount()
196 uint64_t Counter; variable
/external/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp85 GlobalVariable *Counter,
463 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0, in emitProfileArcs() local
465 Value *Count = Builder.CreateLoad(Counter); in emitProfileArcs()
468 Builder.CreateStore(Count, Counter); in emitProfileArcs()
477 Value *Counter = Builder.CreateInBoundsGEP(Counters, Idx); in emitProfileArcs() local
478 Value *Count = Builder.CreateLoad(Counter); in emitProfileArcs()
481 Builder.CreateStore(Count, Counter); in emitProfileArcs()
551 Value *Counter = builder.CreateConstInBoundsGEP2_64(Counters, 0, in buildEdgeLookupTable() local
554 (Preds.idFor(BB)-1)] = cast<Constant>(Counter); in buildEdgeLookupTable()
/external/clang/test/SemaCXX/
Dnested-name-spec.cpp197 class Counter { public: static int count; }; class
198 typedef Counter counter;

1234