代码搜索:Local
找到约 10,000 项符合「Local」的源代码
代码结果 10,000
www.eeworm.com/read/241064/4563689
c local_heap.c
#include
#define HEAP_SIZE (256*1024)
#define HEAP_MODE 0 /* Local heap. */
RT_HEAP heap_desc;
int init_module (void)
{
void *block;
int err;
/* Create a 256Kb heap u
www.eeworm.com/read/240162/4579582
c local1.c
// { dg-options "-O" }
struct Outer {
struct Inner { virtual bool f() = 0; };
void g(Inner &) const;
};
inline void h(const Outer &o)
{
struct Local : public Outer::Inner {
virtual bool f
www.eeworm.com/read/240162/4579921
c local3.c
template
void f(const T&)
{
struct B {
void g (T);
};
B b;
}
void g()
{
f(42);
}
www.eeworm.com/read/240162/4579936
c local2.c
template
struct X {
double & f (const unsigned int i,
const unsigned int j);
void g (X &M);
};
template
void X::g (X &x) {
double t14 = x.
www.eeworm.com/read/240162/4580032
c local1.c
// PR c++/4286: We were crashing when trying to set up the class bindings in
// g(), because xref wanted the mangled name, which breaks inside a template.
// Of course, the offending code is actually
www.eeworm.com/read/240162/4580381
c local3.c
// { dg-do run }
// Bug: g++ lies about DECL_CONTEXT, so the backend thinks B::f is not
// function-local.
// Contributed by Jason Merrill
struct A {
virtual void f () = 0;
};
www.eeworm.com/read/240162/4580400
c local4.c
// { dg-do run }
// Test that a local declaration of one of a global overload set works
int f () { return 0; }
int f (int);
int main ()
{
int f ();
return f ();
}
www.eeworm.com/read/240162/4580403
c local2.c
// { dg-do assemble }
// { dg-options "-O2" }
void f ()
{
struct Init {
Init () {
}
};
}
www.eeworm.com/read/240162/4580554
c local1.c
// { dg-do link }
struct Outer {
virtual ~Outer() {}
};
int
main()
{
{ struct Inner : virtual public Outer {} inner; }
{ struct Inner : virtual public Outer {} inner; }
}
www.eeworm.com/read/240162/4580920
c local7.c
// { dg-do assemble }
template inline STRUCT *
setback(MEMBER *bp, MEMBER STRUCT::*offset)
{
if(!bp) return 0;
union { int i; MEMBER STRUCT::*of; } u;