代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/366702/2877100
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/366702/2877535
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/366702/2878676
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/366076/2893426
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().
www.eeworm.com/read/366076/2893442
java securityattributes.java
package org.xvolks.jnative.misc;
import org.xvolks.jnative.exceptions.*;
import org.xvolks.jnative.pointers.*;
/**
* SecurityAttributes this utility class is used by Kernel32.createFile().
www.eeworm.com/read/356870/3036382
c csvparse.c
/* csvparse.c :
*
* Parse a *.CSV format record
*/
#include "quotes.h"
/*
* Internal buffer pointers :
*/
static char *sbuf = NULL;
static unsigned maxlen = 0;
static char *aptr = NULL;
/*
* R
www.eeworm.com/read/158865/5594332
c sig.c
/* Functions dealing with signatures and signature pointers/references.
Copyright (C) 1992, 93-97, 1998 Free Software Foundation, Inc.
Contributed by Gerald Baumgartner (gb@cs.purdue.edu)
This
www.eeworm.com/read/474431/6809304
c s_srch1.c
/*
** Given a pointer to a NULL-terminated list of pointers, search
** the strings in the list for a particular character.
*/
#include
#define TRUE 1
#define FALSE 0
int
find_c
www.eeworm.com/read/471682/6887938
c program7_10.c
/* Program 7.10 Understand pointers to your hat size if you dare */
#include
#include
int main(void)
{
char size[3][12] = { /* Hat sizes as characters
www.eeworm.com/read/292919/8324853
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