代码搜索:Allocation
找到约 5,034 项符合「Allocation」的源代码
代码结果 5,034
www.eeworm.com/read/148696/12442179
cpp no_free.cpp
#include
void main(void)
{
char *pointer;
do
{
pointer = new char[10000];
if (pointer)
cout
www.eeworm.com/read/131795/14126214
dat funtc292b.dat
#include
#include
int main(void)
{
printf("Changing allocation with sbrk()
");
printf("Before sbrk() call: %lu bytes free
",(unsigned long) coreleft());
sbrk(1000
www.eeworm.com/read/131795/14126864
dat funtc96b.dat
#include
#include
int main(void)
{
char *ptr;
printf("Changing allocation with brk()
");
ptr = malloc(1);
printf("Before brk() call: %lu bytes free
", corele
www.eeworm.com/read/131639/14134779
cpp nrutil.cpp
//nrutil.cpp
#include "StdAfx.h"
#include
#include
#include
//报告错误
void nrerror(char *error_text)
{
printf("Numerical Recipes run-time error...\n");
printf
www.eeworm.com/read/131467/14144443
cpp nrutil.cpp
//nrutil.cpp
//#include "StdAfx.h"
#include
#include
#include
//报告错误
void nrerror(char *error_text)
{
printf("Numerical Recipes run-time error...\n");
prin
www.eeworm.com/read/130866/14171735
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/130553/14186900
c strat.c
/*
** strat.c 10-5-91 Robert Mashlan, public domain
**
** Interface functions to DOS 3.0+ set allocation strategy
** and get allocation strategy functions via int 21h,
** function 58h.
www.eeworm.com/read/129163/14261512
cpp nrutil.cpp
//nrutil.cpp
#include "StdAfx.h"
#include
#include
#include
//报告错误
void nrerror(char *error_text)
{
printf("Numerical Recipes run-time error...\n");
printf
www.eeworm.com/read/128628/14285828
cpp cus_newd.cpp
#include
#include
class loc
{
int longitude, latitude;
public:
loc(void) {} // Used to construct temporaries
loc (int lg, int lt)
www.eeworm.com/read/128628/14287622
cpp new_far.cpp
#include
void main(void)
{
char far *pointer;
do
{
pointer = new far char[10000];
if (pointer)
cout