HomeSort by relevance Sort by last modified time
    Searched refs:Counter (Results 26 - 50 of 211) sorted by null

12 3 4 5 6 7 8 9

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
omxVCCOMM_ExpandFrame_I_s.s 68 Counter RN 12
92 MOV Temp, iFrameWidth ;// Outer loop counter
109 MOV Counter, iExpandPels ;// Inner loop counter
121 SUBS Counter, Counter, #8
140 MOV Counter, iExpandPels ;// Inner loop counter
152 SUBS Counter, Counter, #
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
CountersTable.java 35 * of which has a list of Counter objects. This really isn't a true
67 * Put a counter into the table and create an empty
142 Counter counter = (Counter) counters.elementAt(i); local
144 count = counter.getPreviouslyCounted(support, target);
155 // the backwards list (m_newFound) to the forwards list (counter.m_countNodes).
171 Counter counter = (Counter) counters.elementAt(i) local
197 Counter counter = new Counter(numberElem, new NodeSetDTM(support.getDTMManager())); local
    [all...]
Counter.java 19 * $Id: Counter.java 468645 2006-10-28 06:57:24Z minchau $
37 public class Counter
61 * find a counter if the node being counted is not immediatly
79 * Construct a counter object.
86 Counter(ElemNumber numberElem, NodeSetDTM countNodes) throws TransformerException
93 * Construct a counter object.
99 Counter(ElemNumber numberElem) throws TransformerException
  /external/llvm/unittests/ProfileData/
