Searched refs:count (Results 251 - 275 of 3861) sorted by relevance

<<11121314151617181920>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/cpp/
H A Dvararg1.c4 /* count() used to give 1 owing to a buggy test for varargs. */
5 #define count(y...) count1 ( , ##y) macro
8 #if count() != 0 || count(A) != 1
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libgomp/config/linux/
H A Dwait.h49 unsigned long long i, count = gomp_spin_count_var; local
52 count = gomp_throttled_spin_count_var;
53 for (i = 0; i < count; i++)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp8483.C4 int count; variable
8 A() { ++count; }
34 if (count != 15)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/cpp/
H A Dvararg1.c4 /* count() used to give 1 owing to a buggy test for varargs. */
5 #define count(y...) count1 ( , ##y) macro
8 #if count() != 0 || count(A) != 1
/netbsd-6-1-5-RELEASE/sys/arch/ews4800mips/stand/common/
H A Dfloppy_2d.c37 int *count)
60 if (count)
61 *count = (26 - sector) / 2;
36 blk_to_2d_position(uint32_t logical_block_number, uint32_t *position, int *count) argument
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
H A Dmi-syn-frame.c46 int count = in; local
47 while (count < 100)
48 count++;
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpz/
H A Dhamdist.c29 mp_bitcnt_t count; local
47 count = 0;
49 count = mpn_hamdist (up, vp, vsize);
53 count += mpn_popcount (up + vsize, usize);
55 return count;
98 popc_limb (count, (ulimb ^ vlimb) & GMP_NUMB_MASK);
116 count += step * GMP_NUMB_BITS;
120 count -= mpn_popcount (up, step);
134 count += twoscount;
142 count
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/sup/source/
H A Dscmio.c104 * |msg type| |count|data| |count|data| ... |ENDCOUNT|
130 * Added prereadcount() to return the message count size after
140 * to "count" to avoid conflict with 4.3BSD macro.
183 #define XFERSIZE(count) ((count > FILEXFER) ? FILEXFER : count)
216 writedata(size_t count, void *data) argument
222 if (gblbufptr->b_cnt + count <= FILEXFER) {
223 memcpy(gblbufptr->b_ptr, data, count);
265 writeblock(size_t count, void *data) argument
295 size_t count; local
426 readdata(size_t count, void *vdata, bool push) argument
490 readcount(int *count) argument
502 prereadcount(int *count) argument
602 int count; local
649 int count; local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/
H A Dmutexblock.c30 isc_mutexblock_init(isc_mutex_t *block, unsigned int count) { argument
34 for (i = 0; i < count; i++) {
49 isc_mutexblock_destroy(isc_mutex_t *block, unsigned int count) { argument
53 for (i = 0; i < count; i++) {
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/
H A Dmutexblock.c30 isc_mutexblock_init(isc_mutex_t *block, unsigned int count) { argument
34 for (i = 0; i < count; i++) {
50 isc_mutexblock_destroy(isc_mutex_t *block, unsigned int count) { argument
54 for (i = 0; i < count; i++) {
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/servers/slapd/back-perl/
H A Ddelete.c28 int count; local
45 count = call_method("delete", G_SCALAR);
47 count = perl_call_method("delete", G_SCALAR);
52 if (count != 1) {
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gprof/
H A Dbbconv.pl31 # Header lines contain a count of how many data lines follow before
32 # the next header line. $blockcount is set to the count that
50 $count = $1;
53 print pack("II",$addr,$count);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/ld/testsuite/ld-mips-elf/
H A Dmulti-got-no-shared-1.s1 .macro one_sym count
2 .globl sym_1_\count
3 sym_1_\count:
4 la $2, sym_1_\count
H A Dmulti-got-no-shared-2.s1 .macro one_sym count
2 .globl sym_2_\count
3 sym_2_\count:
4 la $2, sym_2_\count
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/picochip/libgccExtras/
H A Dashrsi3.c41 USItype __ashrsi3(USIunion value, HItype count) { argument
46 /* Ignore a zero count until we get into the (count < 16)
51 /* if (count == 0) return value.l; */
53 if (count < 16) {
54 /* Shift low and high words by the count. The high word must use
60 /* Shift low and high parts by the count. The upper word now has
62 result.s.low = value.s.low >> count;
63 result.s.high = value.s.high >> count;
65 if (count !
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/gcov/
H A Dgcov-5.C11 int count; member in class:A
13 A(int c) { count = c; }
16 return (count == 0) ? true : (count-- != 0);
25 a->run(); /* count(#####) */
26 } /* count(1) */
33 a->run(); /* count(#####) */
35 } /* count(1) */
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/init/
H A Darray16.C18 static int count; member in struct:elt
28 int elt::count; member in class:elt
35 if (count >= 0)
39 if (count == 100)
43 count++;
50 if (count >= 0)
53 count--;
96 if (elt::count)
105 elt::count = -1; member in class:elt
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.other/
H A Dinit14.C6 int count; member in struct:__anon5113
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A Dpr24883.c5 orec_str_list(int count) { argument
10 for (i = 0; i < count; i++) {
11 for (j = i + 1; j < count; j++) {
13 if ((count >= 16 && cj < ci) || (cj == ci && lj > li)) {
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/vect/
H A DO3-vect-pr32243.c9 int count, const int x[], const int y[],
15 int count, const int x[], const int y[],
21 for (i = 0; i < count; i++)
24 dsrb->PutValues (ctx, dsrb, count, x, y, temp, mask);
14 put_mono_values_s8(GLcontext * ctx, struct gl_renderbuffer *s8rb, int count, const int x[], const int y[], const void *value, const char *mask) argument
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libgomp/testsuite/libgomp.c++/
H A Dctor-6.C8 static int count; member in struct:B
14 int B::count; member in class:B
22 count++;
47 assert (B::count == nthreads-1);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/20_util/duration/arithmetic/
H A Ddr934-2.cc34 VERIFY( d3.count() == 2 );
39 VERIFY( d5.count() == 3 );
42 VERIFY( d6.count() == 5 );
46 VERIFY( d8.count() == 6 );
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/20_util/shared_ptr/cons/
H A Dunique_ptr_deleter.cc28 void operator()(A* p) const { delete p; ++count; }
29 static int count; member in struct:D
32 int D::count = 0; member in class:D
49 VERIFY( D::count == 1 );
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/23_containers/bitset/count/
H A D6124.cc31 bs.count();
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/23_containers/list/cons/
H A D6.h39 std::size_t count; local
49 for (i = list0501.begin(), count = 0;
51 ++i, ++count)
52 VERIFY(*i == A[count]);
53 VERIFY(count == N);
58 for (i = list0501.begin(), count = 0;
60 ++i, ++count)
61 VERIFY(*i == B[count]);
62 VERIFY(count == M);

Completed in 474 milliseconds

<<11121314151617181920>>