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

12 3 4 5

  /external/oprofile/module/x86/
op_model_ppro.c 58 /* avoid a false detection of ctr overflows in NMI handler */
64 if (sysctl.ctr[i].enabled) {
66 CTR_WRITE(sysctl.ctr[i].count, msrs, i);
71 CTRL_SET_USR(low, sysctl.ctr[i].user);
72 CTRL_SET_KERN(low, sysctl.ctr[i].kernel);
73 CTRL_SET_UM(low, sysctl.ctr[i].unit_mask);
74 CTRL_SET_EVENT(low, sysctl.ctr[i].event);
op_nmi.c 123 if (sysctl.ctr[i].enabled)
124 data->ctr_count[i] = sysctl.ctr[i].count;
150 if (!sysctl.ctr[i].enabled)
155 if (!sysctl.ctr[i].user && !sysctl.ctr[i].kernel) {
161 if (check_range(sysctl.ctr[i].count, 1, OP_MAX_PERF_COUNT,
162 "ctr count value %d not in range (%d %ld)\n"))
328 tab[0] = ((ctl_table) { 1, "enabled", &sysctl_parms.ctr[i].enabled, sizeof(int), 0644, NULL, lproc_dointvec, NULL, });
329 tab[1] = ((ctl_table) { 1, "event", &sysctl_parms.ctr[i].event, sizeof(int), 0644, NULL, lproc_dointvec, NULL, });
330 tab[2] = ((ctl_table) { 1, "count", &sysctl_parms.ctr[i].count, sizeof(int), 0644, NULL, lproc_dointvec, NULL, })
    [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)
95 unsigned char pwe_digest[SHA256_MAC_LEN], *prfbuf = NULL, ctr; local
162 ctr = 0;
164 if (ctr > 30) {
170 ctr++;
184 eap_pwd_h_update(hash, &ctr, sizeof(ctr))
    [all...]
  /external/valgrind/main/memcheck/tests/
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/
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--) {
jidctfst.c 180 int ctr; local
190 for (ctr = DCTSIZE; ctr > 0; ctr--) {
282 for (ctr = 0; ctr < DCTSIZE; ctr++) {
283 outptr = output_buf[ctr] + output_col;
jidctint.c 160 int ctr; local
171 for (ctr = DCTSIZE; ctr > 0; ctr--) {
277 for (ctr = 0; ctr < DCTSIZE; ctr++) {
278 outptr = output_buf[ctr] + output_col;
  /external/qemu/distrib/jpeg-6b/
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--) {
jidctfst.c 180 int ctr; local
190 for (ctr = DCTSIZE; ctr > 0; ctr--) {
282 for (ctr = 0; ctr < DCTSIZE; ctr++) {
283 outptr = output_buf[ctr] + output_col;
jidctint.c 160 int ctr; local
171 for (ctr = DCTSIZE; ctr > 0; ctr--) {
277 for (ctr = 0; ctr < DCTSIZE; ctr++) {
278 outptr = output_buf[ctr] + output_col;
  /external/dropbear/libtomcrypt/demos/
encrypt.c 101 symmetric_CTR ctr; local
173 if ((errno = ctr_start(cipher_idx,IV,key,ks,0,CTR_COUNTER_LITTLE_ENDIAN,&ctr)) != CRYPT_OK) {
182 if ((errno = ctr_decrypt(inbuf,plaintext,y,&ctr)) != CRYPT_OK) {
215 if ((errno = ctr_start(cipher_idx,IV,key,ks,0,CTR_COUNTER_LITTLE_ENDIAN,&ctr)) != CRYPT_OK) {
223 if ((errno = ctr_encrypt(inbuf,ciphertext,y,&ctr)) != CRYPT_OK) {
  /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...]
object-create.js 52 var ctr = 0; variable
59 var protoFoo = { foo: function() { ctr++; }};
71 assertEquals(1, ctr);
75 assertEquals(2, ctr);
80 assertEquals(2, ctr);
86 assertEquals(2, ctr);
97 assertEquals(2, ctr);
103 assertEquals(2, ctr);
116 assertEquals(2, ctr);
  /external/dropbear/libtomcrypt/src/modes/ctr/
ctr_test.c 15 CTR implementation, Tests again RFC 3686, Tom St Denis
53 symmetric_CTR ctr;
63 if ((err = ctr_start(idx, tests[x].IV, tests[x].key, tests[x].keylen, 0, CTR_COUNTER_BIG_ENDIAN|LTC_CTR_RFC3686, &ctr)) != CRYPT_OK) {
66 if ((err = ctr_encrypt(tests[x].pt, buf, tests[x].msglen, &ctr)) != CRYPT_OK) {
69 ctr_done(&ctr);
80 /* $Source: /cvs/libtom/libtomcrypt/src/modes/ctr/ctr_test.c,v $ */
  /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)
  /external/oprofile/module/
oprofile.h 88 struct oprof_counter ctr[OP_MAX_COUNTERS]; member in struct:oprof_sysctl
144 void op_do_profile(uint cpu, long eip, long irq_enabled, int ctr);
  /external/openssh/
cipher-ctr.c 1 /* $OpenBSD: cipher-ctr.c,v 1.11 2010/10/01 23:05:32 djm Exp $ */
46 * increment counter 'ctr',
48 * (LSB at ctr[len-1], MSB at ctr[0])
51 ssh_ctr_inc(u_char *ctr, size_t len)
56 if (++ctr[i]) /* continue on overflow */
  /external/openssl/crypto/evp/
e_aes.c 69 ctr128_f ctr; member in union:__anon12602::__anon12603
84 ctr128_f ctr; member in struct:__anon12604
251 dat->stream.ctr = (ctr128_f)aesni_ctr32_encrypt_blocks;
316 gctx->ctr = (ctr128_f)aesni_ctr32_encrypt_blocks;
494 BLOCK_CIPHER_generic(nid,keylen,1,16,ctr,ctr,CTR,flags)
538 dat->stream.ctr = (ctr128_f)bsaes_ctr32_encrypt_blocks;
561 dat->stream.ctr = (ctr128_f)AES_ctr32_encrypt;
663 if (dat->stream.ctr)
    [all...]
  /external/openssl/crypto/modes/
gcm128.c 96 * [which is nothing but trivial in CTR mode]. In "Shoup's" case it's
759 unsigned int ctr; local
776 ctr=1;
813 ctr = GETU32(ctx->Yi.c+12);
815 ctr = ctx->Yi.d[3];
819 ++ctr;
821 PUTU32(ctx->Yi.c+12,ctr);
823 ctx->Yi.d[3] = ctr;
888 unsigned int n, ctr; local
916 ctr = GETU32(ctx->Yi.c+12)
1038 unsigned int n, ctr; local
1191 unsigned int n, ctr; local
1290 unsigned int n, ctr; local
    [all...]
  /external/dropbear/libtomcrypt/src/encauth/eax/
eax_done.c 65 /* terminate the CTR chain */
66 if ((err = ctr_done(&eax->ctr)) != CRYPT_OK) {
  /external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
DOMOutputCapsule.java 698 int ctr = 0; local
700 ctr++;
704 if (ctr != value.limit())
707 + ctr + " values written when should have written "
728 int ctr = 0; local
730 ctr++;
734 if (ctr != value.limit())
737 + ctr + " values written when should have written "
754 int ctr = 0; local
756 ctr++
784 int ctr = 0; local
    [all...]
  /external/oprofile/libop/
op_events.h 92 * @param ctr counter number
103 int op_check_events(int ctr, u32 event, u32 um, op_cpu cpu_type);
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
AudioTrackView.java 305 final int ctr = getHeight() / 2; local
320 canvas.drawLine(i, ctr - value, i, ctr + 1 + value, mLinePaint);
335 canvas.drawLine(i, ctr - value, i, ctr + 1 + value, mLinePaint);

Completed in 2228 milliseconds

12 3 4 5