代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/411933/2179231
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/409921/2223401
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/402787/2317927
cpp ex4_05.cpp
// EX4_05.CPP
// Exercising pointers
#include
using std::cout;
using std::endl;
using std::hex;
using std::dec;
int main()
{
long* pnumber = NULL; // Pointer declara
www.eeworm.com/read/402787/2317943
cpp ex6_01.cpp
// Ex6_01.cpp
// Exercising pointers to functions
#include
using std::cout;
using std::endl;
long sum(long a, long b); // Function prototype
long product(long a, long b
www.eeworm.com/read/401534/2339793
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/396408/2418242
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/375190/2737034
cpp stl_port.cpp
/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
// stl_port.cpp: implementation of run-time casting of void pointers
// (C) Copyright 2005 Robert Ramey - http://www.r
www.eeworm.com/read/367182/2852040
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/366702/2868223
c dr49.c
// { dg-do compile }
// Contributed by: Giovanni Bajo
// DR 49: Non-constant pointers are invalid template arguments.
template struct R { /* ... */ };
te
www.eeworm.com/read/366702/2869148
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