Searched refs:count (Results 226 - 250 of 3861) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.mike/
H A Dleak1.C2 int count = 0; variable
9 ++count;
13 ++count;
24 --count;
38 return count != 2;
H A Dp9706.C7 int count, acount; variable
9 void *operator new(size_t sz) { ++count; return malloc (sz); }
10 void operator delete(void *p) throw() { --count; free (p); }
24 count = 0;
35 if (count)
H A Dp8483.C4 int count; variable
8 A() { ++count; }
34 if (count != 15)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/20_util/duration/arithmetic/
H A D2.cc38 VERIFY(d2.count() == 15);
41 VERIFY(d3.count() == 9);
44 VERIFY(d4.count() == 36);
47 VERIFY(d5.count() == 36);
50 VERIFY(d6.count() == 4);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/23_containers/list/cons/
H A D5.h37 int count; local
45 for (i = list0401.rbegin(), count = N - 1;
47 ++i, --count)
48 VERIFY(*i == A[count]);
49 VERIFY(count == -1);
H A D7.h39 std::size_t count; local
50 for (i = list0601.begin(), count = 0;
52 ++i, ++count)
54 VERIFY(count == BIG_LIST_SIZE);
59 for (i = list0601.begin(), count = 0;
61 ++i, ++count)
63 VERIFY(count == SMALL_LIST_SIZE);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dcopy8.C24 int count = 0; variable
29 if (x != ++count)
45 ~A() { count++; if (count != 3 && count != 4) die (-1); }
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.mike/
H A Dleak1.C2 int count = 0; variable
9 ++count;
13 ++count;
24 --count;
38 return count != 2;
H A Dp9706.C7 int count, acount; variable
9 void *operator new(size_t sz) { ++count; return malloc (sz); }
10 void operator delete(void *p) throw() { --count; free (p); }
24 count = 0;
35 if (count)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/23_containers/list/cons/
H A D5.cc39 int count; local
44 for (i = list0401.rbegin(), count = N - 1;
46 ++i, --count)
47 VERIFY(*i == A[count]);
48 VERIFY(count == -1);
H A D7.cc41 std::size_t count; local
49 for (i = list0601.begin(), count = 0;
51 ++i, ++count)
53 VERIFY(count == BIG_LIST_SIZE);
58 for (i = list0601.begin(), count = 0;
60 ++i, ++count)
62 VERIFY(count == SMALL_LIST_SIZE);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.reverse/
H A Dwatch-reverse.c44 int count = -1; variable
152 for (count = 0; count < 4; count++) {
153 ival1 = count;
154 ival3 = count; ival4 = count;
156 ival1 = count; /* Outside loop */
157 ival2 = count;
158 ival3 = count; ival
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/lib/
H A Ducs4-utf8.h28 int count; local
31 count = 1;
33 count = 2;
35 count = 3;
38 count = 4;
40 count = 5;
42 count = 6;
45 count = 4;
50 if (n < count)
53 switch (count) /* not
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/picochip/libgccExtras/
H A Dlshrsi3.c41 USItype __lshrsi3(USIunion value, HItype count) { argument
45 /* Ignore a zero count until we get into the (count < 16)
51 if (count < 16) {
52 /* Shift low and high words by the count. */
53 result.s.low = value.s.low >> count;
54 result.s.high = value.s.high >> count;
56 /* There is now a hole in the upper `count' bits of the low
57 word. Shift the lower `count' bits of the upper word into the
58 low word. This only works when count is
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/obj-c++.dg/
H A Dtemplate-1.mm19 static int count = 0;
25 Templ(): i(55), m([[T alloc] init]) { count++; }
26 ~Templ() { [m free]; count--; }
38 CHECK_IF(count == 0);
41 CHECK_IF(derived.i == 55 && count == 1);
43 CHECK_IF(base.i == 55 && count == 2);
47 CHECK_IF(count == 0);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/tests/system/pkcs11/
H A Dtests.sh33 count=`$PK11LIST | grep robie-ksk | wc -l`
34 if [ $count != 2 ]; then echo "I:failed"; status=1; fi
38 count=`grep RRSIG $zonefile.signed | wc -l`
39 if [ $count != 12 ]; then echo "I:failed"; status=1; fi
57 count=`grep RRSIG dig.out | wc -l`
58 if [ $count != 4 ]; then echo "I:failed"; status=1; fi
67 count=`$PK11LIST | grep robie-zsk | wc -l`
68 if [ $count != 0 ]; then echo "I:failed"; fi
69 status=`expr $status + $count`
/netbsd-6-1-5-RELEASE/external/bsd/cron/dist/
H A Denv.c54 int count, i, save_errno; local
57 for (count = 0; envp[count] != NULL; count++)
59 p = malloc((count+1) * sizeof(*p)); /* 1 for the NULL */
61 for (i = 0; i < count; i++)
70 p[count] = NULL;
77 int count, found; local
81 * count the number of elements, including the null pointer;
85 for (count
[all...]
/netbsd-6-1-5-RELEASE/distrib/utils/libhack/
H A Dmultibyte.c57 size_t count; local
59 for (p = *s, d = pwcs, count = 0;
60 count <= n;
61 count++, d++, p++)
66 return count;
75 size_t count; local
77 for (p = *pwcs, d = s, count = 0;
78 count <= n && *p != 0;
79 count++, d++, p++)
84 return count;
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/readline/
H A Dvi_mode.c175 _rl_vi_stuff_insert (count)
176 int count;
179 while (count--)
188 rl_vi_redo (count, c)
189 int count, c;
205 _rl_vi_stuff_insert (count);
219 rl_vi_undo (count, key)
220 int count, key;
222 return (rl_undo_command (count, key));
227 rl_vi_yank_arg (count, ke
1293 int count = 1, brack, pos, tmp, pre; local
[all...]
/netbsd-6-1-5-RELEASE/sys/compat/common/
H A Drndpseudo_50.c92 int count; local
94 if (rst50->count > RND_MAXSTATCOUNT50)
98 rstbuf.count = rst50->count;
104 for (count = 0; count < rst50->count; count++) {
105 rndsource_to_rndsource50(&rstbuf.source[count],
106 &rst50->source[count]);
118 int count; local
[all...]
/netbsd-6-1-5-RELEASE/external/public-domain/xz/dist/src/liblzma/common/
H A Dindex.h48 index_size_unpadded(lzma_vli count, lzma_vli index_list_size) argument
51 return 1 + lzma_vli_size(count) + index_list_size + 4;
57 index_size(lzma_vli count, lzma_vli index_list_size) argument
59 return vli_ceil4(index_size_unpadded(count, index_list_size));
66 lzma_vli count, lzma_vli index_list_size)
69 + index_size(count, index_list_size)
65 index_stream_size(lzma_vli blocks_size, lzma_vli count, lzma_vli index_list_size) argument
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/readline/examples/
H A Dmanexamp.c64 invert_case_line (count, key)
65 int count, key;
71 if (count < 0)
74 count = -count;
80 end = start + (count * direction);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/ext/malloc_allocator/
H A Ddeallocate_global.cc27 static size_t count; variable
34 if (count != 0)
35 throw std::runtime_error("count isn't zero");
47 count++;
56 count--;
57 if (count == 0)
61 static_cast<unsigned long>(count));
/netbsd-6-1-5-RELEASE/external/bsd/libbind/dist/bsd/
H A Dreadv.c26 int count = 0; local
33 count += bytes;
38 return (count);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/lto/
H A D20100519-1_0.C6 static void fromCountToDirectBytes(const Ordinal count) {} argument
14 ConstValueTypeSerializationBuffer(const Ordinal count) argument
17 SerT::fromCountToDirectBytes(count);

Completed in 309 milliseconds

1234567891011>>