代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/266068/11244628
c blockprocess.c
#include "tt.h"
// Place the audio processing algorith here. The input and output are given
// as unsigned integer pointers.
void processBlock(unsigned int *block_ptr)
{
int i;
float t
www.eeworm.com/read/266068/11244680
c blockprocess.c
#include "tt.h"
// Place the audio processing algorith here. The input and output are given
// as unsigned integer pointers.
void processBlock(unsigned int *block_ptr)
{
int i;
float t
www.eeworm.com/read/334325/12610402
c resample.c
// a52_resample_init should find the requested converter (from type flags ->
// given number of channels) and set up some function pointers...
// a52_resample() should do the conversion.
#include
www.eeworm.com/read/109232/15561107
dev pointer1.dev
[Project]
FileName=Pointer1.dev
Name=Pointers1
UnitCount=1
Type=1
Ver=1
ObjFiles=
Includes=
Libs=
PrivateResource=
ResourceIncludes=
Resources=
Compiler=
Linker=
IsCpp=1
Icon=
ExeOutpu
www.eeworm.com/read/105274/15672262
h vitemlistc.h
//
// VItemListC.h
//
#ifndef _VItemListC_h_
#define _VItemListC_h_
#include "VItemC.h"
/*
* PListC.clas -- class definition file for class PListC
*
* This type of list stores only pointers to
www.eeworm.com/read/105274/15672266
h fieldlistc.h
//
// FieldListC.h
//
#ifndef _FieldListC_h_
#define _FieldListC_h_
#include "FieldC.h"
/*
* PListC.clas -- class definition file for class PListC
*
* This type of list stores only pointers to
www.eeworm.com/read/104466/15691538
c resample.c
// a52_resample_init should find the requested converter (from type flags ->
// given number of channels) and set up some function pointers...
// a52_resample() should do the conversion.
#include "
www.eeworm.com/read/188512/8532999
cpp fig08_29.cpp
// Fig. 8.29: fig08_29.cpp
// Demonstrating an array of pointers to functions.
#include
using std::cout;
using std::cin;
using std::endl;
// function prototypes -- each function per
www.eeworm.com/read/430984/8714932
c initlpc2124.c
#include "GeneralHeader.h"
#define BAUDRATE 9600
#define BAUDRATEDIVISOR (PCLKFREQ/(BAUDRATE*16))
#define VIC_UART1_bit (1
www.eeworm.com/read/285874/8806254
htm ei29.htm
Effective C++, 2E | Item 29: Avoid returning "handles" to internal data Back to Implementation
Continue to Item 30: Avoid member functions that return non-const pointers or references to members less