代码搜索:pointers

找到约 4,056 项符合「pointers」的源代码

代码结果 4,056
www.eeworm.com/read/240152/13235027

vhd fifo1.1.vhd

-- -- file: fifo.vhd -- description: synchronous single clock fifo, uses Linear Feedback Shift Registers as read/write pointers -- author : Richard Herveille -- rev.: 1.0 march 12th, 2001 -- -- libra
www.eeworm.com/read/137955/13276921

c hideset.c

#include #include #include #include "cpp.h" /* * A hideset is a null-terminated array of Nlist pointers. * They are referred to by indices in the hidesets array. *
www.eeworm.com/read/319472/13451293

c names1.c

/* names1.c -- uses pointers to a structure */ #include #include struct namect { char fname[20]; char lname[20]; int letters; }; void getinfo(struct namect
www.eeworm.com/read/318125/13485670

cpp mysvd.cpp

#include "stdafx.h" #include "matlab.h" static double data[] = { 21, 3, 15, 57, 12, 83, 6, 90 }; int mysvd() { /* Initialize pointers to array arguments */ mxArray *X = NULL; mxAr
www.eeworm.com/read/315699/13537953

c names1.c

/* names1.c -- uses pointers to a structure */ #include #include struct namect { char fname[20]; char lname[20]; int letters; }; void getinfo(struct namect
www.eeworm.com/read/307616/13719246

cpp ex4_19.cpp

// Ex4_19.cpp : main project file. // Creating and using interior pointers #include "stdafx.h" using namespace System; int main(array ^args) { // Access array elements
www.eeworm.com/read/137956/5817920

hideset

#include #include #include #include "cpp.h" /* * A hideset is a null-terminated array of Nlist pointers. * They are referred to by indices in the hidesets array. *
www.eeworm.com/read/137626/5823082

c memdebug.c

/* Memory debugging (leaks, overflows & co) */ /* $Id: memdebug.c,v 1.30 2004/10/19 14:38:00 zas Exp $ */ /* Wrappers for libc memory managment providing protection against common * pointers manipul
www.eeworm.com/read/492697/6419924

h comip.h

/*** * comip.h - Native C++ compiler COM support - COM interface pointers header * * Copyright (C) 1996-1999 Microsoft Corporation * All rights reserved. * ****/ #if _MSC_VER > 1000 #pragma
www.eeworm.com/read/479166/6700176

cpp fig08_28.cpp

// Fig. 8.28: fig08_28.cpp // Demonstrating an array of pointers to functions. #include using std::cout; using std::cin; using std::endl; // function prototypes -- each function per