HomeSort by relevance Sort by last modified time
    Searched refs:Counter (Results 251 - 275 of 450) sorted by null

<<1112131415161718

  /external/autotest/client/common_lib/cros/
autoupdater.py 262 c = metrics.Counter('chromeos/autotest/autoupdater/trigger')
318 c = metrics.Counter('chromeos/autotest/autoupdater/update')
  /external/clang/lib/Frontend/
ASTUnit.cpp 496 unsigned &Counter;
502 IntrusiveRefCntPtr<TargetInfo> &Target, unsigned &Counter)
504 Target(Target), Counter(Counter), InitializedLanguage(false) {}
534 Counter = Value;
695 unsigned Counter;
719 Counter));
745 PP.setCounterValue(Counter);
    [all...]
  /external/python/cpython2/Lib/test/
test_threading.py 24 # A trivial mutable counter.
25 class Counter(object):
88 numrunning = Counter()
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
ValueEnumerator.cpp 478 unsigned Counter = 0;
480 IDMap[BB] = ++Counter;
  /frameworks/base/services/core/java/com/android/server/am/
HealthStatsBatteryStatsWriter.java 170 for (final BatteryStats.LongCounter counter: controller.getTxTimeCounters()) {
171 sum += counter.getCountLocked(STATS_SINCE_UNPLUGGED);
189 for (final BatteryStats.LongCounter counter: controller.getTxTimeCounters()) {
190 sum += counter.getCountLocked(STATS_SINCE_UNPLUGGED);
208 for (final BatteryStats.LongCounter counter: controller.getTxTimeCounters()) {
209 sum += counter.getCountLocked(STATS_SINCE_UNPLUGGED);
432 for (final Map.Entry<String,? extends BatteryStats.Counter> entry:
434 final BatteryStats.Counter counter = entry.getValue(); local
435 if (counter != null)
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp 529 unsigned Counter = 0;
531 IDMap[&*BB] = ++Counter;
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.cpp 529 unsigned Counter = 0;
531 IDMap[&*BB] = ++Counter;
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.cpp 529 unsigned Counter = 0;
531 IDMap[&*BB] = ++Counter;
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_threading.py 20 # A trivial mutable counter.
21 class Counter(object):
84 numrunning = Counter()
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_threading.py 20 # A trivial mutable counter.
21 class Counter(object):
84 numrunning = Counter()
  /prebuilts/go/darwin-x86/src/crypto/aes/
aes_gcm.go 54 // NewGCM returns the AES cipher wrapped in Galois Counter Mode. This is only
106 var counter, tagMask [gcmBlockSize]byte
109 // Init counter to nonce||1
110 copy(counter[:], nonce)
111 counter[gcmBlockSize-1] = 1
113 // Otherwise counter = GHASH(nonce)
114 gcmAesData(&g.productTable, nonce, &counter)
115 gcmAesFinish(&g.productTable, &tagMask, &counter, uint64(len(nonce)), uint64(0))
118 aesEncBlock(&tagMask, &counter, g.ks)
125 gcmAesEnc(&g.productTable, out, plaintext, &counter, &tagOut, g.ks
    [all...]
  /prebuilts/go/darwin-x86/src/sync/
waitgroup.go 23 // 64-bit value: high 32 bits are counter, low 32 bits are waiter count.
39 // Add adds delta, which may be negative, to the WaitGroup counter.
40 // If the counter becomes zero, all goroutines blocked on Wait are released.
41 // If the counter goes negative, Add panics.
43 // Note that calls with a positive delta that occur when the counter is zero
45 // positive delta that start when the counter is greater than zero, may happen
69 // several concurrent wg.counter transitions from 0.
73 panic("sync: negative WaitGroup counter")
81 // This goroutine has set counter to 0 when waiters > 0.
84 // - Wait does not increment waiters if it sees counter == 0
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/chacha20poly1305/internal/chacha20/
chacha_generic.go 170 // In and out may be the same slice but otherwise should not overlap. Counter
171 // contains the raw ChaCha20 counter bytes (i.e. block counter followed by
173 func XORKeyStream(out, in []byte, counter *[16]byte, key *[32]byte) {
176 copy(counterCopy[:], counter[:])
  /prebuilts/go/linux-x86/src/crypto/aes/
aes_gcm.go 54 // NewGCM returns the AES cipher wrapped in Galois Counter Mode. This is only
106 var counter, tagMask [gcmBlockSize]byte
109 // Init counter to nonce||1
110 copy(counter[:], nonce)
111 counter[gcmBlockSize-1] = 1
113 // Otherwise counter = GHASH(nonce)
114 gcmAesData(&g.productTable, nonce, &counter)
115 gcmAesFinish(&g.productTable, &tagMask, &counter, uint64(len(nonce)), uint64(0))
118 aesEncBlock(&tagMask, &counter, g.ks)
125 gcmAesEnc(&g.productTable, out, plaintext, &counter, &tagOut, g.ks
    [all...]
  /prebuilts/go/linux-x86/src/sync/
waitgroup.go 23 // 64-bit value: high 32 bits are counter, low 32 bits are waiter count.
39 // Add adds delta, which may be negative, to the WaitGroup counter.
40 // If the counter becomes zero, all goroutines blocked on Wait are released.
41 // If the counter goes negative, Add panics.
43 // Note that calls with a positive delta that occur when the counter is zero
45 // positive delta that start when the counter is greater than zero, may happen
69 // several concurrent wg.counter transitions from 0.
73 panic("sync: negative WaitGroup counter")
81 // This goroutine has set counter to 0 when waiters > 0.
84 // - Wait does not increment waiters if it sees counter == 0
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/chacha20poly1305/internal/chacha20/
chacha_generic.go 170 // In and out may be the same slice but otherwise should not overlap. Counter
171 // contains the raw ChaCha20 counter bytes (i.e. block counter followed by
173 func XORKeyStream(out, in []byte, counter *[16]byte, key *[32]byte) {
176 copy(counterCopy[:], counter[:])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_threading.py 20 # A trivial mutable counter.
21 class Counter(object):
84 numrunning = Counter()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_threading.py 20 # A trivial mutable counter.
21 class Counter(object):
84 numrunning = Counter()
  /external/autotest/scheduler/
query_managers.py 174 host_counts = collections.Counter(
  /external/autotest/server/
crashcollect.py 271 (metrics.Counter('chromeos/autotest/errors/collect_crashinfo_timeout')
  /external/libcxx/test/std/containers/associative/map/map.cons/
move_alloc.pass.cpp 25 #include "Counter.h"
147 typedef Counter<int> T;
  /external/libcxx/test/std/containers/associative/multimap/multimap.cons/
move_alloc.pass.cpp 25 #include "Counter.h"
147 typedef Counter<int> T;
  /external/python/cpython3/Lib/
statistics.py 253 table = collections.Counter(iter(data)).most_common()
  /frameworks/base/tests/JankBench/scripts/external/
statistics.py 296 table = collections.Counter(iter(data)).most_common()
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
AsmPrinter.h 583 mutable unsigned Counter = ~0U;

Completed in 2243 milliseconds

<<1112131415161718