代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/127781/5996887
c kiobuftest.c
/*
* Example showing how to pin down a range of virtual pages from user-space
* to be able to do for example DMA directly into them.
*
* It is necessary because the pages the virtual pointers refe
www.eeworm.com/read/126411/6017543
h tilde.h
/* tilde.h: Externally available variables and function in libtilde.a. */
#if !defined (__TILDE_H__)
# define __TILDE_H__
/* Function pointers can be declared as (Function *)foo. */
#if !defined (_
www.eeworm.com/read/126411/6017569
h tilde.h
/* tilde.h: Externally available variables and function in libtilde.a. */
#if !defined (__TILDE_H__)
# define __TILDE_H__
/* Function pointers can be declared as (Function *)foo. */
#if !defined (_
www.eeworm.com/read/125819/6021004
c driverstruct.c
/** Tests a few features of a driver struct - a struct with
many function pointers.
*/
#include
/* Set to one to show the bug */
#if 1
#define NAME(_a) _a
#else
#define NAME(_a)
#endi
www.eeworm.com/read/110034/6168501
c kiobuftest.c
/*
* Example showing how to pin down a range of virtual pages from user-space
* to be able to do for example DMA directly into them.
*
* It is necessary because the pages the virtual pointers refe
www.eeworm.com/read/102935/6227087
c kiobuftest.c
/*
* Example showing how to pin down a range of virtual pages from user-space
* to be able to do for example DMA directly into them.
*
* It is necessary because the pages the virtual pointers refe
www.eeworm.com/read/491812/6426405
inc dos.inc
; DOS Interface Macros - Version 1.3 - for Microsoft Macro Assembler 6.1
; (C) Copyright Microsoft Corporation, 1987, 1988, 1989, 1990, 1993
; Typedefs for testing pointers
NPVOID TYPEDEF NEAR P
www.eeworm.com/read/480070/6676147
makefile
include Makefile.h
all::
CODE_DIRS = basics details \
poly traits inherit meta exprtmpl \
types pointers tuples functors
all::
@for DIR in $(CODE_DIRS); \
do \
www.eeworm.com/read/403011/11524397
cpp swaps.cpp
// swaps.cpp -- swapping with references and with pointers
#include
void swapr(int & a, int & b); // a, b are aliases for ints
void swapp(int * p, int * q); // p, q are addresses of
www.eeworm.com/read/403009/11524702
cpp swaps.cpp
// swaps.cpp -- swapping with references and with pointers
#include
void swapr(int & a, int & b); // a, b are aliases for ints
void swapp(int * p, int * q); // p, q are addresses of