CoverageMappingTest.cpp 32 void PrintTo(const Counter &C, ::std::ostream *os) {
38 *os << "Counter " << C.getCounterID();
105 void addCMR(Counter C, StringRef File, unsigned LS, unsigned CS, unsigned LE,
158 addCMR(Counter::getCounter(0), "foo", 1, 1, 1, 1);
159 addCMR(Counter::getCounter(1), "foo", 2, 1, 2, 2);
160 addCMR(Counter::getZero(), "foo", 3, 1, 3, 4);
161 addCMR(Counter::getCounter(2), "foo", 4, 1, 4, 8);
162 addCMR(Counter::getCounter(3), "bar", 1, 2, 3, 4);
178 addCMR(Counter::getCounter(1), "foo", 10, 1, 10, 2);
179 // This starts earlier in "foo", so the expansion should get its counter
    [all...]
  /external/clang/lib/CodeGen/
CoverageMappingGen.cpp 35 /// \brief A region of source code that can be mapped to a counter.
37 Counter Count;
46 SourceMappingRegion(Counter Count, Optional<SourceLocation> LocStart,
50 const Counter &getCounter() const { return Count; }
52 void setCounter(Counter C) { Count = C; }
240 /// \brief Generate the coverage counter mapping regions from collected
312 SourceRegions.emplace_back(Counter(), getStart(Body), getEnd(Body));
345 /// \brief Return a counter for the subtraction of \c RHS from \c LHS
346 Counter subtractCounters(Counter LHS, Counter RHS)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
Counter.java 22 public class Counter<T> implements Iterable<T>, Comparable<Counter<T>> {
26 public Counter() {
30 public Counter(Comparator<T> comparator) {
64 public Counter<T> add(T obj, long countValue) {
80 public Counter<T> clear() {
132 int counter = 0; local
134 count_key.add(new Entry<T>(map.get(key), key, counter++));
179 public Counter<T> addAll(Collection<T> keys, int delta) {
186 public Counter<T> addAll(Counter<T> keys)
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
Counter.java 21 public class Counter<T> implements Iterable<T>, Comparable<Counter<T>> {
25 public Counter() {
29 public Counter(Comparator<T> comparator) {
63 public Counter<T> add(T obj, long countValue) {
79 public Counter<T> clear() {
131 int counter = 0; local
133 count_key.add(new Entry<T>(map.get(key), key, counter++));
178 public Counter<T> addAll(Collection<T> keys, int delta) {
185 public Counter<T> addAll(Counter<T> keys)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_InterpolateLuma_HalfDiagVerHor4x4_unsafe_s.s 116 Counter RN 8
136 ;// Set up counter of format, [0] [0] [1 (height)] [8 (width)]
137 MOV Counter, #1
139 ADD Counter, Temp, Counter, LSL #8 ;// [0 0 H W]
200 SUBS Counter, Counter, #1 << 8 ;// Loop till height is 10
206 ADDS Counter, Counter, #(1 << 8)-4 ;// Loop till width is 12
209 ADD Counter, Counter, #1<<
    [all...]
armVCM4P10_InterpolateLuma_HalfDiagHorVer4x4_unsafe_s.s 98 Counter RN 11
119 ;// Set up counter of format, [0] [0] [1 (height)] [8 (width)]
120 MOV Counter, #4
186 ;// If Counter is even store Acc0-Acc3 in a temporary buffer
187 ;// If Counter is off store Acc0-Acc3 and previous Acc0-Acc3 in a intermediate buf
188 ANDS Temp3, Counter, #1
218 SUBS Counter, Counter, #1 ;// Loop till height is 10
235 MOV Counter, #4
240 M_STR Counter, pCounte
    [all...]
  /external/llvm/utils/TableGen/
CallingConvEmitter.cpp 33 unsigned Counter;
63 Counter = 0;
118 O << IndentStr << "static const MCPhysReg RegList" << ++Counter
127 << Counter << ")) {\n";
145 unsigned RegListNumber = ++Counter;
146 unsigned ShadowRegListNumber = ++Counter;
178 O << IndentStr << "unsigned Offset" << ++Counter
196 << Counter << ", LocVT, LocInfo));\n";
203 unsigned ShadowRegListNumber = ++Counter;
214 O << IndentStr << "unsigned Offset" << ++Counter
    [all...]
  /external/llvm/lib/ProfileData/
CoverageMapping.cpp 33 Counter CounterExpressionBuilder::get(const CounterExpression &E) {
36 return Counter::getExpression(It->second);
40 return Counter::getExpression(I);
44 Counter C, int Sign, SmallVectorImpl<std::pair<unsigned, int>> &Terms) {
46 case Counter::Zero:
48 case Counter::CounterValueReference:
51 case Counter::Expression:
60 Counter CounterExpressionBuilder::simplify(Counter ExpressionTree) {
68 return Counter::getZero()
    [all...]
CoverageMappingReader.cpp 90 Counter &C) {
91 auto Tag = Value & Counter::EncodingTagMask;
93 case Counter::Zero:
94 C = Counter::getZero();
96 case Counter::CounterValueReference:
97 C = Counter::getCounter(Value >> Counter::EncodingTagBits);
102 Tag -= Counter::Expression;
106 auto ID = Value >> Counter::EncodingTagBits;
110 C = Counter::getExpression(ID)
    [all...]
  /external/autotest/client/common_lib/cros/graphite/
statsd_mock.py 25 class Counter(stats_es_mock.mock_class_base):
26 """Mock class for statsd.Counter."""
stats.py 99 class Counter(statsd.Counter):
100 """Wrapper around statsd.Counter."""
110 statsd.Counter._send(self, subname, value)
114 self.Counter = Counter
autotest_stats.py 55 class Counter(_statsd.Counter):
56 """Wrapper around _statsd.Counter"""
  /prebuilts/gdb/darwin-x86/lib/python2.7/
collections.py 1 __all__ = ['Counter', 'deque', 'defaultdict', 'namedtuple', 'OrderedDict']
378 ### Counter
381 class Counter(dict):
386 >>> c = Counter('abcdeabcdabcaba') # count elements from a string
407 >>> d = Counter('simsalabim') # make another counter
408 >>> c.update(d) # add in the second counter
412 >>> c.clear() # empty the counter
414 Counter()
417 in the counter until the entry is deleted or the counter is cleared
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
collections.py 1 __all__ = ['Counter', 'deque', 'defaultdict', 'namedtuple', 'OrderedDict']
378 ### Counter
381 class Counter(dict):
386 >>> c = Counter('abcdeabcdabcaba') # count elements from a string
407 >>> d = Counter('simsalabim') # make another counter
408 >>> c.update(d) # add in the second counter
412 >>> c.clear() # empty the counter
414 Counter()
417 in the counter until the entry is deleted or the counter is cleared
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
collections.py 1 __all__ = ['Counter', 'deque', 'defaultdict', 'namedtuple', 'OrderedDict']
378 ### Counter
381 class Counter(dict):
386 >>> c = Counter('abcdeabcdabcaba') # count elements from a string
407 >>> d = Counter('simsalabim') # make another counter
408 >>> c.update(d) # add in the second counter
412 >>> c.clear() # empty the counter
414 Counter()
417 in the counter until the entry is deleted or the counter is cleared
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
collections.py 1 __all__ = ['Counter', 'deque', 'defaultdict', 'namedtuple', 'OrderedDict']
378 ### Counter
381 class Counter(dict):
386 >>> c = Counter('abcdeabcdabcaba') # count elements from a string
407 >>> d = Counter('simsalabim') # make another counter
408 >>> c.update(d) # add in the second counter
412 >>> c.clear() # empty the counter
414 Counter()
417 in the counter until the entry is deleted or the counter is cleared
    [all...]
  /bionic/tests/
time_test.cpp 262 struct Counter {
276 Counter(void (*fn)(sigval_t)) : value(0), timer_valid(false) {
289 ~Counter() {
312 Counter* cd = reinterpret_cast<Counter*>(value.sival_ptr);
317 Counter* cd = reinterpret_cast<Counter*>(value.sival_ptr);
326 Counter counter(Counter::CountAndDisarmNotifyFunction)
    [all...]
  /libnativehelper/include/nativehelper/
toStringArray.h 28 template <typename Counter, typename Getter>
29 jobjectArray toStringArray(JNIEnv* env, Counter* counter, Getter* getter) {
30 size_t count = (*counter)();
64 VectorCounter counter(strings);
66 return toStringArray<VectorCounter, VectorGetter>(env, &counter, &getter);
  /external/javassist/sample/rmi/
CountApplet.java 13 private Counter counter; field in class:CountApplet
32 paramName = "counter";
53 counter = (Counter)importer.lookupObject(paramName);
54 message = Integer.toString(counter.get());
62 counter.increase();
63 message = Integer.toString(counter.get());
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadTest.java 271 Counter [] countersNotYeld = new Counter[10];
274 countersNotYeld[i] = new Counter(false);
276 Counter countersYeld = new Counter(true);
281 for(Counter c:countersNotYeld) {
282 assertTrue(countersYeld.counter == c.counter);
286 class Counter extends Thread {
287 public int counter = 0 field in class:OldThreadTest.Counter
    [all...]
  /external/guice/core/test/com/google/inject/internal/
ProxyFactoryTest.java 174 ProxyFactory<Counter> factory
175 = new ProxyFactory<Counter>(InjectionPoint.forConstructorOf(Counter.class), aspects);
177 ConstructionProxy<Counter> constructor = factory.create();
179 Counter counter = constructor.newInstance(); local
180 counter.inc();
181 assertEquals(2, counter.count);
203 static class Counter {
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_collections.py 5 from collections import namedtuple, Counter, OrderedDict
602 c = Counter('abcaba')
603 self.assertEqual(c, Counter({'a':3 , 'b': 2, 'c': 1}))
604 self.assertEqual(c, Counter(a=3, b=2, c=1))
607 self.assertTrue(issubclass(Counter, dict))
608 self.assertTrue(issubclass(Counter, Mapping))
626 self.assertEqual(repr(c), "Counter({'a': 3, 'b': 2, 'c': 1})")
648 self.assertEqual(repr(c), 'Counter()')
649 self.assertRaises(NotImplementedError, Counter.fromkeys, 'abc')
653 c.update(Counter('a' * 50 + 'b' * 30)
    [all...]

Completed in 1589 milliseconds

12 3 4 5 6 7 8 9