HomeSort by: relevance | last modified time | path
    Searched refs:COUNTER (Results 1 - 18 of 18) sorted by relevancy

  /src/usr.bin/make/unit-tests/
counter.mk 1 # $NetBSD: counter.mk,v 1.6 2021/04/04 10:13:09 rillig Exp $
6 # This works since 2020-09-23. Before that, the counter ended up at having
13 COUNTER= # zero
15 NEXT= ${COUNTER::=${COUNTER} a}${COUNTER:[#]}
27 @echo A=${A:Q} B=${B:Q} C=${C:Q} COUNTER=${COUNTER:[#]:Q}
counter-append.mk 1 # $NetBSD: counter-append.mk,v 1.5 2021/04/04 10:13:09 rillig Exp $
6 # This works since 2020-09-23. Before that, the counter ended up at having
13 COUNTER= # zero
15 NEXT= ${COUNTER::+=a}${COUNTER:[#]}
27 @echo A=${A:Q} B=${B:Q} C=${C:Q} COUNTER=${COUNTER:[#]:Q}
  /src/crypto/external/apache2/openssl/dist/test/recipes/30-test_evp_data/
evpkdf_kbkdf_counter.txt 28 Ctrl.mode = mode:COUNTER
41 Ctrl.mode = mode:COUNTER
54 Ctrl.mode = mode:COUNTER
67 Ctrl.mode = mode:COUNTER
85 Ctrl.mode = mode:COUNTER
98 Ctrl.mode = mode:COUNTER
111 Ctrl.mode = mode:COUNTER
124 Ctrl.mode = mode:COUNTER
142 Ctrl.mode = mode:COUNTER
155 Ctrl.mode = mode:COUNTER
    [all...]
  /src/external/bsd/openldap/dist/tests/
run.in 109 COUNTER=1
257 while [ $COUNTER -le $LOOP ]; do
259 echo "Running $COUNTER of $LOOP iterations"
275 echo "Failed after $COUNTER of $LOOP iterations"
279 COUNTER=`expr $COUNTER + 1`
280 if [ $COUNTER -le $LOOP ]; then
  /src/external/gpl3/gcc/dist/gcc/
value-prof.h 39 #define HIST_TYPE_FOR_COUNTER(COUNTER) \
40 ((enum hist_type) ((COUNTER) - GCOV_FIRST_VALUE_COUNTER))
51 gcov_type *counters; /* Pointer to first counter. */
gcov-io.h 158 counter values for instrumented features. The about the whole
281 #define DEF_GCOV_COUNTER(COUNTER, NAME, MERGE_FN) COUNTER,
283 #include "gcov-counter.def"
309 /* Convert a counter index to a tag. */
312 /* Convert a tag to a counter. */
315 /* Check whether a tag is a counter tag. */
gcov-dump.cc 302 printf (error < 0 ? "%s:counter overflow at %lu\n" :
469 #define DEF_GCOV_COUNTER(COUNTER, NAME, MERGE_FN) NAME,
471 #include "gcov-counter.def"
coverage.cc 65 tree ctr_vars[GCOV_COUNTERS]; /* counter variables. */
91 /* Cumulative counter information for whole program. */
92 static unsigned prg_ctr_mask; /* Mask of counter types generated. */
94 /* Counter information for current function. */
96 static GTY(()) tree fn_v_ctrs[GCOV_COUNTERS]; /* counter variables. */
119 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) STR(__gcov_merge ## FN_TYPE),
121 #include "gcov-counter.def"
126 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) NAME,
128 #include "gcov-counter.def"
300 get_coverage_counts (unsigned counter, unsigned cfg_checksum
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
value-prof.h 39 #define HIST_TYPE_FOR_COUNTER(COUNTER) \
40 ((enum hist_type) ((COUNTER) - GCOV_FIRST_VALUE_COUNTER))
51 gcov_type *counters; /* Pointer to first counter. */
gcov-io.h 151 counter values for instrumented features. The about the whole
270 #define DEF_GCOV_COUNTER(COUNTER, NAME, MERGE_FN) COUNTER,
272 #include "gcov-counter.def"
298 /* Convert a counter index to a tag. */
301 /* Convert a tag to a counter. */
304 /* Check whether a tag is a counter tag. */
gcov-dump.cc 289 printf (error < 0 ? "%s:counter overflow at %lu\n" :
434 #define DEF_GCOV_COUNTER(COUNTER, NAME, MERGE_FN) NAME,
436 #include "gcov-counter.def"
coverage.cc 65 tree ctr_vars[GCOV_COUNTERS]; /* counter variables. */
91 /* Cumulative counter information for whole program. */
92 static unsigned prg_ctr_mask; /* Mask of counter types generated. */
94 /* Counter information for current function. */
96 static GTY(()) tree fn_v_ctrs[GCOV_COUNTERS]; /* counter variables. */
119 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) STR(__gcov_merge ## FN_TYPE),
121 #include "gcov-counter.def"
126 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) NAME,
128 #include "gcov-counter.def"
300 get_coverage_counts (unsigned counter, unsigned cfg_checksum
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/chacha/asm/
chacha-riscv64-v-zbb.pl 69 # const unsigned int counter[4]);
71 my ( $OUTPUT, $INPUT, $LEN, $KEY, $COUNTER ) = ( "a0", "a1", "a2", "a3", "a4" );
263 lw $CURRENT_COUNTER, 0($COUNTER)
311 lw $COUNTER1, 4($COUNTER)
313 lw $NONCE0, 8($COUNTER)
315 lw $NONCE1, 12($COUNTER)
427 lw $T0, 4($COUNTER)
430 lw $T1, 8($COUNTER)
433 lw $T2, 12($COUNTER)
  /src/crypto/external/apache2/openssl/dist/providers/implementations/kdfs/
kbkdf.c 13 * section 5.1 ("counter mode") and section 5.2 ("feedback mode") in both HMAC
21 * These versions all assume the counter is used. It would be relatively
53 COUNTER = 0,
217 uint32_t counter, i; local
234 for (counter = 1; written < ko_len; counter++) {
235 i = be32(counter);
340 if (ctx->mode == COUNTER) {
400 && OPENSSL_strncasecmp("counter", p->data, p->data_size) == 0) {
401 ctx->mode = COUNTER;
    [all...]
  /src/crypto/external/bsd/openssl/dist/providers/implementations/kdfs/
kbkdf.c 13 * section 5.1 ("counter mode") and section 5.2 ("feedback mode") in both HMAC
21 * These versions all assume the counter is used. It would be relatively
52 COUNTER = 0,
161 uint32_t counter, i; local
178 for (counter = 1; written < ko_len; counter++) {
179 i = be32(counter);
302 && OPENSSL_strncasecmp("counter", p->data, p->data_size) == 0) {
303 ctx->mode = COUNTER;
  /src/external/gpl3/gcc/dist/libgcc/
libgcov-util.c 85 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) __gcov_merge ## FN_TYPE,
87 #include "gcov-counter.def"
153 counter types. */
247 /* wrap all the counter array. */
366 warning (0, error < 0 ? "%s:counter overflow at %lu" :
465 /* We save the counter value address to this variable. */
468 /* The number of counter values to be read by current merging. */
471 /* The index of counter values being read. */
477 /* Read a counter value from gcov_value_buf array. */
511 /* Convert on disk representation of a TOPN counter to in memory representatio
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/
libgcov-util.c 85 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) __gcov_merge ## FN_TYPE,
87 #include "gcov-counter.def"
153 counter types. */
247 /* wrap all the counter array. */
376 warning (0, error < 0 ? "%s:counter overflow at %lu" :
475 /* We save the counter value address to this variable. */
478 /* The number of counter values to be read by current merging. */
481 /* The index of counter values being read. */
487 /* Read a counter value from gcov_value_buf array. */
521 /* Convert on disk representation of a TOPN counter to in memory representatio
    [all...]
  /src/external/bsd/tcpdump/dist/
print-snmp.c 116 "Counter",
117 #define COUNTER 1
579 case COUNTER:

Completed in 35 milliseconds