代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/240162/4588411
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/233448/4672425
c dr195.c
// Copyright (C) 2004 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 20 Oct 2004
// DR 195 will allow conversions between function and object pointers
// un
www.eeworm.com/read/233448/4675045
c ptrmem3.c
// { dg-do assemble }
// GROUPS passed pointers-to-members
template class TemplA {
T t;
};
template class TemplB {
public:
typedef void (T::*TClassMethod)();
private:
www.eeworm.com/read/233448/4676071
c template6.c
// { dg-do run }
// PRMS Id: 4656
// Testcase for use of member pointers in template resolution
template class A {
public:
A() : a(1) {}
T a;
};
template
int foo (T A:
www.eeworm.com/read/233448/4676243
c eb75.c
// { dg-do assemble }
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 th
www.eeworm.com/read/233448/4676437
mm comp-types-13.mm
/* APPLE LOCAL file 4174166 */
/* When assigning function pointers, allow for covariant return types
and contravariant argument types. */
/* { dg-do compile } */
#include
@class D
www.eeworm.com/read/233448/4676494
m comp-types-12.m
/* APPLE LOCAL file 4174166 */
/* When assigning function pointers, allow for covariant return types
and contravariant argument types. */
/* { dg-do compile } */
#include
@class D
www.eeworm.com/read/233448/4682379
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/200278/5070822
c devfile.c
#include "calld.h"
static FILE *fpdev = NULL;
static int devlineno; /* for error messages */
static char devline[MAXLINE];
/* can't be automatic; dev_next() returns pointers into here */
/*
* R
www.eeworm.com/read/190666/5174833
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: