| /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/bsd/ntp/dist/sntp/ |
| log.c | 9 static int counter = 0; variable 31 counter = 1; //counter++; 39 //counter--; 40 //if(counter <= 0){ 41 if(counter == 1){ 46 counter = 0;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| branch-to-self.c | 22 volatile int counter = 0; variable 27 counter = 5;
|
| 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++)
|
| /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.base/ |
| branch-to-self.c | 22 volatile int counter = 0; variable 27 counter = 5;
|
| 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++)
|
| /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/gpl3/gdb/dist/gdb/testsuite/gdb.threads/ |
| stepi-random-signal.c | 38 unsigned int counter = 1; local 44 while (counter != 0) 45 counter++; /* set break 2 here */
|
| step-over-lands-on-breakpoint.c | 25 volatile unsigned int counter = 1; variable 32 while (counter > 0) 34 counter++;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/ |
| stepi-random-signal.c | 38 unsigned int counter = 1; local 44 while (counter != 0) 45 counter++; /* set break 2 here */
|
| step-over-lands-on-breakpoint.c | 25 volatile unsigned int counter = 1; variable 32 while (counter > 0) 34 counter++;
|
| /src/external/mit/libuv/dist/docs/code/idle-basic/ |
| main.c | 4 int64_t counter = 0; variable 7 counter++; 9 if (counter >= 10e6)
|
| /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/bsd/ntp/dist/libntp/lib/isc/win32/include/isc/ |
| once.h | 32 LONG counter; member in struct:__anon7433
|
| /src/external/bsd/wpa/dist/src/eap_common/ |
| eap_psk_common.c | 38 u8 counter = 1; local 44 hash[aes_block_size - 1] ^= counter; 47 hash[aes_block_size - 1] ^= counter; 48 counter++; 51 hash[aes_block_size - 1] ^= counter; 54 hash[aes_block_size - 1] ^= counter; 55 counter++; 59 hash[aes_block_size - 1] ^= counter; 63 hash[aes_block_size - 1] ^= counter; 64 counter++ [all...] |
| /src/external/mit/libuv/dist/docs/code/uvstop/ |
| main.c | 4 int64_t counter = 0; variable 8 counter++; 10 if (counter >= 5) {
|
| /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| md4.h | 54 uint32_t counter[4]; member in struct:md4
|
| md5.h | 54 uint32_t counter[4]; member in struct:md5
|
| /src/external/bsd/wpa/dist/src/crypto/ |
| aes-ctr.c | 20 * @nonce: Nonce for counter mode (16 bytes) 32 u8 counter[AES_BLOCK_SIZE], buf[AES_BLOCK_SIZE]; local 37 os_memcpy(counter, nonce, AES_BLOCK_SIZE); 40 aes_encrypt(ctx, counter, buf); 49 counter[i]++; 50 if (counter[i]) 62 * @nonce: Nonce for counter mode (16 bytes)
|