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

<<11121314151617181920>>

  /external/valgrind/exp-bbv/tests/amd64-linux/
clone_test.S 13 mov $499,%rcx # load counter
61 mov $499997,%rcx # load counter
70 mov $999997,%rcx # load counter
85 mov $250000,%rcx # load counter
million.S 10 mov $499997,%rcx # load counter
  /external/valgrind/exp-bbv/tests/x86-linux/
clone_test.S 13 mov $499,%ecx # load counter
61 mov $499997,%ecx # load counter
70 mov $999997,%ecx # load counter
85 mov $250000,%ecx # load counter
  /platform_testing/tests/functional/downloadapp/src/com/android/functional/downloadapp/
DownloadAppTests.java 134 int counter = 5; local
137 && counter-- > 0);
139 counter = 5;
142 && counter-- > 0);
144 counter = 5;
146 By.desc("More options")), mDLAppHelper.TIMEOUT)) == null && counter-- > 0)
150 By.desc("Done")), mDLAppHelper.TIMEOUT)) == null && counter-- > 0)
166 int counter = 5; local
170 && counter-- > 0);
  /system/extras/simpleperf/
record_lib_interface.cpp 112 bool ReadCounters(std::vector<Counter>* counters) override;
117 bool ReadRawCounters(std::vector<Counter>* counters);
118 // Add counter b to a.
119 void AddCounter(Counter& a, const Counter& b);
120 // Sub counter b from a.
121 void SubCounter(Counter& a, const Counter& b);
126 std::vector<Counter> last_start_counters_;
129 std::vector<Counter> accumulated_counters_
161 Counter counter; local
    [all...]
  /system/tpm/tpm_manager/server/
tpm2_status_impl.h 39 bool GetDictionaryAttackInfo(int* counter,
tpm_status_impl.h 41 bool GetDictionaryAttackInfo(int* counter,
  /cts/tests/camera/src/android/hardware/camera2/cts/
ExtendedCameraCharacteristicsTest.java 154 int counter = 0; local
159 mIds[counter]), config);
168 Log.i(TAG, "Camera " + mIds[counter] +
175 mIds[counter]), outputFormats, ImageFormat.YUV_420_888);
177 mIds[counter]), outputFormats, ImageFormat.JPEG);
185 ImageFormat.YUV_420_888, mIds[counter]));
196 ImageFormat.JPEG, mIds[counter]), jpegSizes,
204 ImageFormat.JPEG, mIds[counter]), jpegSizes, HD);
211 ImageFormat.JPEG, mIds[counter]), jpegSizes, VGA);
218 ImageFormat.JPEG, mIds[counter]), jpegSizes, QVGA)
307 int counter = 0; local
468 int counter = 0; local
573 int counter = 0; local
747 int counter = 0; local
865 int counter = 0; local
1042 int counter = 0; local
1248 int counter = 0; local
1329 int counter = 0; local
1406 int counter = 0; local
1468 int counter = 0; local
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/aes/
gcm_s390x.go 14 // (gcmAsm) uses the KMCTR instruction to encrypt using AES in counter mode and
74 // NewGCM returns the AES cipher wrapped in Galois Counter Mode. This is only
135 // cryptBlocksGCM encrypts src using AES in counter mode using the given
136 // function code and key. The rightmost 32-bits of the counter are incremented
137 // between each block as required by the GCM spec. The initial counter value
138 // is given by cnt, which is updated with the value of the next counter value
147 // counterCrypt encrypts src using AES in counter mode and places the result
154 // buffer for counter values.
177 // deriveCounter computes the initial GCM counter state from the given nonce.
180 // GCM has two modes of operation with respect to the initial counter
    [all...]
  /prebuilts/go/linux-x86/src/crypto/aes/
gcm_s390x.go 14 // (gcmAsm) uses the KMCTR instruction to encrypt using AES in counter mode and
74 // NewGCM returns the AES cipher wrapped in Galois Counter Mode. This is only
135 // cryptBlocksGCM encrypts src using AES in counter mode using the given
136 // function code and key. The rightmost 32-bits of the counter are incremented
137 // between each block as required by the GCM spec. The initial counter value
138 // is given by cnt, which is updated with the value of the next counter value
147 // counterCrypt encrypts src using AES in counter mode and places the result
154 // buffer for counter values.
177 // deriveCounter computes the initial GCM counter state from the given nonce.
180 // GCM has two modes of operation with respect to the initial counter
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
IdentityHashMap2Test.java 92 for (int counter = 0; counter < hmSize; counter++)
93 myMap.put(objArray2[counter], objArray[counter]);
95 for (int counter = 0; counter < hmSize; counter++)
97 .get(objArray2[counter]) == hm2.get(objArray2[counter]));
    [all...]
  /art/test/441-checker-inliner/src/
