| /src/tests/usr.bin/xlint/lint1/ |
| msg_087.c | 8 extern long counter; 13 /* expect+1: warning: static 'counter' hides external declaration with type 'long' [87] */ 14 static int counter; local 15 return counter++;
|
| msg_045.c | 8 struct counter { struct 14 /* expect+4: warning: base type is really 'struct counter' [45] */ 15 /* expect+3: warning: declaration of 'union counter' introduces new type in C90 or later [44] */ 16 /* expect+2: error: 'counter' has incomplete type 'incomplete union counter' [31] */ 17 /* expect+1: warning: union 'counter' never defined [234] */ 18 union counter counter; local 20 counter.value++;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/ |
| dw2-inline-small-func.h | 16 int counter = 42; variable 20 counter = 0; /* callee: body. */
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/ |
| dw2-inline-small-func.h | 16 int counter = 42; variable 20 counter = 0; /* callee: body. */
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| attach-wait-input.c | 32 unsigned int counter = 1; local 37 for (counter = 0; !should_exit && counter < 100; counter++)
|
| watchpoint-hw-attach.c | 31 unsigned int counter = 1; local 36 for (counter = 0; !should_continue && counter < 100; counter++)
|
| branch-to-self.c | 22 volatile int counter = 0; variable 27 counter = 5;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| attach-wait-input.c | 32 unsigned int counter = 1; local 37 for (counter = 0; !should_exit && counter < 100; counter++)
|
| watchpoint-hw-attach.c | 31 unsigned int counter = 1; local 36 for (counter = 0; !should_continue && counter < 100; counter++)
|
| branch-to-self.c | 22 volatile int counter = 0; variable 27 counter = 5;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.opt/ |
| inline-small-func.h | 22 int counter = 42; variable 26 counter = 0; /* callee: body. */
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.opt/ |
| inline-small-func.h | 22 int counter = 42; variable 26 counter = 0; /* callee: body. */
|
| /src/external/bsd/jemalloc/dist/src/ |
| counter.c | 4 #include "jemalloc/internal/counter.h" 7 counter_accum_init(counter_accum_t *counter, uint64_t interval) { 8 if (LOCKEDINT_MTX_INIT(counter->mtx, "counter_accum", 12 locked_init_u64_unsynchronized(&counter->accumbytes, 0); 13 counter->interval = interval; 18 counter_prefork(tsdn_t *tsdn, counter_accum_t *counter) { 19 LOCKEDINT_MTX_PREFORK(tsdn, counter->mtx); 23 counter_postfork_parent(tsdn_t *tsdn, counter_accum_t *counter) { 24 LOCKEDINT_MTX_POSTFORK_PARENT(tsdn, counter->mtx); 28 counter_postfork_child(tsdn_t *tsdn, counter_accum_t *counter) { [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/ |
| array-slices-sub-slices.f90 | 39 integer :: counter local in subroutine:fill_array_1d 41 counter = 1 43 array (j) = counter 44 counter = counter + 1 51 integer :: counter local in subroutine:fill_array_2d 53 counter = 1 56 array (j,i) = counter 57 counter = counter + 65 integer :: counter local in subroutine:fill_array_3d 81 integer :: counter local in subroutine:fill_array_4d [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/ |
| array-slices-sub-slices.f90 | 39 integer :: counter local in subroutine:fill_array_1d 41 counter = 1 43 array (j) = counter 44 counter = counter + 1 51 integer :: counter local in subroutine:fill_array_2d 53 counter = 1 56 array (j,i) = counter 57 counter = counter + 65 integer :: counter local in subroutine:fill_array_3d 81 integer :: counter local in subroutine:fill_array_4d [all...] |
| /src/external/mpl/bind/dist/lib/isc/ |
| counter.c | 1 /* $NetBSD: counter.c,v 1.9 2025/05/21 14:48:04 christos Exp $ */ 22 #include <isc/counter.h> 41 isc_counter_t *counter; local 45 counter = isc_mem_get(mctx, sizeof(*counter)); 47 counter->mctx = NULL; 48 isc_mem_attach(mctx, &counter->mctx); 50 isc_refcount_init(&counter->references, 1); 51 atomic_init(&counter->limit, limit); 52 atomic_init(&counter->used, 0) 111 isc_counter_t *counter; local [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/lit/tests/Inputs/allow-retries/ |
| succeeds-within-limit.py | 3 # RUN: "%python" "%s" "%counter" 10 # The first time the test is run, initialize the counter to 1. 12 with open(counter_file, 'w') as counter: 13 counter.write("1") 16 with open(counter_file, 'r') as counter: 17 num = int(counter.read()) 21 # Otherwise, increment the counter and fail 22 with open(counter_file, 'w') as counter: 23 counter.write(str(num + 1))
|
| /src/external/apache2/llvm/dist/llvm/utils/lit/tests/Inputs/test_retry_attempts/ |
| test.py | 1 # RUN: "%python" "%s" "%counter" 8 # The first time the test is run, initialize the counter to 1. 10 with open(counter_file, 'w') as counter: 11 counter.write("1") 14 with open(counter_file, 'r') as counter: 15 num = int(counter.read()) 19 # Otherwise, increment the counter and fail 20 with open(counter_file, 'w') as counter: 21 counter.write(str(num + 1))
|
| /src/external/mpl/dhcp/bind/dist/lib/isc/ |
| counter.c | 1 /* $NetBSD: counter.c,v 1.1 2024/02/18 20:57:48 christos Exp $ */ 22 #include <isc/counter.h> 41 isc_counter_t *counter; local 45 counter = isc_mem_get(mctx, sizeof(*counter)); 47 counter->mctx = NULL; 48 isc_mem_attach(mctx, &counter->mctx); 50 isc_refcount_init(&counter->references, 1); 51 atomic_init(&counter->limit, limit); 52 atomic_init(&counter->used, 0) 104 isc_counter_t *counter; local [all...] |
| /src/external/bsd/jemalloc/dist/include/jemalloc/internal/ |
| counter.h | 13 counter_accum(tsdn_t *tsdn, counter_accum_t *counter, uint64_t bytes) { 14 uint64_t interval = counter->interval; 16 LOCKEDINT_MTX_LOCK(tsdn, counter->mtx); 19 * enough), extreme overflow can cause counter trigger coalescing. 23 bool overflow = locked_inc_mod_u64(tsdn, LOCKEDINT_MTX(counter->mtx), 24 &counter->accumbytes, bytes, interval); 25 LOCKEDINT_MTX_UNLOCK(tsdn, counter->mtx); 29 bool counter_accum_init(counter_accum_t *counter, uint64_t interval); 30 void counter_prefork(tsdn_t *tsdn, counter_accum_t *counter); 31 void counter_postfork_parent(tsdn_t *tsdn, counter_accum_t *counter); [all...] |
| /src/external/bsd/jemalloc/include/jemalloc/internal/ |
| counter.h | 13 counter_accum(tsdn_t *tsdn, counter_accum_t *counter, uint64_t bytes) { 14 uint64_t interval = counter->interval; 16 LOCKEDINT_MTX_LOCK(tsdn, counter->mtx); 19 * enough), extreme overflow can cause counter trigger coalescing. 23 bool overflow = locked_inc_mod_u64(tsdn, LOCKEDINT_MTX(counter->mtx), 24 &counter->accumbytes, bytes, interval); 25 LOCKEDINT_MTX_UNLOCK(tsdn, counter->mtx); 29 bool counter_accum_init(counter_accum_t *counter, uint64_t interval); 30 void counter_prefork(tsdn_t *tsdn, counter_accum_t *counter); 31 void counter_postfork_parent(tsdn_t *tsdn, counter_accum_t *counter); [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/chacha/ |
| chacha_ppc.c | 19 const unsigned int counter[4]); 22 const unsigned int counter[4]); 25 const unsigned int counter[4]); 28 const unsigned int counter[4]); 31 const unsigned int counter[4]) 35 ? ChaCha20_ctr32_vsx_p10(out, inp, len, key, counter) 39 ? ChaCha20_ctr32_vsx(out, inp, len, key, counter) 41 ? ChaCha20_ctr32_vmx(out, inp, len, key, counter) 42 : ChaCha20_ctr32_int(out, inp, len, key, counter);
|
| /src/external/mpl/bind/dist/tests/isc/ |
| counter_test.c | 27 #include <isc/counter.h> 36 isc_counter_t *counter = NULL; local 41 result = isc_counter_create(mctx, 0, &counter); 45 result = isc_counter_increment(counter); 49 assert_int_equal(isc_counter_used(counter), 10); 51 isc_counter_setlimit(counter, 15); 53 result = isc_counter_increment(counter); 59 assert_int_equal(isc_counter_used(counter), 15); 61 isc_counter_detach(&counter);
|
| /src/external/lgpl3/mpc/dist/tests/ |
| mpfr_flags.c | 25 set_mpfr_flags (int counter) 27 if (counter & 1) 31 if (counter & 2) 37 if (counter & 4) 42 if (counter & 8) 46 if (counter & 16) 50 if (counter & 32) 61 check_mpfr_flags (int counter) 65 old = (counter & 1) != 0; 73 old = (counter & 2) != 0 [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| statistics.cc | 34 /* Statistics entry. A integer counter associated to a string ID 55 /* Hash a statistic counter by its string ID. */ 136 /* Helper for statistics_fini_pass. Print the counter difference 143 statistics_counter *counter = *slot; local 144 unsigned HOST_WIDE_INT count = counter->count - counter->prev_dumped_count; 147 if (counter->histogram_p) 149 counter->id, counter->val, count); 152 counter->id, count) 164 statistics_counter *counter = *slot; local 195 statistics_counter *counter = *slot; local 236 statistics_counter *counter = *slot; local 308 statistics_counter **counter; local 332 statistics_counter *counter; local 367 statistics_counter *counter; local [all...] |