代码搜索:pointers

找到约 4,056 项符合「pointers」的源代码

代码结果 4,056
www.eeworm.com/read/190666/5173258

c ptrmem4.c

// Test to make sure g++ can handle target types that aren't identical // with pointers to members. struct A { int i; }; struct B : public A { }; int main () { int A::*p = &A::i; const int B::*q
www.eeworm.com/read/190666/5175663

c parse3.c

// PRMS Id: 4484 (bug 2) // Bug: g++ does not grok abstract declarator syntax for method pointers. // Build don't link: template class A { }; void (A::*p)() = (void (A::*)())0; //
www.eeworm.com/read/179911/5293210

c setup.c

/* $Id: setup.c,v 1.24 1999/10/09 00:00:58 ralf Exp $ * * Setup pointers to hardware-dependent routines. * * This file is subject to the terms and conditions of the GNU General Public * License.
www.eeworm.com/read/162614/5526514

f90 ret_pointer_2.f90

! { dg-do run } ! PR 25806: Functions returning pointers to arrays program a integer, target :: storage(5) integer :: s(3) print *, x(3) ! { dg-output " *1 *2 *3" } if (ssum(x(3
www.eeworm.com/read/350097/3128112

c setup.c

/* $Id: setup.c,v 1.24 1999/10/09 00:00:58 ralf Exp $ * * Setup pointers to hardware-dependent routines. * * This file is subject to the terms and conditions of the GNU General Public * License.
www.eeworm.com/read/340665/3273242

c ptrmem2.c

// { dg-do compile } // Copyright (C) 2001 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 31 Dec 2001 // PR 4379. We created pointers to member references
www.eeworm.com/read/340665/3273244

c ptrmem1.c

// { dg-do run } // Copyright (C) 2001 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 31 Dec 2001 // PR 4379. We created pointers to member references and
www.eeworm.com/read/340665/3273915

c ptrmem4.c

// Test to make sure g++ can handle target types that aren't identical // with pointers to members. struct A { int i; }; struct B : public A { }; int main () { int A::*p = &A::i; const int B::*q
www.eeworm.com/read/340665/3276317

c parse3.c

// PRMS Id: 4484 (bug 2) // Bug: g++ does not grok abstract declarator syntax for method pointers. // Build don't link: template class A { }; void (A::*p)() = (void (A::*)())0; //
www.eeworm.com/read/326711/3470118

c fig07_26.c

/* Fig. 7.26: fig07_26.c Multipurpose sorting program using function pointers */ #include #define SIZE 10 /* prototypes */ void bubble( int work[], const int size, i