HomeSort by relevance Sort by last modified time
    Searched refs:counter (Results 176 - 200 of 1122) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/guava/guava-tests/test/com/google/common/cache/
AbstractCacheTest.java 84 StatsCounter counter = new SimpleStatsCounter(); local
85 CacheStats stats = counter.snapshot();
100 StatsCounter counter = new SimpleStatsCounter(); local
102 counter.recordHits(1);
105 counter.recordLoadSuccess(i);
108 counter.recordLoadException(i);
111 counter.recordMisses(1);
114 counter.recordEviction();
116 CacheStats stats = counter.snapshot();
  /external/openssl/crypto/modes/
ctr128.c 62 /* NOTE: the IV/counter CTR mode is big-endian. The code itself
65 /* increment counter (128-bit int) by 1 */
66 static void ctr128_inc(unsigned char *counter) {
72 c = counter[n];
74 counter[n] = c;
80 static void ctr128_inc_aligned(unsigned char *counter) {
85 ctr128_inc(counter);
89 data = (size_t *)counter;
101 /* The input encrypted as though 128bit counter mode is being
104 * encrypted counter is kept in ecount_buf. Both *num an
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_enter/d/
T_monitor_enter_1.d 19 .field public counter I
28 iput v0, v1, dot.junit.opcodes.monitor_enter.d.T_monitor_enter_1.counter I
36 iget v1, v7, dot.junit.opcodes.monitor_enter.d.T_monitor_enter_1.counter I
41 iget v2, v7, dot.junit.opcodes.monitor_enter.d.T_monitor_enter_1.counter I
46 iput v1, v7, dot.junit.opcodes.monitor_enter.d.T_monitor_enter_1.counter I
52 iput v5, v7, dot.junit.opcodes.monitor_enter.d.T_monitor_enter_1.counter I
60 iput v5, v7, dot.junit.opcodes.monitor_enter.d.T_monitor_enter_1.counter I
  /external/chromium_org/native_client_sdk/src/libraries/xray/
report.c 100 int counter = 0; local
116 XRayFrameMakeLabel(capture, counter, label);
118 counter,
124 totals[counter].index = counter;
125 totals[counter].frame = frame;
126 totals[counter].ticks = total_ticks;
128 ++counter;
134 "XRay: %d frame(s) %d total capture(s)\n", counter, total_capture);
137 qsort(totals, counter, sizeof(struct XRayTotal), qcompare)
171 int counter = 0; local
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
async2.test 27 CREATE TABLE counter(c);
28 INSERT INTO counter(c) VALUES (1);
33 UPDATE counter SET c = 2;
39 UPDATE counter SET c = 3;
44 UPDATE counter SET c = 'FIN';
82 set c [db one {SELECT c FROM counter LIMIT 1}]
89 } {counter}
  /external/apache-harmony/support/src/test/java/tests/support/
Support_UnmodifiableMapTest.java 145 for (int counter = 0; it.hasNext(); counter++) {
148 objArray[counter] == it.next());
154 for (int counter = 0; it.hasNext(); counter++) {
157 objArray[counter] == it.next());
  /libcore/support/src/test/java/tests/support/
Support_UnmodifiableMapTest.java 145 for (int counter = 0; it.hasNext(); counter++) {
148 objArray[counter] == it.next());
154 for (int counter = 0; it.hasNext(); counter++) {
157 objArray[counter] == it.next());
  /external/chromium/chrome/browser/chromeos/cros/
cros_library_loader.cc 25 base::Histogram* counter = base::Histogram::FactoryTimeGet( local
31 counter->AddTime(delta);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ContentData.h 131 const CounterContent* counter() const { return m_counter.get(); } function in class:WebCore::CounterContentData
132 void setCounter(PassOwnPtr<CounterContent> counter) { m_counter = counter; }
138 CounterContentData(PassOwnPtr<CounterContent> counter)
139 : m_counter(counter)
145 OwnPtr<CounterContent> counterData = adoptPtr(new CounterContent(*counter()));
153 return *static_cast<const CounterContentData&>(data).counter() == *counter();
  /external/skia/gm/
polygons.cpp 81 static void SetLocation(SkCanvas* canvas, int counter, int lineNum) {
82 SkScalar x = SK_Scalar1 * kCellSize * (counter % lineNum) + 30 + SK_Scalar1 / 4;
83 SkScalar y = SK_Scalar1 * kCellSize * (counter / lineNum) + 30 + 3 * SK_Scalar1 / 4;
108 int counter = 0; variable
119 SetLocation(canvas, counter, fPolygons.count());
127 ++counter;
144 SetLocation(canvas, counter, fPolygons.count());
148 ++counter;
  /external/ceres-solver/internal/ceres/
symmetric_linear_solver_test.cc 94 int counter = 0; local
97 Ai[counter] = i;
98 Aj[counter] = j;
99 ++counter;
  /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)();
48 template <typename Counter, typename Getter>
49 jobjectArray toStringArray16(JNIEnv* env, Counter* counter, Getter* getter) {
50 size_t count = (*counter)();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TreeSetTest.java 60 for (int counter = 0; counter < objArray.length; counter++)
62 .contains(objArray[counter]));
94 for (int counter = 0; counter < objArray.length; counter++)
96 anotherTreeSet.contains(objArray[counter]));
273 for (int counter = startPos; counter < endPos; counter++
    [all...]
CollectionsTest.java 138 for (int counter = 0; counter < colSize; counter++)
139 normalCountingList.add(new Integer(counter));
140 for (int counter = 0; counter < colSize; counter++)
141 offsetCountingList.add(new Integer(counter + colSize));
221 for (int counter = 0; counter < mapSize; counter++)
    [all...]
  /external/proguard/src/proguard/obfuscate/
DictionaryNameFactory.java 179 for (int counter = 0; counter < 50; counter++)
SimpleNameFactory.java 151 for (int counter = 0; counter < count; counter++)
  /external/wpa_supplicant_8/src/crypto/
sha1-tprf.c 32 unsigned char counter = 0; local
48 addr[4] = &counter;
55 counter++;
sha256-prf.c 55 u16 counter = 1; local
76 WPA_PUT_LE16(counter_le, counter);
87 counter++;
  /libcore/luni/src/test/java/tests/api/java/util/
CollectionsTest.java 121 for (int counter = 0; counter < colSize; counter++)
122 normalCountingList.add(new Integer(counter));
123 for (int counter = 0; counter < colSize; counter++)
124 offsetCountingList.add(new Integer(counter + colSize));
204 for (int counter = 0; counter < mapSize; counter++)
    [all...]
  /external/chromium/base/synchronization/
waitable_event_watcher_unittest.cc 24 explicit DecrementCountDelegate(int* counter) : counter_(counter) {
75 int counter = 1; local
76 DecrementCountDelegate delegate(&counter);
90 EXPECT_EQ(1, counter);
  /external/chromium/base/win/
object_watcher_unittest.cc 25 explicit DecrementCountDelegate(int* counter) : counter_(counter) {
79 int counter = 1; local
80 DecrementCountDelegate delegate(&counter);
98 EXPECT_EQ(1, counter);
  /external/chromium_org/base/synchronization/
waitable_event_watcher_unittest.cc 36 explicit DecrementCountContainer(int* counter) : counter_(counter) {
85 int counter = 1; local
86 DecrementCountContainer delegate(&counter);
102 EXPECT_EQ(1, counter);
  /external/chromium_org/tools/telemetry/telemetry/core/timeline/
process.py 6 import telemetry.core.timeline.counter as tracing_counter
29 for counter in self._counters.itervalues():
30 yield counter
54 'Counter %s not found in process with id %s.' % (counter_id,
60 ctr = tracing_counter.Counter(self, category, name)
71 for counter in self._counters.itervalues():
72 counter.FinalizeImport()
  /external/javassist/src/test/test/javassist/proxy/
ProxyCacheGCTest.java 61 public void createProxy(int counter)
67 String targetName = "test.javassist.MyTarget_" + counter;
68 String targetConstructorName = "MyTarget_" + counter;
76 String handlerName = "test.javassist.MyHandler_" + counter;
83 String filterName = "test.javassist.MyFilter" + counter;
  /external/linux-tools-perf/util/
cgroup.c 79 struct perf_evsel *counter; local
85 list_for_each_entry(counter, &evlist->entries, node) {
86 cgrp = counter->cgrp;
114 list_for_each_entry(counter, &evlist->entries, node) {
125 counter->cgrp = cgrp;

Completed in 2751 milliseconds

1 2 3 4 5 6 78 91011>>