HomeSort by relevance Sort by last modified time
    Searched refs:counter (Results 226 - 250 of 1290) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/perf-3.12.0/tools/perf/util/
cgroup.c 78 struct perf_evsel *counter; local
84 list_for_each_entry(counter, &evlist->entries, node) {
85 cgrp = counter->cgrp;
113 list_for_each_entry(counter, &evlist->entries, node) {
124 counter->cgrp = cgrp;
  /external/lldb/source/Interpreter/
CommandHistory.cpp 132 for (size_t counter = start_idx;
133 counter <= stop_idx;
134 counter++)
136 const std::string hist_item = m_history[counter];
140 stream.Printf ("%4zu: %s\n", counter, hist_item.c_str());
  /external/proguard/src/proguard/classfile/editor/
NameAndTypeShrinker.java 160 int counter = 1; local
166 constantIndexMap[index] = counter;
179 constantPool[counter++] = constant;
184 Arrays.fill(constantPool, counter, length, null);
186 return counter;
  /external/wpa_supplicant_8/src/eap_common/
eap_pax_common.c 36 u8 counter, *pos; local
53 addr[2] = &counter;
58 for (counter = 1; counter <= (u8) num_blocks; counter++) {
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
assert.hpp 259 # define BOOST_MPL_ASSERT_RELATION_IMPL(counter, x, rel, y) \
260 enum { BOOST_PP_CAT(mpl_assert_rel_value,counter) = (x rel y) }; \
263 , BOOST_PP_CAT(mpl_assertion_in_line_,counter) = sizeof( \
264 boost::mpl::assertion_failed<BOOST_PP_CAT(mpl_assert_rel_value,counter)>( \
276 # define BOOST_MPL_ASSERT_RELATION_IMPL(counter, x, rel, y) \
279 , BOOST_PP_CAT(mpl_assert_rel,counter) = sizeof( \
283 BOOST_MPL_AUX_ASSERT_CONSTANT( bool, BOOST_PP_CAT(mpl_assert_rel_value,counter) = (x rel y) ); \
286 , BOOST_PP_CAT(mpl_assertion_in_line_,counter) = sizeof( \
287 boost::mpl::assertion_failed<BOOST_PP_CAT(mpl_assert_rel_value,counter)>( \
289 boost::mpl::assert_::relations(BOOST_PP_CAT(mpl_assert_rel,counter)) \
    [all...]
  /external/oprofile/daemon/liblegacy/
opd_sample_files.c 67 static char * opd_mangle_filename(struct opd_image const * image, int counter,
72 struct opd_event * event = find_counter_event(counter);
103 int opd_open_24_sample_file(struct opd_image * image, int counter, int cpu_nr)
109 mangled = opd_mangle_filename(image, counter, cpu_nr);
115 sfile = image->sfiles[cpu_nr][counter];
120 image->sfiles[cpu_nr][counter] = sfile;
145 fill_header(odb_get_data(&sfile->sample_file), counter, 0, 0,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ParenMatch.py 67 self.counter = 0
120 self.counter += 1 # disable the last timer, if there is one.
123 if timer_count == self.counter:
156 self.counter += 1
157 def callme(callme, self=self, c=self.counter,
167 # associate a counter with an event; only disable the "paren"
169 self.counter += 1
171 lambda self=self, c=self.counter: \
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ParenMatch.py 67 self.counter = 0
120 self.counter += 1 # disable the last timer, if there is one.
123 if timer_count == self.counter:
156 self.counter += 1
157 def callme(callme, self=self, c=self.counter,
167 # associate a counter with an event; only disable the "paren"
169 self.counter += 1
171 lambda self=self, c=self.counter: \
  /external/chromium_org/third_party/libsrtp/srtp/crypto/cipher/
aes_icm.c 4 * AES Integer Counter Mode
59 * integer counter mode works as follows:
81 * ctr is the block counter, which increments from zero for
178 * set counter and initial values to 'offset' value, being careful not to
181 v128_set_to_zero(&c->counter);
188 memcpy(&c->counter, key + base_key_len, copy_len);
199 v128_set_to_zero(&c->counter);
211 * aes_icm_set_octet(c, i) sets the counter of the context which it is
232 /* set counter value */
234 c->counter.v64[0] = c->offset.v64[0]
    [all...]
  /external/srtp/crypto/cipher/
aes_icm.c 4 * AES Integer Counter Mode
59 * integer counter mode works as follows:
81 * ctr is the block counter, which increments from zero for
169 /* set counter and initial values to 'offset' value */
173 c->counter.v8[i] = key[16 + i];
179 c->counter.v8[14] = c->counter.v8[15] = 0;
199 * aes_icm_set_octet(c, i) sets the counter of the context which it is
220 /* set counter value */
222 c->counter.v64[0] = c->offset.v64[0]
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
gthr-default.h 350 long counter; member in struct:__anon48622
355 long counter; member in struct:__anon48623
637 __mutex->counter = -1;
654 if (InterlockedIncrement (&__mutex->counter) == 0 ||
661 InterlockedDecrement (&__mutex->counter);
675 if (__GTHR_W32_InterlockedCompareExchange (&__mutex->counter, 0, -1) < 0)
688 if (InterlockedDecrement (&__mutex->counter) >= 0)
697 __mutex->counter = -1;
709 if (InterlockedIncrement (&__mutex->counter) == 0)
716 InterlockedDecrement (&__mutex->counter);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
gthr-default.h 350 long counter; member in struct:__anon48627
355 long counter; member in struct:__anon48628
637 __mutex->counter = -1;
654 if (InterlockedIncrement (&__mutex->counter) == 0 ||
661 InterlockedDecrement (&__mutex->counter);
675 if (__GTHR_W32_InterlockedCompareExchange (&__mutex->counter, 0, -1) < 0)
688 if (InterlockedDecrement (&__mutex->counter) >= 0)
697 __mutex->counter = -1;
709 if (InterlockedIncrement (&__mutex->counter) == 0)
716 InterlockedDecrement (&__mutex->counter);
    [all...]
  /external/chromium_org/tools/stats_viewer/
stats_viewer.cs 84 /// Updates the UI for a counter.
86 /// <param name="counter"></param>
87 private void UpdateCounter(IStatsCounter counter) {
90 // Figure out which list this counter goes into.
91 if (counter is StatsCounterRate)
93 else if (counter is StatsCounter || counter is StatsTimer)
96 return; // Counter type not supported yet.
98 // See if the counter is already in the list.
99 ListViewItem item = view.Items[counter.name];
    [all...]
  /development/ndk/platforms/android-9/arch-mips/include/asm/
local.h 41 #define local_cmpxchg(l, o, n) ((long)cmpxchg_local(&((l)->a.counter), (o), (n)))
42 #define local_xchg(l, n) (xchg_local(&((l)->a.counter), (n)))
54 #define __local_inc(l) ((l)->a.counter++)
55 #define __local_dec(l) ((l)->a.counter++)
56 #define __local_add(i, l) ((l)->a.counter+=(i))
57 #define __local_sub(i, l) ((l)->a.counter-=(i))
  /external/chromium-trace/trace-viewer/src/base/
unittest.css 7 counter-reset: suite-count;
70 counter-increment: suite-count;
76 content: counter(suite-count) ' -';
  /external/chromium_org/chrome/common/extensions/docs/examples/api/eventPage/basic/
content.js 32 log("In-memory counter is: " + response.counter);
33 log("Persisted counter is: " + response.persistentCounter);
  /external/stlport/test/unit/
iter_test.cpp 49 unsigned counter = 0; local
50 for (vec::iterator i = v.begin(); i != v.end(); ++i, ++counter) {
51 switch (counter) {
70 unsigned counter = 0; local
71 for (it = v.rbegin(); it != v.rend(); ++it, ++counter) {
72 switch (counter) {
  /ndk/tests/device/test-gnustl-full/unit/
iter_test.cpp 49 unsigned counter = 0; local
50 for (vec::iterator i = v.begin(); i != v.end(); ++i, ++counter) {
51 switch (counter) {
70 unsigned counter = 0; local
71 for (it = v.rbegin(); it != v.rend(); ++it, ++counter) {
72 switch (counter) {
  /ndk/tests/device/test-stlport/unit/
iter_test.cpp 49 unsigned counter = 0; local
50 for (vec::iterator i = v.begin(); i != v.end(); ++i, ++counter) {
51 switch (counter) {
70 unsigned counter = 0; local
71 for (it = v.rbegin(); it != v.rend(); ++it, ++counter) {
72 switch (counter) {
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
local.h 41 #define local_cmpxchg(l, o, n) ((long)cmpxchg_local(&((l)->a.counter), (o), (n)))
42 #define local_xchg(l, n) (xchg_local(&((l)->a.counter), (n)))
54 #define __local_inc(l) ((l)->a.counter++)
55 #define __local_dec(l) ((l)->a.counter++)
56 #define __local_add(i, l) ((l)->a.counter+=(i))
57 #define __local_sub(i, l) ((l)->a.counter-=(i))
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
local.h 41 #define local_cmpxchg(l, o, n) ((long)cmpxchg_local(&((l)->a.counter), (o), (n)))
42 #define local_xchg(l, n) (xchg_local(&((l)->a.counter), (n)))
54 #define __local_inc(l) ((l)->a.counter++)
55 #define __local_dec(l) ((l)->a.counter++)
56 #define __local_add(i, l) ((l)->a.counter+=(i))
57 #define __local_sub(i, l) ((l)->a.counter-=(i))
  /prebuilts/ndk/9/platforms/android-12/arch-mips/usr/include/asm/
local.h 41 #define local_cmpxchg(l, o, n) ((long)cmpxchg_local(&((l)->a.counter), (o), (n)))
42 #define local_xchg(l, n) (xchg_local(&((l)->a.counter), (n)))
54 #define __local_inc(l) ((l)->a.counter++)
55 #define __local_dec(l) ((l)->a.counter++)
56 #define __local_add(i, l) ((l)->a.counter+=(i))
57 #define __local_sub(i, l) ((l)->a.counter-=(i))
  /prebuilts/ndk/9/platforms/android-13/arch-mips/usr/include/asm/
local.h 41 #define local_cmpxchg(l, o, n) ((long)cmpxchg_local(&((l)->a.counter), (o), (n)))
42 #define local_xchg(l, n) (xchg_local(&((l)->a.counter), (n)))
54 #define __local_inc(l) ((l)->a.counter++)
55 #define __local_dec(l) ((l)->a.counter++)
56 #define __local_add(i, l) ((l)->a.counter+=(i))
57 #define __local_sub(i, l) ((l)->a.counter-=(i))
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/
local.h 41 #define local_cmpxchg(l, o, n) ((long)cmpxchg_local(&((l)->a.counter), (o), (n)))
42 #define local_xchg(l, n) (xchg_local(&((l)->a.counter), (n)))
54 #define __local_inc(l) ((l)->a.counter++)
55 #define __local_dec(l) ((l)->a.counter++)
56 #define __local_add(i, l) ((l)->a.counter+=(i))
57 #define __local_sub(i, l) ((l)->a.counter-=(i))

Completed in 577 milliseconds

1 2 3 4 5 6 7 8 91011>>