代码搜索:Memory
找到约 10,000 项符合「Memory」的源代码
代码结果 10,000
www.eeworm.com/read/177731/9434728
rc2 memory.rc2
//
// MEMORY.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
////
www.eeworm.com/read/177731/9434729
ico memory~1.ico
www.eeworm.com/read/177731/9434734
cpp memory~1.cpp
// MemoryView.cpp : implementation of the CMemoryView class
//
#include "stdafx.h"
#include "Memory.h"
#include "MemoryDoc.h"
#include "MemoryView.h"
#ifdef _DEBUG
#define new DEBUG_NEW
www.eeworm.com/read/177731/9434742
h memory~1.h
// MemoryDoc.h : interface of the CMemoryDoc class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_MEMORYDOC_H__25118F84_CC64_44D3_9739_4E5C1A859
www.eeworm.com/read/177731/9434753
h memory~2.h
// MemoryView.h : interface of the CMemoryView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_MEMORYVIEW_H__C3DDA746_03CD_4E07_890F_6CC5E4
www.eeworm.com/read/177731/9434754
cpp memory~2.cpp
// MemoryDoc.cpp : implementation of the CMemoryDoc class
//
#include "stdafx.h"
#include "Memory.h"
#include "MemoryDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static ch
www.eeworm.com/read/177671/9442738
pdf 09memory.pdf
www.eeworm.com/read/177613/9444025
c memory2.c
#include
#include
#include
#define A_MEGABYTE (1024 * 1024)
int main() {
char *some_memory;
size_t size_to_allocate = A_MEGABYTE;
int megs_obtained
www.eeworm.com/read/177613/9444029
c memory1.c
#include
#include
#include
#define A_MEGABYTE (1024 * 1024)
int main() {
char *some_memory;
int megabyte = A_MEGABYTE;
int exit_code = EXIT_FAILURE;
www.eeworm.com/read/177613/9444030
c memory6.c
#include
#define ONE_K (1024)
int main()
{
char *some_memory;
int exit_code = EXIT_FAILURE;
some_memory = (char *)malloc(ONE_K);
if (some_memory != NULL) {
free(s