代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/440906/1777121
c ptrmem3.c
// Build don't link:
// GROUPS passed pointers-to-members
template class TemplA {
T t;
};
template class TemplB {
public:
typedef void (T::*TClassMethod)();
private:
www.eeworm.com/read/440906/1777711
c 900519_06.c
// g++ 1.37.1 bug 900519_06
// g++ allows the type given in an invocation of operator new to be a
// reference type.
// Since pointers to reference types are illegal, the required return type
// fro
www.eeworm.com/read/440906/1777721
c 900215_02.c
// g++ 1.36.1 bug 900215_02
// g++ allows global objects (which happen to be pointers to members of some
// class X) to be dereferenced without prefix object specifications within
// member function
www.eeworm.com/read/440906/1778323
c eb75.c
// Build don't link:
int*& foo (int const *& x)
{
return const_cast (x);
}
/*
If the references in this example are changed to pointers (change
all `&''s to `*'), no warnings result.
I thi
www.eeworm.com/read/440906/1780690
c builtin-prefetch-3.c
/* Test that __builtin_prefetch does no harm.
Prefetch data using a variety of storage classes and address
expressions with volatile variables and pointers. */
int glob_int_arr[100];
int glob
www.eeworm.com/read/434177/1874155
c htarray.c
/* HTArray.c
** ARRAY HANDLING: FLEXIBLE ARRAYS OF POINTERS
**
** (c) COPYRIGHT MIT 1995.
** Please first read the full copyright statement in the file COPYRIGH.
** @(#) $Id: HTArray.c,v
www.eeworm.com/read/408009/2255458
c htarray.c
/* HTArray.c
** ARRAY HANDLING: FLEXIBLE ARRAYS OF POINTERS
**
** (c) COPYRIGHT MIT 1995.
** Please first read the full copyright statement in the file COPYRIGH.
** @(#) $Id: HTArray.c,v
www.eeworm.com/read/395229/2448110
h poison.h
#ifndef _LINUX_POISON_H
#define _LINUX_POISON_H
/********** include/linux/list.h **********/
/*
* These are non-NULL pointers that will result in page faults
* under normal circumstances, used to v
www.eeworm.com/read/375190/2737047
cpp void_cast.cpp
/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
// void_cast.cpp: implementation of run-time casting of void pointers
// (C) Copyright 2002 Robert Ramey - http://www.
www.eeworm.com/read/375190/2737159
cpp test_void_cast.cpp
/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
// test_void_cast.cpp: test implementation of run-time casting of void pointers
// (C) Copyright 2002 Robert Ramey - h