/external/openssl/crypto/ |
mem_clr.c | 67 size_t loop = len, ctr = cleanse_ctr; local 70 *(p++) = (unsigned char)ctr; 71 ctr += (17 + ((size_t)p & 0xF)); 73 p=memchr(ptr, (unsigned char)ctr, len); 75 ctr += (63 + (size_t)p); 76 cleanse_ctr = (unsigned char)ctr;
|
/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/valgrind/main/none/tests/ |
threaded-fork.c | 17 int ctr; local 40 ctr = 0; 43 ctr++; 44 if (ctr >= 10) {
|
/external/dropbear/libtomcrypt/src/encauth/ccm/ |
ccm_memory.c | 48 unsigned char PAD[16], ctr[16], CTRPAD[16], b; local 211 /* setup the ctr counter */ 215 ctr[x++] = (unsigned char)L-1; 219 ctr[x++] = nonce[y]; 223 ctr[x++] = 0; 236 /* increment the ctr? */ 238 ctr[z] = (ctr[z] + 1) & 255; 239 if (ctr[z]) break; 241 if ((err = cipher_descriptor[cipher].ecb_encrypt(ctr, CTRPAD, skey)) != CRYPT_OK) [all...] |
/external/valgrind/main/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/valgrind/main/helgrind/tests/ |
tc08_hbl2.c | 99 int ctr = 0; local 110 ctr++; 111 if (ctr == 2000000) sleep(1);
|
/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/jpeg/ |
jfdctflt.c | 65 int ctr; local 70 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) { 120 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;
|
jfdctfst.c | 120 int ctr; local 126 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) { 176 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
|
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;
|
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...] |
/external/bluetooth/hcidump/parser/ |
rfcomm.c | 56 uint8_t ctr = head->control; local 61 pf = GET_PF(ctr); 62 ctr_type = CLR_PF(ctr);
|
capi.c | 275 uint8_t ctr, plci; local 278 ctr = val & 0xff; 283 printf("Controller: %d %s\n", ctr & 0x7f, ctr & 0x80 ? "Ext." : "Int."); 488 uint32_t ctr, value, major, minor; local 525 ctr = CAPI_U32(frm); 527 printf("Controller: %d\n", ctr); 554 ctr = CAPI_U32(frm); 556 printf("Controller: %d\n", ctr); 565 ctr = CAPI_U32(frm) 751 uint32_t ctr, class, func; local [all...] |
/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/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/eap_common/ |
eap_pwd_common.c | 51 u16 i, ctr, L; local 57 ctr = 0; 60 ctr++; i = htons(ctr); 62 if (ctr > 1) 95 unsigned char pwe_digest[SHA256_DIGEST_LENGTH], *prfbuf = NULL, ctr; local 161 ctr = 0; 163 if (ctr > 10) { 169 ctr++; 181 H_Update(&ctx, &ctr, sizeof(ctr)) [all...] |
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_mac.h | 102 #error EAX_MODE requires OMAC and CTR 107 symmetric_CTR ctr; member in struct:__anon5284
|
tomcrypt_prng.h | 6 symmetric_CTR ctr; member in struct:yarrow_prng 25 IV[16]; /* IV for CTR mode */
|
/external/oprofile/module/ia64/ |
op_pmu.c | 57 int ctr; local 59 for (ctr = 0 ; ctr < op_nr_counters ; ++ctr) { 60 if (pmd_overflowed(pmc0, ctr)) { 61 op_do_profile(cpu, regs->cr_iip, 1, ctr); 62 set_pmd_neg(oprof_data[cpu].ctr_count[ctr], ctr); 191 if (sysctl.ctr[ii].enabled) { 194 set_pmd_neg(sysctl.ctr[ii].count, ii) [all...] |
/external/valgrind/main/coregrind/ |
m_execontext.c | 338 static UInt ctr = 0; local 374 if (0 == ((ctr++) & 7)) {
|