代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/162614/5525997
f90 deallocate_stat.f90
! { dg-do run }
! PR 17792
! PR 21375
! Test that the STAT argument to DEALLOCATE works with POINTERS and
! ALLOCATABLE arrays.
program deallocate_stat
implicit none
integer i
real, poi
www.eeworm.com/read/162614/5526343
f90 char_result_6.f90
! Like char_result_5.f90, but the function arguments are pointers to scalars.
! { dg-do run }
pure function select (selector, iftrue, iffalse)
logical, intent (in) :: selector
integer, intent (in)
www.eeworm.com/read/162614/5526467
f90 char_result_8.f90
! Related to PR 15326. Compare functions that return string pointers with
! functions that return strings.
! { dg-do run }
program main
implicit none
character (len = 30), target :: string
ca
www.eeworm.com/read/162614/5527304
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/340665/3275489
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/340665/3276079
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/340665/3276089
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/340665/3276691
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/340665/3279051
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/326616/3470679
java systeminfo.java
package org.xvolks.jnative.misc;
import org.xvolks.jnative.exceptions.*;
import org.xvolks.jnative.pointers.*;
/**
* SystemInfo this utility class is used by Kernel32.getNativeSystemInfo().