代码搜索:Allocation
找到约 5,034 项符合「Allocation」的源代码
代码结果 5,034
www.eeworm.com/read/128628/14287712
cpp no_free.cpp
#include
void main(void)
{
char *pointer;
do
{
pointer = new char[10000];
if (pointer)
cout
www.eeworm.com/read/230231/14296364
lst chap17.lst
listing 1
#include
#include
float *get_mem(void)
{
float *p;
p = calloc(100, sizeof(float));
if(!p) {
printf("Allocation Error\n");
exit(1);
}
ret
www.eeworm.com/read/125558/14485090
lst chap17.lst
listing 1
#include
#include
float *get_mem(void)
{
float *p;
p = calloc(100, sizeof(float));
if(!p) {
printf("Allocation Error\n");
exit(1);
}
ret
www.eeworm.com/read/125377/14496096
cpp nrutils.cpp
/*
** File: nrutil.c
*/
#include
#include
#include "nrutils.h"
static char rcsid[] = "Hidden Markov Model";
void nrerror(char *text)
//char *text;
{
//void
www.eeworm.com/read/125192/14507977
txt chap17.txt
listing 1
#include
#include
float *get_mem(void)
{
float *p;
p = calloc(100, sizeof(float));
if(!p) {
printf("Allocation Error\n");
exit(1);
}
ret
www.eeworm.com/read/123453/14631050
h wsfalloc.h
/*
*
* wsfalloc.h
*
* Author: Markku Rossi
*
* Copyright (c) 1999-2000 WAPIT OY LTD.
* All rights reserved.
*
* Fast memory allocation routines with easy cleanup.
*
*/
#ifnd
www.eeworm.com/read/123143/14645565
tlc sffis.tlc
%% $RCSfile: sffis.tlc,v $
%% $Revision: 1.2 $
%% $Date: 1997/12/11 23:11:47 $
%%
%% Murali Yeddanapudi, 14-Nov-1997
%% Copyright (c) 1996-97 by The MathWorks, Inc.
%%
%% Abstract:
%% Tar
www.eeworm.com/read/223144/14654001
cpp 14_1.cpp
//14_1
#include
class Samp{
public:
void Setij(int a, int b){i=a,j=b;}
~Samp(){ cout
www.eeworm.com/read/119982/14814732
cpp cus_newd.cpp
#include
#include
class loc
{
int longitude, latitude;
public:
loc(void) {} // Used to construct temporaries
loc (int lg, int lt)