HomeSort by relevance Sort by last modified time
    Searched refs:ctr (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /external/lldb/source/Utility/
RefCounter.cpp 14 RefCounter::RefCounter(RefCounter::value_type* ctr):
15 m_counter(ctr)
  /external/openssh/
cipher-aesctr.c 28 * increment counter 'ctr',
30 * (LSB at ctr[len-1], MSB at ctr[0])
33 aesctr_inc(u8 *ctr, u32 len)
39 if (++ctr[i]) /* continue on overflow */
45 ctr[i] += add;
46 /* constant time for: x = ctr[i] ? 1 : 0 */
47 x = ctr[i];
65 memcpy(x->ctr, iv, AES_BLOCK_SIZE);
76 rijndaelEncrypt(x->ek, x->rounds, x->ctr, buf)
    [all...]
cipher-aesctr.h 28 u8 ctr[AES_BLOCK_SIZE]; /* counter */ member in struct:aesctr_ctx
chacha.h 26 void chacha_ivsetup(struct chacha_ctx *x, const u_char *iv, const u_char *ctr)
  /external/valgrind/drd/tests/
threaded-fork.c 19 int ctr; local
42 ctr = 0;
45 ctr++;
46 if (ctr >= 10) {
  /external/valgrind/none/tests/
threaded-fork.c 17 int ctr; local
40 ctr = 0;
43 ctr++;
44 if (ctr >= 10) {
  /external/selinux/libselinux/src/
is_customizable_type.c 16 unsigned int ctr = 0, i; local
28 while (fgets_unlocked(buf, selinux_page_size, fp) && ctr < UINT_MAX) {
29 ctr++;
32 if (ctr) {
35 ctr + 1);
39 && i < ctr) {
  /external/lldb/include/lldb/Utility/
RefCounter.h 30 RefCounter(value_type* ctr);
  /external/valgrind/memcheck/tests/
wrap5.c 18 static int ctr = 0; variable
23 ctr++;
24 if ((ctr % 3) == 1) {
88 printf("allocated %d Lards\n", ctr);
wrap8.c 25 static int ctr = 0; variable
30 ctr++;
31 if ((ctr % 3) == 1) {
95 printf("allocated %d Lards\n", ctr); fflush(stdout);
  /external/jpeg/
jidctred.c 129 int ctr; local
138 for (ctr = DCTSIZE; ctr > 0; inptr++, quantptr++, wsptr++, ctr--) {
140 if (ctr == DCTSIZE-4)
197 for (ctr = 0; ctr < 4; ctr++) {
198 outptr = output_buf[ctr] + output_col;
281 int ctr; local
    [all...]
jfdctflt.c 65 int ctr; local
70 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
120 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
jfdctfst.c 120 int ctr; local
126 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
176 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
jidctflt.c 80 int ctr; local
89 for (ctr = DCTSIZE; ctr > 0; ctr--) {
180 for (ctr = 0; ctr < DCTSIZE; ctr++) {
181 outptr = output_buf[ctr] + output_col;
jfdctint.c 146 int ctr; local
154 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
219 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
  /external/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jidctred.c 130 int ctr; local
139 for (ctr = DCTSIZE; ctr > 0; inptr++, quantptr++, wsptr++, ctr--) {
141 if (ctr == DCTSIZE-4)
198 for (ctr = 0; ctr < 4; ctr++) {
199 outptr = output_buf[ctr] + output_col;
282 int ctr; local
    [all...]
fpdfapi_jfdctfst.c 121 int ctr; local
127 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
177 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
fpdfapi_jfdctint.c 147 int ctr; local
155 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
220 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/
Preconditions.java 144 long ctr = 0; local
148 String.format("%s[%d] must not be null", valueName, ctr));
150 ++ctr;
  /external/boringssl/src/crypto/modes/
gcm.c 496 unsigned int ctr; local
513 ctr = 1;
553 ctr = GETU32(ctx->Yi.c + 12);
555 ctr = ctx->Yi.d[3];
560 ++ctr;
562 PUTU32(ctx->Yi.c + 12, ctr);
564 ctx->Yi.d[3] = ctr;
638 unsigned int n, ctr; local
665 ctr = GETU32(ctx->Yi.c + 12);
667 ctr = ctx->Yi.d[3]
798 unsigned int n, ctr; local
965 unsigned int n, ctr; local
1075 unsigned int n, ctr; local
    [all...]
  /external/wpa_supplicant_8/src/eap_common/
eap_pwd_common.c 45 u16 i, ctr, L; local
49 ctr = 0;
52 ctr++;
53 i = htons(ctr);
58 if (ctr > 1)
96 unsigned char pwe_digest[SHA256_MAC_LEN], *prfbuf = NULL, ctr; local
165 ctr = 0;
167 if (ctr > 30) {
173 ctr++;
187 eap_pwd_h_update(hash, &ctr, sizeof(ctr))
    [all...]
  /external/google-breakpad/src/google_breakpad/common/
minidump_cpu_ppc64.h 105 uint64_t ctr; /* Count */ member in struct:__anon9481
minidump_cpu_ppc.h 132 uint32_t ctr; /* Count */ member in struct:__anon9480
  /external/v8/test/mjsunit/
string-replace.js 123 var ctr = 0; variable
129 return String(ctr++);
131 assertEquals(1, ctr, "replace('x',func) num-match");
133 ctr = 0;
139 return String(ctr++);
141 assertEquals(1, ctr, "replace(/x/,func) num-match");
143 ctr = 0;
147 assertEquals(ctr * 2, i, "replace(/x/g,func(..,i,.))");
149 return String(ctr++);
151 assertEquals(4, ctr, "replace(/x/g,func) num-match")
    [all...]
  /external/markdown/markdown/extensions/
toc.py 80 ctr = 1
81 while "%s_%d" % (id, ctr) in used_ids:
82 ctr += 1
83 id = "%s_%d" % (id, ctr)

Completed in 557 milliseconds

1 2 3 4 5