代码搜索结果

找到约 10,000 项符合 Memory 的代码

memory.v

`include "defines.v" module memory ( data , addr , read , write ); inout [7:0] data ; input [4:0] addr ; input read ; input write ; reg [7:0] memory [0:31] ; assign data =

memory.h

#ifndef OS_MEMORY_MEMORY #define OS_MEMORY_MEMORY #include"../kernel/kernel.h" #include"arch.h" #include"memory_struct.h" #include"memory_function.h" #include"call_memory.h" extern stru

memory.c

#include"../include/os.h" static int hash_function(int file_window,int logic_block) { int i,j; i=(*(memory_body->file_number)); i=i*file_window; i=i+logic_block; j=(*(memory_body->hash

memory.ld

//*---------------------------------------------------------------------------- //* ATMEL Microcontroller Software Support - ROUSSET - //*-------------------------------------------------

memory.dat

61 00000000 62 11111111 63 00000001 00 00111110 01 00010100 02 01111111 03 10010101 04 00111110 05 01010101 06 01010011 07 11001100 08 10010011 09 01111110 10 11001110 11 11000100 12 10

memory.txt

C++编码中减少内存缺陷的方法和工具 程振林,方金云,唐志敏 (中国科学院计算技术研究所,北京 100080) 摘 要:基于C++的软件的缺陷和错误大部分都和内存相关,预防、发现、消除代码中和内存相关的缺陷,成为程序员编写、调试、维护代码时的重要任务。该文基于“面向网络海量空间信息的大型GIS”课题的工程实践,提出和总结了如何使用C++语言机制、开发环境和相关质量保证工具来预防、 ...

memory.inc

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; ;;; memory.inc -- CY7C63000 Microcontroller Family Memory Declarations ;;; ;;; Copyright (c) 2004 Cypress Semi

memory.h

/* Copyright (c) 2008 TrueCrypt Foundation. All rights reserved. Governed by the TrueCrypt License 2.5 the full text of which is contained in the file License.txt included in TrueCrypt binary

memory.cpp

/* Copyright (c) 2008 TrueCrypt Foundation. All rights reserved. Governed by the TrueCrypt License 2.5 the full text of which is contained in the file License.txt included in TrueCrypt binary

memory.c

/* * linux/mm/memory.c * * (C) 1991 Linus Torvalds */ /* * demand-loading started 01.12.91 - seems it is high on the list of * things wanted, and it should be easy to implement. - Linus */