HomeSort by relevance Sort by last modified time
    Searched refs:Counter (Results 151 - 175 of 308) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/associative/map/map.cons/
move_alloc.pass.cpp 23 #include "Counter.h"
146 typedef Counter<int> T;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multimap/multimap.cons/
move_alloc.pass.cpp 23 #include "Counter.h"
146 typedef Counter<int> T;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multiset/multiset.cons/
move_alloc.pass.cpp 22 #include "Counter.h"
142 typedef Counter<int> V;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/associative/set/set.cons/
move_alloc.pass.cpp 22 #include "Counter.h"
142 typedef Counter<int> V;
  /external/autotest/scheduler/
monitor_db.py 399 metrics.Counter('chromeos/autotest/scheduler/tick').increment()
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/cipher/
gcm.go 65 // gcm represents a Galois Counter Mode with a specific key. See
75 // NewGCM returns the given 128-bit, block cipher wrapped in Galois Counter Mode
86 // Counter Mode, which accepts nonces of the given length.
148 var counter, tagMask [gcmBlockSize]byte
149 g.deriveCounter(&counter, nonce)
151 g.cipher.Encrypt(tagMask[:], counter[:])
152 gcmInc32(&counter)
154 g.counterCrypt(out, plaintext, &counter)
177 var counter, tagMask [gcmBlockSize]byte
178 g.deriveCounter(&counter, nonce
    [all...]
  /prebuilts/go/linux-x86/src/crypto/cipher/
gcm.go 65 // gcm represents a Galois Counter Mode with a specific key. See
75 // NewGCM returns the given 128-bit, block cipher wrapped in Galois Counter Mode
86 // Counter Mode, which accepts nonces of the given length.
148 var counter, tagMask [gcmBlockSize]byte
149 g.deriveCounter(&counter, nonce)
151 g.cipher.Encrypt(tagMask[:], counter[:])
152 gcmInc32(&counter)
154 g.counterCrypt(out, plaintext, &counter)
177 var counter, tagMask [gcmBlockSize]byte
178 g.deriveCounter(&counter, nonce
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_threading.py 18 # A trivial mutable counter.
19 class Counter(object):
82 numrunning = Counter()
  /external/autotest/client/common_lib/cros/
autoupdater.py 268 c = metrics.Counter('chromeos/autotest/autoupdater/trigger')
317 c = metrics.Counter('chromeos/autotest/autoupdater/update')
  /external/autotest/tko/
db.py 139 autotest_stats.Counter('tko_db_con_error').increment()
181 autotest_stats.Counter('tko_db_error').increment()
  /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/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
70 // several concurrent wg.counter transitions from 0.
75 panic("sync: negative WaitGroup counter")
83 // This goroutine has set counter to 0 when waiters > 0.
86 // - 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
70 // several concurrent wg.counter transitions from 0.
75 panic("sync: negative WaitGroup counter")
83 // This goroutine has set counter to 0 when waiters > 0.
86 // - 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()

Completed in 547 milliseconds

1 2 3 4 5 67 8 91011>>