Searched refs:count (Results 51 - 75 of 3861) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D20040331-1.c9 struct { int count: 31; } s = { 0 }; member in struct:__anon5487
10 while (s.count--)
13 struct { int count: 15; } s = { 0 };
14 while (s.count--)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.target/powerpc/
H A Ddoloop-1.c7 void foo (int count, char* pca, char* pcb) { argument
9 if (count > 10)
10 for (i = 0; i < count; ++i)
13 for (i = 0; i < count; ++i)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp5469.C4 int count; variable
10 A(int) { ++count; }
11 ~A() { --count; }
21 return count;
H A Dp5469a.C4 int count; variable
10 A(int) { ++count; }
11 ~A() { --count; }
21 return count;
H A Dp7865.C4 int count; variable
7 A() { ++count; }
8 ~A() { --count; }
28 return count;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.ns/
H A Dkoenig9.C12 foo("",count); // { dg-error "" } multiple overloaded count functions
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D20040331-1.c9 struct { int count: 31; } s = { 0 }; member in struct:__anon3756
10 while (s.count--)
13 struct { int count: 15; } s = { 0 };
14 while (s.count--)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.target/powerpc/
H A Ddoloop-1.c7 void foo (int count, char* pca, char* pcb) { argument
9 if (count > 10)
10 for (i = 0; i < count; ++i)
13 for (i = 0; i < count; ++i)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A Dpr37483.c4 foo (unsigned count, int i) argument
8 value = (value & 0xFFFFFFFF) >> count;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A D20040331-1.c10 struct { int count: 2; } s = { -2 }; member in struct:__anon5705
11 while (s.count-- != -2)
H A D20061124-1.c8 unsigned short int count = 0; variable
17 __sync_add_and_fetch (&count, -1);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libgomp/config/linux/
H A Domp-lock.h10 typedef struct { int lock, count; void *owner; } omp_nest_lock_t; member in struct:__anon6921
12 typedef struct { int owner, count; } omp_nest_lock_25_t; member in struct:__anon6922
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/
H A D20040331-1.c10 struct { int count: 2; } s = { -2 }; member in struct:__anon3947
11 while (s.count-- != -2)
H A D20061124-1.c7 unsigned short int count = 0; variable
16 __sync_add_and_fetch (&count, -1);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/debug/dwarf2/
H A Dtemplate-params-4.C5 // In theory the compiler instantiates count<int, char, long>,
6 // count<char, long> and count<long>. In practice, only
7 // count<int, char, long> is emitted, thanks to constant folding.
8 // So in theory, each of the 3 instances of count yields a
10 // DW_TAG_GNU_template_parameter_pack as there is only count<int, char, long>
15 template <typename... Args> struct count;
18 struct count<> struct
24 struct count<T, Args...> struct
26 static const int value = 1 + count<Arg
[all...]
H A Dtemplate-func-params-4.C5 // In theory the compiler instantiates count<int, char, long>,
6 // count<char, long> and count<long>. In practice, only
7 // count<int, char, long> is emitted, thanks to constant folding.
8 // So in theory, each of the 3 instances of count yields a
10 // DW_TAG_GNU_template_parameter_pack as there is only count<int, char, long>
16 template <typename... Args> struct count;
19 struct count<> struct
25 struct count<T, Args...> struct
27 static const int value = 1 + count<Arg
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/libiberty/
H A Dspaces.c22 @deftypefn Extension char* spaces (int @var{count})
48 spaces (int count) argument
54 if (count > maxsize)
60 buf = (char *) malloc (count + 1);
63 for (t = buf + count ; t != buf ; )
67 maxsize = count;
68 buf[count] = '\0';
70 return (const char *) (buf + maxsize - count);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libiberty/
H A Dspaces.c22 @deftypefn Extension char* spaces (int @var{count})
48 spaces (int count) argument
54 if (count > maxsize)
60 buf = (char *) malloc (count + 1);
63 for (t = buf + count ; t != buf ; )
67 maxsize = count;
68 buf[count] = '\0';
70 return (const char *) (buf + maxsize - count);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/libiberty/
H A Dspaces.c22 @deftypefn Extension char* spaces (int @var{count})
48 spaces (int count) argument
54 if (count > maxsize)
60 buf = (char *) malloc (count + 1);
63 for (t = buf + count ; t != buf ; )
67 maxsize = count;
68 buf[count] = '\0';
70 return (const char *) (buf + maxsize - count);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libiberty/
H A Dspaces.c22 @deftypefn Extension char* spaces (int @var{count})
48 spaces (int count) argument
54 if (count > maxsize)
60 buf = (char *) malloc (count + 1);
63 for (t = buf + count ; t != buf ; )
67 maxsize = count;
68 buf[count] = '\0';
70 return (const char *) (buf + maxsize - count);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/23_containers/multiset/
H A Dinit-list.cc32 VERIFY(m.count(1) == 1);
33 VERIFY(m.count(5) == 2);
34 VERIFY(m.count(37) == 1);
35 VERIFY(m.count(42) == 0);
39 VERIFY(m.count(28) == 1);
40 VERIFY(m.count(37) == 3);
41 VERIFY(m.count(102) == 1);
42 VERIFY(m.count(1) == 0);
46 VERIFY(m.count(28) == 1);
47 VERIFY(m.count(3
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/23_containers/set/
H A Dinit-list.cc32 VERIFY(m.count(1) == 1);
33 VERIFY(m.count(5) == 1);
34 VERIFY(m.count(37) == 1);
35 VERIFY(m.count(42) == 0);
39 VERIFY(m.count(28) == 1);
40 VERIFY(m.count(37) == 1);
41 VERIFY(m.count(102) == 1);
42 VERIFY(m.count(1) == 0);
46 VERIFY(m.count(28) == 1);
47 VERIFY(m.count(3
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/23_containers/unordered_multiset/
H A Dinit-list.cc32 VERIFY(m.count(1) == 1);
33 VERIFY(m.count(5) == 2);
34 VERIFY(m.count(37) == 1);
35 VERIFY(m.count(42) == 0);
39 VERIFY(m.count(28) == 1);
40 VERIFY(m.count(37) == 3);
41 VERIFY(m.count(102) == 1);
42 VERIFY(m.count(1) == 0);
46 VERIFY(m.count(28) == 1);
47 VERIFY(m.count(3
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/23_containers/unordered_set/
H A Dinit-list.cc32 VERIFY(m.count(1) == 1);
33 VERIFY(m.count(5) == 1);
34 VERIFY(m.count(37) == 1);
35 VERIFY(m.count(42) == 0);
39 VERIFY(m.count(28) == 1);
40 VERIFY(m.count(37) == 1);
41 VERIFY(m.count(102) == 1);
42 VERIFY(m.count(1) == 0);
46 VERIFY(m.count(28) == 1);
47 VERIFY(m.count(3
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dnet_read.c50 ssize_t count; local
54 count = read (fd, cbuf, rem);
55 if (count < 0) {
59 return count;
60 } else if (count == 0) {
61 return count;
63 cbuf += count;
64 rem -= count;
75 ssize_t count; local
85 count
[all...]

Completed in 174 milliseconds

1234567891011>>