代码搜索结果

找到约 10,206 项符合 Storage 的代码

mscdbridge.h

/************************************************************* * Philips USB Mass Storage Bridge Interface * * (c) 2002 Koninklijke Philips Electronics N.V., All rights reserved * * This s

devmscd.h

/************************************************************* * Philips USB Mass Storage Class driver (Device side) * * (c) 2002 Koninklijke Philips Electronics N.V., All rights reserved *

iicrd.hif

Version 2.2 Build 191 03/31/2003 Service Pack 2 SJ Full Version 29 # entity iicrd # case_insensitive # source_file iicrd.vhd 1078543328 4 # storage db|iicrd(0).cnf db|iicrd(0).cnf # end #

errortc53.dat

出错信息: Incompatible storage class 中文注释: 存储类别不相容

mdalloc.c

/* Written by Blair Haukedal 91/09 and placed in the public domain */ /* mdalloc - a multi dimensional array allocator * mdfree - a companion function to mdalloc for freeing storage * syn

storage.typ

STORAGE TYPES A C language crib sheet from Jeff Galbraith int x; - x is an int. int *x; - x is a pointer to an int. int **x; - x is a pointer to a p

arrayqueue.java

// queue implemented as an array public class ArrayQueue { private int first, last, size; private Object[] storage; public ArrayQueue() { this(100); }

bitmapdll.dpr

library BitmapDLL; {all this DLL does is provide a storage mechanism for a bitmap} uses SysUtils, Classes; {link in the bitmap resource} {$R BitmapResources.res} begin end.

avr.h

/* $Id: AVR.h,v 1.4 2000/09/24 12:57:54 pure Exp $ */ #ifndef __AVR_h__ #define __AVR_h__ #include "Types.h" #include "Device.h" #include "Storage.h" #include "Register.h" #include "RegisterSet.h" #

register.cc

/* $Id: Register.cc,v 1.3 2000/09/27 09:53:16 pure Exp $ */ #include "Register.h" ByteReg::ByteReg(Storage& _storage, unsigned _addr) : storage(_storage) { addr = _addr; } ByteReg::~ByteReg() { }