Searched refs:base (Results 1 - 25 of 2307) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dref1.C3 struct base { struct
4 base () { ++count; } function in struct:base
5 ~base () { --count; }
6 base(const base&o) { ++count; } argument
9 base base_returning_function ();
11 const base& base_ref = base_returning_function ();
18 base base_returning_function () {
19 base local_base_object;
H A Dp9732b.C10 struct base { struct
11 base () { ++count; } function in struct:base
12 ~base () { --count; }
13 base(const base&o) { ++count; } argument
34 base base_object;
36 base base_returning_function ();
38 const base& base_ref = base_returning_function ();
43 base base_returning_function () {
44 base local_base_objec
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dreference1.C14 struct base { struct
17 base () {} function in struct:base
21 base base_object;
23 base base_returning_function ();
29 const base& base_ref = base_returning_function ();
43 base base_returning_function ()
45 base local_base_object;
51 void base::function_member () const
H A Ddelete2.C7 struct base { struct
11 base* bp;
20 bp = (base *) 0;
H A Doperators5.C6 struct base { struct
10 base base_variable;
12 base operator+ (const base& left, const base& right)
14 base ret_val;
20 base operator- (const base& left, int right)
22 base ret_val;
28 // Define the unary ! operator for class base t
[all...]
H A Dvisibility10.C3 struct base struct
9 struct derived : public base
12 void derived_func(base *ptr) { ptr->base_func(); }// ERROR - within this context
H A Ddtors2.C4 // which the base class had an explicitly declared virtual destructor
8 // The generated g++ code apparently calls the base class destructor via
16 struct base { struct
18 base();
19 virtual ~base();
22 base::base() function in class:base
26 base::~base()
30 struct derived : public base
[all...]
H A Dctors1.C6 struct base { struct
9 base (int arg1, int arg2);
13 base global_base(0x55, 0xff);
23 base::base(int arg1, int arg2) function in class:base
H A Dctors2.C7 struct base { struct
10 base (int arg1, int arg2);
14 base global_base(0x55, 0x7e);
24 base::base(int arg1, int arg2) function in class:base
H A Dvtables1.C10 struct base { struct
17 struct derived : public base {
28 base* bp1;
29 base* bp2;
33 bp1 = new base;
/openbsd-current/lib/libc/gen/
H A Dtimespec_get.c36 timespec_get(struct timespec *ts, int base) argument
38 switch (base) {
47 return base;
/openbsd-current/sys/dev/pci/drm/i915/gt/
H A Dintel_engine_regs.h11 #define RING_EXCC(base) _MMIO((base) + 0x28)
12 #define RING_TAIL(base) _MMIO((base) + 0x30)
14 #define RING_HEAD(base) _MMIO((base) + 0x34)
18 #define RING_START(base) _MMIO((base) + 0x38)
19 #define RING_CTL(base) _MMIO((base)
[all...]
/openbsd-current/gnu/lib/libiberty/src/
H A Dlbasename.c51 const char *base; local
59 for (base = name; *name; name++)
61 base = name + 1;
63 return base;
H A Dmake-temp-file.c67 try_dir (const char *dir, const char *base) argument
69 if (base != 0)
70 return base;
99 const char *base = 0; local
106 base = try_dir (getenv ("TMPDIR"), base);
107 base = try_dir (getenv ("TMP"), base);
108 base = try_dir (getenv ("TEMP"), base);
150 const char *base = choose_tmpdir (); local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dinstantiate13.C10 struct base struct
12 base();
13 base(unsigned);
25 base<double> x;
/openbsd-current/sys/dev/pci/drm/i915/gem/selftests/
H A Dmock_gem_object.h13 struct drm_i915_gem_object base; member in struct:mock_object
/openbsd-current/sys/dev/pci/drm/i915/pxp/
H A Dintel_pxp_regs.h11 /* KCR subsystem register base address */
16 #define KCR_INIT(base) _MMIO((base) + 0xf0)
22 #define KCR_SIP(base) _MMIO((base) + 0x260)
25 #define KCR_GLOBAL_TERMINATE(base) _MMIO((base) + 0xf8)
/openbsd-current/sbin/isakmpd/
H A Dgenconstants.sh32 base=`basename $1`
33 upcased_name=`echo $base |tr a-z A-Z`
77 ' <$1.cst >$base.h
85 print "#include \"'$base'.h\"\n"
112 ' <$1.cst >$base.c
H A Dgenfields.sh32 base=`basename $1`
33 upcased_name=`echo $base |tr a-z A-Z`
120 ' <$1.fld >$base.h
129 print "#include \"'$base'.h\""
183 ' <$1.fld >$base.c
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D950729-1.c7 int base, i; local
19 base = 10;
21 base = 8;
23 base = 16;
28 buffer[i--] = ucset[((unsigned long long) value) % base];
30 buffer[i--] = lcset[((unsigned long long) value) % base];
32 if ((value = ((unsigned long long) value) / base) == 0)
/openbsd-current/gnu/gcc/gcc/config/
H A Dhost-openbsd.c41 void *base, *addr; local
51 base = sbrk(0);
54 base = (void *)(((long)base + (pgsz - 1)) & ~(pgsz - 1));
55 if (brk(base) != 0)
64 if (brk(base) != 0)
68 if (addr != base)
71 return base;
77 openbsd_gt_pch_use_address (void *base, size_t size, int fd ATTRIBUTE_UNUSED, size_t off ATTRIBUTE_UNUSED) argument
84 /* sanity check base addres
[all...]
/openbsd-current/gnu/gcc/libmudflap/testsuite/libmudflap.c/
H A Dfail15-frag.c6 struct base { struct
11 struct base common;
15 volatile struct base b;
16 volatile struct base *bp;
18 bp = (struct base *)&b;
H A Dfail16-frag.c6 struct base { struct
11 struct base common;
15 struct base *bp;
17 bp = (struct base *) malloc (sizeof (struct base));;
/openbsd-current/sys/dev/ic/
H A Di82596reg.h93 #define IE_SCP_BUS_USE(base) ((base) + 2)
94 #define IE_SCP_TEST(base) ((base) + 4)
95 #define IE_SCP_ISCP(base) ((base) + 8)
116 #define IE_ISCP_BUSY(base) ((base) + 0)
117 #define IE_ISCP_SCB(base) ((base)
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.benjamin/
H A D17922.C5 class base { }; class
7 struct derived : public base {
9 derived (const base&);

Completed in 197 milliseconds

1234567891011>>