Main.java 200 private static int counter = 42; field in class:Main
203 return ++counter;
  /external/annotation-tools/asmx/src/org/objectweb/asm/commons/
StaticInitMerger.java 50 private int counter; field in class:StaticInitMerger
79 String n = prefix + counter++;
  /external/apache-harmony/support/src/test/java/tests/support/
Support_ListTest.java 41 for (int counter = 0; counter < 100; counter++) {
43 elem = list.get(counter);
46 .equals(new Integer(counter)));
117 for (int counter = 0; li.hasNext(); counter++) {
121 .equals(new Integer(counter)));
  /external/autotest/client/tests/wb_kupdate/
wb_kupdate.py 95 def _write_data(self, destination, counter, write_size):
101 @param counter: the file counter.
107 file_name = os.path.join(destination, 'test_file_%s' % counter)
221 counter = 1
224 while counter < file_count:
225 logging.info('Iteration %s.', counter)
228 write_completion_time = self._write_data(self.mount_point, counter,
253 self.result_map[counter] = time_taken.seconds
255 # Increment the counter
    [all...]
  /external/boringssl/src/crypto/fipsmodule/rand/
ctrdrbg.c 61 OPENSSL_memcpy(drbg->counter.bytes, seed_material + 32, 16);
70 // ctr_inc adds |n| to the last four bytes of |drbg->counter|, treated as a
73 drbg->counter.words[3] =
74 CRYPTO_bswap4(CRYPTO_bswap4(drbg->counter.words[3]) + n);
89 drbg->block(drbg->counter.bytes, temp + i, &drbg->ks);
97 OPENSSL_memcpy(drbg->counter.bytes, temp + 32, 16);
169 drbg->ctr(out, out, num_blocks, &drbg->ks, drbg->counter.bytes);
174 drbg->block(drbg->counter.bytes, out + i, &drbg->ks);
185 drbg->block(drbg->counter.bytes, block, &drbg->ks);
  /external/boringssl/src/ssl/test/runner/
hkdf.go 42 counter := byte(0)
47 counter++
50 hmac.Write([]byte{counter})
53 copy(okm[(int(counter)-1)*hashSize:], block)
  /external/curl/tests/libtest/
lib1552.c 38 int counter = 3; local
59 while(still_running && counter--) {
lib1553.c 52 int counter = 1; local
81 while(still_running && counter--) {
  /external/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/include/linux/
types.h 103 int counter; member in struct:__anon26886
108 long counter; member in struct:__anon26887
  /external/llvm/unittests/ADT/
RangeAdapterTest.cpp 53 int counter = 3; local
55 EXPECT_EQ(i, counter--);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigwaitinfo/
7-1.c 34 int counter = 0; variable
38 counter++;
  /external/tpm2/
stubs_hash.c 90 // counter for incremental operations to
96 UINT32 counter = 0; // counter value local
107 counter = *counterInOut;
129 counter++;
138 // Adding counter
139 UINT32_TO_BYTE_ARRAY(counter, marshaledUint32);
162 *counterInOut = counter;
176 UINT32 counter = 0; // counter valu local
    [all...]
  /external/valgrind/drd/tests/
annotate_smart_pointer.cpp 262 class counter class
265 counter() function in class:counter
268 ~counter()
300 smart_ptr<counter>* pp = reinterpret_cast<smart_ptr<counter>*>(arg);
316 smart_ptr<counter> p(new counter);
319 q->Create(thread_func, new smart_ptr<counter>(p));
321 // Avoid that counter.m_mutex introduces a false ordering on the
322 // counter.m_count accesses
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcFailBringUp.java 35 // counter with its --ei option name and default value
36 static final String COUNTER = "counter";
53 mCounter = intent.getIntExtra(COUNTER, DEFAULT_COUNTER);
63 public void saveParameters(int counter, int failCause, int suggestedRetryTime) {
64 mCounter = counter;

Completed in 558 milliseconds

<<11121314151617181920>>