HomeSort by relevance Sort by last modified time
    Searched refs:ctr (Results 51 - 75 of 106) sorted by null

1 23 4 5

  /external/qemu/hw/
smc91c111.c 27 uint16_t ctr; member in struct:__anon13797
65 qemu_put_be16(f, s->ctr);
101 s->ctr = qemu_get_be16(f);
282 if (s->ctr & CTR_AUTO_RELEASE)
314 s->ctr = 0x1210;
383 SET_LOW(ctr, value);
386 SET_HIGH(ctr, value);
560 return s->ctr & 0xff;
562 return s->ctr >> 8;
  /external/dropbear/libtomcrypt/
Android.mk 60 src/modes/ctr/ctr_decrypt.c src/modes/ctr/ctr_done.c src/modes/ctr/ctr_encrypt.c \
61 src/modes/ctr/ctr_getiv.c src/modes/ctr/ctr_setiv.c src/modes/ctr/ctr_start.c src/modes/ctr/ctr_test.c \
  /external/iptables/iptables/
iptables-xml.c 63 parse_counters(char *string, struct ipt_counters *ctr)
68 pcnt = &ctr->pcnt;
69 bcnt = &ctr->bcnt;
240 openChain(char *chain, char *policy, struct ipt_counters *ctr, char close)
251 xmlAttrI("packet-count", (unsigned long long) ctr->pcnt);
252 xmlAttrI("byte-count", (unsigned long long) ctr->bcnt);
294 saveChain(char *chain, char *policy, struct ipt_counters *ctr)
304 chains[nextChain].count = *ctr;
ip6tables-restore.c 79 static int parse_counters(char *string, struct ip6t_counters *ctr)
85 ctr->pcnt = pcnt;
86 ctr->bcnt = bcnt;
iptables-restore.c 79 static int parse_counters(char *string, struct ipt_counters *ctr)
85 ctr->pcnt = pcnt;
86 ctr->bcnt = bcnt;
  /external/valgrind/main/none/tests/amd64/
redundantRexW.c 79 int ctr, i, j; local
80 ctr = 0;
83 regs->reg[i].b[j] = 0x51 + (ctr++ % 7);
87 mem->dqw[i].b[j] = 0x52 + (ctr++ % 13);
  /external/wpa_supplicant_8/src/crypto/
Makefile 20 aes-ctr.o \
  /external/jpeg/
jidctintelsse.c 107 int ctr; local
323 for(ctr = 0; ctr < DCTSIZE; ctr++)
325 outptrTemp = output_buf[ctr] + output_col;
jdhuff.c 156 int lookbits, ctr; local
246 for (ctr = 1 << (HUFF_LOOKAHEAD-l); ctr > 0; ctr--) {
  /external/qemu/distrib/jpeg-6b/
jidctintelsse.c 107 int ctr; local
323 for(ctr = 0; ctr < DCTSIZE; ctr++)
325 outptrTemp = output_buf[ctr] + output_col;
jdhuff.c 156 int lookbits, ctr; local
246 for (ctr = 1 << (HUFF_LOOKAHEAD-l); ctr > 0; ctr--) {
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_cipher.h 252 /** A block cipher CTR structure */
260 /** The mode (endianess) of the CTR, 0==little, 1==big */
263 unsigned char ctr[MAXBLOCKSIZE], member in struct:__anon7168
408 /** Accelerated CTR encryption
783 symmetric_CTR *ctr);
784 int ctr_encrypt(const unsigned char *pt, unsigned char *ct, unsigned long len, symmetric_CTR *ctr);
785 int ctr_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_CTR *ctr);
786 int ctr_getiv(unsigned char *IV, unsigned long *len, symmetric_CTR *ctr);
787 int ctr_setiv(const unsigned char *IV, unsigned long len, symmetric_CTR *ctr);
788 int ctr_done(symmetric_CTR *ctr);
    [all...]
tomcrypt_prng.h 6 symmetric_CTR ctr; member in struct:yarrow_prng
25 IV[16]; /* IV for CTR mode */
  /external/dropbear/libtomcrypt/src/prngs/
yarrow.c 201 /* setup CTR mode using the "pool" as the key */
213 &prng->yarrow.ctr)) != CRYPT_OK) {
239 if (ctr_encrypt(out, out, outlen, &prng->yarrow.ctr) != CRYPT_OK) {
262 err = ctr_done(&prng->yarrow.ctr);
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
Stripifier.java 345 int ctr = 0; local
349 ctr++;
352 ctr++;
355 ctr++;
356 if (ctr > bestCtr) {
357 bestCtr = ctr;
1141 int ctr = 0; local
1168 int ctr = 0; local
    [all...]
  /external/dropbear/libtomcrypt/src/encauth/eax/
eax_init.c 110 /* setup the CTR mode */
111 if ((err = ctr_start(cipher, eax->N, key, keylen, 0, CTR_COUNTER_BIG_ENDIAN, &eax->ctr)) != CRYPT_OK) {
  /external/dropbear/
progressmeter.c 239 start_progress_meter(char *f, off_t filesize, off_t *ctr)
245 counter = ctr;
  /external/openssh/
progressmeter.c 250 start_progress_meter(char *f, off_t filesize, off_t *ctr)
256 counter = ctr;
Android.mk 11 cipher-bf1.c cipher-ctr.c cipher-3des1.c cleanup.c \
  /external/oprofile/module/
oprofile.c 109 fill_op_entry(struct op_sample * ops, long eip, pid_t pid, pid_t tgid, int ctr)
114 ops->counter = ctr;
117 void op_do_profile(uint cpu, long eip, long irq_enabled, int ctr)
126 fill_op_entry(samples, eip, pid, tgid, ctr);
608 * #ctr/
616 * #ctr is in [0-1] for PPro core, [0-3] for Athlon core