Searched refs:counter (Results 51 - 75 of 809) sorted by relevance

1234567891011>>

/external/vulkan-validation-layers/layers/
H A Dthreading.h72 class counter { class
217 counter(const char *name = "", VkDebugReportObjectTypeEXT type = VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT) { function in class:counter
235 counter<VkCommandBuffer> c_VkCommandBuffer;
236 counter<VkDevice> c_VkDevice;
237 counter<VkInstance> c_VkInstance;
238 counter<VkQueue> c_VkQueue;
240 counter<VkBuffer> c_VkBuffer;
241 counter<VkBufferView> c_VkBufferView;
242 counter<VkCommandPool> c_VkCommandPool;
243 counter<VkDescriptorPoo
[all...]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue56/
H A DPerlTest.java39 int counter = 0;
55 counter++;
57 assertEquals(4, counter);
58 assertEquals(0, CodeBean.counter);
77 int counter = 0;
83 counter++;
85 assertEquals(4, counter);
86 assertEquals(55, CodeBean.counter);
94 int counter = 0;
100 counter
[all...]
H A DCodeBean.java22 public static int counter; field in class:CodeBean
25 counter++;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DSICBlockCipher.java24 private byte[] counter; field in class:SICBlockCipher
40 this.counter = new byte[blockSize];
104 cipher.processBlock(counter, 0, counterOut, 0);
111 if (byteCount == counter.length)
130 if (counter[i] != IV[i])
140 int i = counter.length - pos;
143 if (++counter[i] != 0)
152 byte old = counter[counter.length - 1];
154 counter[counte
[all...]
/external/linux-kselftest/tools/testing/selftests/sync/
H A Dsync_stress_parallelism.c37 int counter; member in struct:__anon13545
61 ASSERT(test_data_two_threads.counter == i * 2 + thread_id,
63 test_data_two_threads.counter++;
85 test_data_two_threads.counter = 0;
90 * hammmering on the same counter.
104 ASSERT(test_data_two_threads.counter ==
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-ctr.c20 * @nonce: Nonce for counter mode (16 bytes)
32 u8 counter[AES_BLOCK_SIZE], buf[AES_BLOCK_SIZE]; local
37 os_memcpy(counter, nonce, AES_BLOCK_SIZE);
40 aes_encrypt(ctx, counter, buf);
49 counter[i]++;
50 if (counter[i])
62 * @nonce: Nonce for counter mode (16 bytes)
H A Dsha1-prf.c33 u8 counter = 0; local
44 addr[2] = &counter;
62 counter++;
/external/wpa_supplicant_8/src/crypto/
H A Daes-ctr.c20 * @nonce: Nonce for counter mode (16 bytes)
32 u8 counter[AES_BLOCK_SIZE], buf[AES_BLOCK_SIZE]; local
37 os_memcpy(counter, nonce, AES_BLOCK_SIZE);
40 aes_encrypt(ctx, counter, buf);
49 counter[i]++;
50 if (counter[i])
62 * @nonce: Nonce for counter mode (16 bytes)
H A Dsha1-prf.c33 u8 counter = 0; local
44 addr[2] = &counter;
62 counter++;
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-ctr.c20 * @nonce: Nonce for counter mode (16 bytes)
32 u8 counter[AES_BLOCK_SIZE], buf[AES_BLOCK_SIZE]; local
37 os_memcpy(counter, nonce, AES_BLOCK_SIZE);
40 aes_encrypt(ctx, counter, buf);
49 counter[i]++;
50 if (counter[i])
62 * @nonce: Nonce for counter mode (16 bytes)
H A Dsha1-prf.c33 u8 counter = 0; local
44 addr[2] = &counter;
62 counter++;
/external/libvpx/libvpx/vpx_dsp/mips/
H A Dsad_mmi.c362 int counter) {
365 mips_reg l_counter = counter;
377 MMI_ADDIU(%[counter], %[counter], -0x02)
378 "bnez %[counter], 1b \n\t"
381 [ftmp4]"=&f"(ftmp4), [ftmp5]"=&f"(ftmp5), [counter]"+&r"(l_counter),
404 int counter) {
407 mips_reg l_counter = counter;
421 MMI_ADDIU(%[counter], %[counter],
360 vpx_sad64x(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, int counter) argument
401 vpx_sad_avg64x(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, const uint8_t *second_pred, int counter) argument
446 vpx_sad32x(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, int counter) argument
489 vpx_sad_avg32x(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, const uint8_t *second_pred, int counter) argument
535 vpx_sad16x(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, int counter) argument
582 vpx_sad_avg16x(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, const uint8_t *second_pred, int counter) argument
628 vpx_sad8x(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, int counter) argument
675 vpx_sad_avg8x(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, const uint8_t *second_pred, int counter) argument
720 vpx_sad4x(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, int counter) argument
763 vpx_sad_avg4x(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, const uint8_t *second_pred, int counter) argument
[all...]
/external/curl/tests/unit/
H A Dunit1606.c51 int counter = 1; local
67 now.tv_sec = ++counter;
69 } while(counter < 100);
/external/python/cpython3/Doc/includes/
H A Demail-unpack.py33 counter = 1
46 filename = 'part-%03d%s' % (counter, ext)
47 counter += 1
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/representer/
H A DRepresentIterableTest.java55 private int counter = 0; field in class:RepresentIterableTest.Counter
62 return counter < max;
66 return counter++;
/external/syslinux/com32/modules/
H A Dcpuid.c34 uint32_t leaf, counter; local
38 printf("Usage: %s leaf [counter]\n", argv[0]);
43 counter = (argc > 2) ? strtoul(argv[2], NULL, 0) : 0;
50 cpuid_count(leaf, counter, &eax, &ebx, &ecx, &edx);
/external/libvncserver/utils/
H A Dbdf2c.pl9 $counter=0;
28 @encodings[$glyphindex*5..($glyphindex*5+4)]=($counter,$width,$height,$x,$y);
46 $counter+=(int(($dwidth+7)/8));
54 print "unsigned char " . $fontname . "FontData[$counter]={\n" . $out;
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
H A DYamlParseTest.java33 int counter = 0;
39 counter++;
42 assertEquals(8, counter);
69 int counter = 0;
75 counter++;
78 assertEquals(14, counter);
/external/tensorflow/tensorflow/contrib/input_pipeline/python/ops/
H A Dinput_pipeline_ops.py35 def obtain_next(string_list_tensor, counter):
40 counter: an int64 ref tensor to keep track of which element is returned.
43 An op that produces the element at counter + 1 in the list, round
46 return gen_input_pipeline_ops.obtain_next(string_list_tensor, counter)
88 counter = variable_scope.get_variable(
94 with ops.colocate_with(counter):
109 return obtain_next(string_tensor, counter)
111 return obtain_next(string_tensor, counter)
/external/curl/tests/libtest/
H A Dlib555.c45 int *counter = (int *)clientp; local
47 if(*counter) {
52 (*counter)++; /* bump */
66 int *counter = (int *)clientp; local
70 *counter = 0; /* clear counter to make the read callback restart */
80 int counter = 0; local
96 easy_setopt(curl, CURLOPT_IOCTLDATA, &counter);
98 easy_setopt(curl, CURLOPT_READDATA, &counter);
/external/mockito/src/main/java/org/mockito/internal/exceptions/util/
H A DScenarioPrinter.java21 int counter = 0;
23 sb.append(++counter).append(". ");
/external/skia/gm/
H A Dnonclosedpaths.cpp64 static void SetLocation(SkCanvas* canvas, int counter, int lineNum) { argument
65 SkScalar x = SK_Scalar1 * 100 * (counter % lineNum) + 10 + SK_Scalar1 / 4;
66 SkScalar y = SK_Scalar1 * 100 * (counter / lineNum) + 10 + 3 * SK_Scalar1 / 4;
93 int counter = 0; variable
104 SetLocation(canvas, counter, SkPaint::kJoinCount * numWidths);
116 ++counter;
127 SetLocation(canvas, counter, SkPaint::kJoinCount * numWidths);
134 ++counter;
/external/skqp/gm/
H A Dnonclosedpaths.cpp64 static void SetLocation(SkCanvas* canvas, int counter, int lineNum) { argument
65 SkScalar x = SK_Scalar1 * 100 * (counter % lineNum) + 10 + SK_Scalar1 / 4;
66 SkScalar y = SK_Scalar1 * 100 * (counter / lineNum) + 10 + 3 * SK_Scalar1 / 4;
93 int counter = 0; variable
104 SetLocation(canvas, counter, SkPaint::kJoinCount * numWidths);
116 ++counter;
127 SetLocation(canvas, counter, SkPaint::kJoinCount * numWidths);
134 ++counter;
/external/webrtc/talk/app/webrtc/
H A Dfakemetricsobserver.h45 int counter,
51 int GetEnumCounter(PeerConnectionEnumCounterType type, int counter) const;
59 // The vector contains maps for each counter type. In the map, it's a mapping
60 // from individual counter to its count, such that it's memory efficient when
/external/tensorflow/tensorflow/core/kernels/
H A Dstateless_random_ops.cc69 random::PhiloxRandom::ResultType counter; variable
72 counter[0] = static_cast<uint32>(seed0);
73 counter[1] = static_cast<uint32>(seed0 >> 32);
74 counter[2] = static_cast<uint32>(seed1);
75 counter[3] = static_cast<uint32>(seed1 >> 32);
76 const auto mix = random::PhiloxRandom(counter, key)();
79 counter[0] = counter[1] = 0;
80 counter[2] = mix[2];
81 counter[
[all...]

Completed in 1788 milliseconds

1234567891011>>