代码搜索结果

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

massstorage.h

#if 0 // -------------------------------------------------------------------- // USB Mass Storage Class // Bulk-Only transport // Copyright: PowerVision Technologies INC. // Create Date: 2001/0

mass_storage_device.lnp

"Main.obj", "Storage.obj", "UFI.obj", "Global.obj", "USB.obj", "ATA.obj" TO "mass_storage_device" PRINT(".\LST\mass_storage_device.m51") RAMSIZE(256)

ide_uv2.bak

### uVision2 Project, (C) Keil Software ### Do not modify ! Target (Target 1), 0x0000 // Tools: 'MCS-51' Group (Source Group 1) File 1,1, 0x0 File 1,1,

ide.uv2

### uVision2 Project, (C) Keil Software ### Do not modify ! Target (Target 1), 0x0000 // Tools: 'MCS-51' Group (Source Group 1) File 1,1, 0x0 File 1,1,

rs485_a.dni

[State Storage] Reaction Register=0 Control Register=0 [Breakpoints] Count=0 [FET] Emulation mode=0 Free running=0 [Memory Dump] Start address= Lenghth= Address info=0 Format=0 Dump regis

timera_a.dni

[State Storage] Reaction Register=0 Control Register=0 [Breakpoints] Count=0 [FET] Emulation mode=0 Free running=0 [Memory Dump] Start address= Lenghth= Address info=0 Format=0 Dump regis

stack.java

//: net/mindview/util/Stack.java // Making a stack from a LinkedList. package net.mindview.util; import java.util.LinkedList; public class Stack { private LinkedList storage = new Linke

simplequeue.java

//: generics/SimpleQueue.java // A different kind of container that is Iterable import java.util.*; public class SimpleQueue implements Iterable { private LinkedList storage = new Lin

randomlist.java

//: generics/RandomList.java import java.util.*; public class RandomList { private ArrayList storage = new ArrayList(); private Random rand = new Random(47); public void add(T it

genericcast.java

//: generics/GenericCast.java class FixedSizeStack { private int index = 0; private Object[] storage; public FixedSizeStack(int size) { storage = new Object[size]; } public v