Searched refs:counter (Results 1 - 25 of 235) sorted by last modified time

12345678910

/freebsd-10.0-release/include/arpa/
H A Dnameser.h229 int counter; member in struct:ns_tcp_tsig_state
/freebsd-10.0-release/include/rpcsvc/
H A Dspray.x58 unsigned int counter;
70 * Just throw away the data and increment the counter
78 * Get the value of the counter and elapsed time since
85 * Clear the counter and reset the elapsed time
/freebsd-10.0-release/usr.bin/netstat/
H A Dnetisr.c334 u_int counter, cpuid, proto, wsid; local
358 counter = 0;
392 snwp = &work_array[counter];
404 counter++;
407 work_array_len = counter;
/freebsd-10.0-release/usr.bin/locate/locate/
H A Dfastfind.c314 counter++;
316 counter++;
317 if (f_limit >= counter)
320 errx(0, "[show only %d lines]", counter - 1);
H A Dlocate.c114 u_int counter; /* counter for matches [-c] */ variable
223 print_matches(counter);
H A Dutil.c140 print_matches(counter)
141 u_int counter;
143 (void)printf("%d\n", counter);
/freebsd-10.0-release/usr.bin/units/
H A Dunits.c241 int counter = 1; local
249 counter++;
251 if (counter > 1)
252 printf("%s%d", powerstring, counter);
255 counter = 1;
258 if (counter > 1)
259 printf("%s%d", powerstring, counter);
260 counter = 1;
265 counter++;
267 if (counter >
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/evp/
H A De_aes.c686 /* increment counter (64-bit int) by 1 */
687 static void ctr64_inc(unsigned char *counter) { argument
693 c = counter[n];
695 counter[n] = c;
/freebsd-10.0-release/crypto/openssl/crypto/dh/
H A Ddh.h149 BIGNUM *counter; member in struct:dh_st
H A Ddh_lib.c169 ret->counter = NULL;
218 if (r->counter != NULL) BN_clear_free(r->counter);
/freebsd-10.0-release/crypto/openssl/crypto/dsa/
H A Ddsa_gen.c145 int counter=0; local
254 counter=0;
261 if ((counter != 0) && !BN_GENCB_call(cb, 0, counter))
312 counter++;
316 if (counter >= 4096) break;
358 if (counter_ret != NULL) *counter_ret=counter;
H A Ddsagen.c99 int counter,h; local
106 dsa=DSA_generate_parameters(1024,seed,20,&counter,&h,cb,bio_err);
H A Ddsatest.c141 int counter,ret=0,i,j; local
161 seed, 20, &counter, &h, &cb))
170 BIO_printf(bio_err,"\ncounter=%d h=%ld\n",counter,h);
173 if (counter != 105)
175 BIO_printf(bio_err,"counter should be 105\n");
/freebsd-10.0-release/crypto/openssl/crypto/modes/
H A Dccm128.c154 /* counter part of nonce may not be larger than L*8 bits,
155 * L is not larger than 8, therefore 64-bit counter... */
156 static void ctr64_inc(unsigned char *counter) { argument
160 counter += 8;
163 c = counter[n];
165 counter[n] = c;
311 static void ctr64_add (unsigned char *counter,size_t inc) argument
314 counter += 8;
317 val += counter[n] + (inc&0xff);
318 counter[
[all...]
H A Dctr128.c62 /* NOTE: the IV/counter CTR mode is big-endian. The code itself
65 /* increment counter (128-bit int) by 1 */
66 static void ctr128_inc(unsigned char *counter) { argument
72 c = counter[n];
74 counter[n] = c;
80 static void ctr128_inc_aligned(unsigned char *counter) { argument
85 ctr128_inc(counter);
89 data = (size_t *)counter;
101 /* The input encrypted as though 128bit counter mode is being
104 * encrypted counter i
177 ctr96_inc(unsigned char *counter) argument
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/rand/
H A Drand_lib.c222 * current PID, a time value and a counter.
229 static unsigned long counter; local
230 FIPS_get_timevec(buf, &counter);
/freebsd-10.0-release/crypto/heimdal/
H A Dltmain.sh9129 counter=1
9140 newobj=lt$counter-$objbase
9141 func_arith $counter + 1
9142 counter=$func_arith_result
/freebsd-10.0-release/crypto/openssl/crypto/bn/asm/
H A Dppc-mont.pl149 addi $num,$num,-2 ; adjust $num for counter register
H A Dppc64-mont.pl270 srwi $j,$num,`3+1` ; counter register, num/2
948 addi $j,$j,1 ; restore counter
997 addi $j,$j,1 ; restore counter
/freebsd-10.0-release/crypto/openssl/crypto/bn/
H A Dbn_blind.c129 int counter; member in struct:bn_blinding_st
163 /* Set the counter to the special value -1
166 ret->counter = -1;
196 if (b->counter == -1)
197 b->counter = 0;
199 if (++b->counter == BN_BLINDING_COUNTER && b->e != NULL &&
214 if (b->counter == BN_BLINDING_COUNTER)
215 b->counter = 0;
236 if (b->counter == -1)
238 b->counter
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/krb5/
H A Dcrypto-pk.c51 unsigned char counter; local
76 counter = 0;
81 EVP_DigestUpdate(m, &counter, 1);
96 counter++;
214 uint32_t counter; local
272 counter = 1;
277 _krb5_put_int(cdata, counter, 4);
289 counter++;
/freebsd-10.0-release/crypto/heimdal/lib/kadm5/
H A Dpassword_quality.c96 int counter = 0, req_classes; local
116 counter++;
120 if (counter < req_classes) {
/freebsd-10.0-release/crypto/heimdal/lib/gssapi/
H A Dtest_cred.c85 acquire_release_loop(gss_name_t name, int counter, gss_cred_usage_t usage) argument
91 for (i = 0; i < counter; i++) {
/freebsd-10.0-release/crypto/heimdal/lib/hx509/
H A Dhxtool.c692 int counter; member in struct:print_s
701 printf("cert: %d\n", s->counter++);
714 s.counter = 0;
/freebsd-10.0-release/crypto/heimdal/lib/ipc/
H A Dcommon.c98 long counter; member in struct:heim_isemaphore
116 s->counter = value;
137 /* if counter hits below zero, we get to wait */
138 if (--s->counter < 0) {
171 wakeup = (++s->counter == 0) ;
188 if (s->counter != 0)

Completed in 195 milliseconds

12345678910