代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/291721/3962592
m setpointer.m
function setpointer(fig, ptr)
% Set the pointer on the current figure to PTR
% has several specialized SOM (SliceOMatic) pointers
% Copyright 2000, 2001, 2002, 2003, 2004, 2005 The MathWorks Inc
www.eeworm.com/read/282522/4096202
c aduc_irq.c
/* Function Pointers for Interrupts */
typedef void (* tyVctHndlr) (void);
tyVctHndlr IRQ = (tyVctHndlr)0x0;
tyVctHndlr SWI = (tyVctHndlr)0x0;
tyVctHndlr FIQ = (tyVctHnd
www.eeworm.com/read/282522/4096208
c aduc_irq.c
/* Function Pointers for Interrupts */
typedef void (* tyVctHndlr) (void);
tyVctHndlr IRQ = (tyVctHndlr)0x0;
tyVctHndlr SWI = (tyVctHndlr)0x0;
tyVctHndlr FIQ = (tyVctHnd
www.eeworm.com/read/282522/4096214
c aduc_irq.c
/* Function Pointers for Interrupts */
typedef void (* tyVctHndlr) (void);
tyVctHndlr IRQ = (tyVctHndlr)0x0;
tyVctHndlr SWI = (tyVctHndlr)0x0;
tyVctHndlr FIQ = (tyVctHnd
www.eeworm.com/read/281949/4110656
s mx1_init.s
;;; Copyright ARM Ltd 2000. All rights reserved.
;
; This module performs ROM/RAM remapping (if required), initializes stack pointers and
; interrupts for each mode, and finally branches to __main
www.eeworm.com/read/277815/4151061
c diosetup.c
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/* load the diode structure with those pointers needed later
* f
www.eeworm.com/read/277815/4151093
c mos6set.c
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1989 Takayasu Sakurai
**********/
/* load the MOS6 device structure with those pointers needed la
www.eeworm.com/read/277815/4151111
c vcvsset.c
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/* load the voltage source structure with those pointers needed la
www.eeworm.com/read/277815/4151405
c ccvsset.c
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/* load the voltage source structure with those pointers needed la
www.eeworm.com/read/446555/1712098
svn-base egg.h.svn-base
#ifndef EGG_H
#define EGG_H
//start
class Chicken; /* Forward class declaration */
class Egg {
public:
Chicken* getParent(); /* Okay in declarations if they are pointers */
};
//end
#endif