代码搜索:alloc
找到约 10,000 项符合「alloc」的源代码
代码结果 10,000
www.eeworm.com/read/354329/10364317
h my_alloc.h
/* Copyright (C) 2000 MySQL AB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Fou
www.eeworm.com/read/352714/10522287
c lmm_alloc.c
/*
* lmm_alloc.c
* Modified for use in 15-410 at CMU
* Zachary Anderson(zra)
*/
/*
* Copyright (c) 1995-1996, 1998-1999 University of Utah and the Flux Group.
* All rights reserved.
*
* This
www.eeworm.com/read/277934/10593234
h alloc_exceptions.h
// file: alloc_exception.h
// author: Marc Bumble
// July 11, 2002
// Contains classes related to exceptions
// Copyright (C) 2002 by Marc D. Bumble
// This program is free software; you can redistr
www.eeworm.com/read/351765/10611703
h alloc_util.h
#ifndef ALLOC_UTIL_H
#define ALLOC_UTIL_H
char *G_malloc(int n);
char *G_calloc(int n,int m);
char *G_realloc(char *b,int n);
void G_dealloc(char *b);
double *G_alloc_vector(int n);
double **G_alloc
www.eeworm.com/read/351765/10611713
cpp alloc_util.cpp
/*
* All questions regarding the software should be addressed to
*
* Prof. Charles A. Bouman
* Purdue University
* School of Electrical and Computer Engineering
* 1285 Electri
www.eeworm.com/read/350642/10722238
rc global_alloc.rc
#include "windows.h"
#include "Global_Alloc.h"
MYAPP ICON DISCARDABLE "GENERIC.ICO"
MYAPP MENU DISCARDABLE
BEGIN
POPUP "&File"
BEGIN
MENUITEM "E&xit",
www.eeworm.com/read/350642/10722241
h global_alloc.h
#define IDM_EXIT 100
#define IDM_TEST 200
#define IDM_ABOUT 301
LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM);
LRESULT CALLBACK About (HWND, UINT, WPARAM
www.eeworm.com/read/350642/10722248
mak global_alloc.mak
# Nmake macros for building Windows 32-Bit apps
all: Global~1.exe
# Update the resource if necessary
Global~1.res: Global~1.rc Global~1.h
rc -r -fo Global~1.res Global~1.rc
# Update t
www.eeworm.com/read/350642/10722254
cpp global_alloc.cpp
#include
#include "Global_Alloc.h"
#if defined (WIN32)
#define IS_WIN32 TRUE
#else
#define IS_WIN32 FALSE
#endif
#define IS_NT IS_WIN32 && (BOOL)(GetVersion() < 0x
www.eeworm.com/read/275958/10782451