HomeSort by: relevance | last modified time | path
    Searched defs:counter (Results 1 - 25 of 646) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /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_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++;
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.old/dist/gdb/testsuite/gdb.dwarf2/
dw2-inline-small-func.h 16 int counter = 42; variable
20 counter = 0; /* callee: body. */
dw2-inline-small-func.h 16 int counter = 42; variable
20 counter = 0; /* callee: body. */
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/
dw2-inline-small-func.h 16 int counter = 42; variable
20 counter = 0; /* callee: body. */
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;
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.old/dist/gdb/testsuite/gdb.base/
branch-to-self.c 22 volatile int counter = 0; variable
27 counter = 5;
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. */
inline-small-func.h 22 int counter = 42; variable
26 counter = 0; /* callee: body. */
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
branch-to-self.c 22 volatile int counter = 0; variable
27 counter = 5;
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. */
inline-small-func.h 22 int counter = 42; variable
26 counter = 0; /* callee: body. */
  /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 */
  /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);

Completed in 64 milliseconds

1 2 3 4 5 6 7 8 91011>>