代码搜索:pointers

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

代码结果 4,056
www.eeworm.com/read/475965/1374267

c names3.c

// names3.c -- use pointers and malloc() #include #include // for strcpy(), strlen() #include // for malloc(), free() struct namect { char * fname; // u
www.eeworm.com/read/471707/1425629

c resample.c

// a52_resample_init should find the requested converter (from type flags -> // given number of channels) and set up some function pointers... // a52_resample() should do the conversion. #include "
www.eeworm.com/read/470917/1440701

h libc-vdso.h

/* Resolve function pointers to VDSO functions. Copyright (C) 2005 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistri
www.eeworm.com/read/470720/1446496

c koenig5.c

// To find function pointers in Koenig lookup is ok as long as we only find one. namespace A{ void foo(); // ERROR - struct X{}; void (*bar)(X*)=0; } using A::X; void (*foo)(X*)=0;
www.eeworm.com/read/470693/1458442

c koenig5.c

// To find function pointers in Koenig lookup is ok as long as we only find one. namespace A{ void foo(); // ERROR - struct X{}; void (*bar)(X*)=0; } using A::X; void (*foo)(X*)=0;
www.eeworm.com/read/246835/4490942

c resample.c

// a52_resample_init should find the requested converter (from type flags -> // given number of channels) and set up some function pointers... // a52_resample() should do the conversion. #include "
www.eeworm.com/read/242732/4540865

readme

mkdosfs - Make DOS file system utilty. I wrote this, partially to complement the dosfsck utility written by Werner Almesberger (who graciously gave me some pointers when I asked for some advice abou
www.eeworm.com/read/240162/4580273

c spec7.c

// { dg-do run } // Test that we allow simple throw specs on pointers. void f() throw () { } void (*pf)() throw () = f; struct A { void g() throw () { } static void (A::*pmf)() throw (); }; vo
www.eeworm.com/read/240162/4580800

c ptrmem9.c

// { dg-do run } // Test that const-correctness is observed when using pointers-to-members. struct A { int f () { return 1; } int f () const { return 0; } }; struct B { A a; B() { } }; int
www.eeworm.com/read/240162/4581684

c koenig5.c

// { dg-do assemble } // To find function pointers in Koenig lookup is ok as long as we only find one. namespace A{ void foo(); struct X{}; void (*bar)(X*)=0; } using A::X; void (