代码搜索:pointers

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

代码结果 4,056
www.eeworm.com/read/11356/228281

h display.h

#ifndef _DISPLAY_H #define _DISPLAY_H #ifndef _STDIO_H #include #endif #define MAXARGS 5 struct display { unsigned cookie; /* Magic cookie to detect bogus pointers */ #define
www.eeworm.com/read/13787/283506

h display.h

#ifndef _DISPLAY_H #define _DISPLAY_H #ifndef _STDIO_H #include #endif #define MAXARGS 5 struct display { unsigned cookie; /* Magic cookie to detect bogus pointers */ #define
www.eeworm.com/read/472269/1412797

c sdlut.c

#include "sdlut.h" /* I like booleans */ typedef int bool; #define true 1 #define false 0 /* * Function pointers for storing callbacks */ bool sdlut_redisplay_necessary; void (*sdlut_active_fu
www.eeworm.com/read/470720/1444809

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/470720/1444811

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/470720/1445468

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/470720/1447870

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/470693/1456755

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/470693/1456757

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/470693/1457414

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