代码搜索:alloc

找到约 10,000 项符合「alloc」的源代码

代码结果 10,000
www.eeworm.com/read/249482/4450490

dat funtc68b.dat

read #include #include #include #include #include #include int main(void) { void *buf; int handle, bytes; buf = m
www.eeworm.com/read/249482/4450532

dat funtc292.dat

函数名称: sbrk 函数原型: void *sbrk(int incr) 函数功能: 为数据段增加内存 函数返回: 函数说明: incr 数据段增加的字节数据 所属文件:
www.eeworm.com/read/247871/4472708

cpp bzip2encoder.cpp

// BZip2Encoder.cpp #include "StdAfx.h" #include "../../../Common/Alloc.h" #include "BZip2Encoder.h" #include "../BWT/Mtf8.h" #include "BZip2CRC.h" namespace NCompress { namespace NBZ
www.eeworm.com/read/240162/4583367

c eb133a.c

// { dg-do assemble } // Gives ICE 109 // From: Klaus-Georg Adams // Reported against EGCS snaps 98/06/28. int main() { try { } catch (std::bad_alloc)
www.eeworm.com/read/233448/4676186

c eb133a.c

// { dg-do assemble } // Gives ICE 109 // From: Klaus-Georg Adams // Reported against EGCS snaps 98/06/28. int main() { try { } catch (std::bad_alloc)
www.eeworm.com/read/229812/4738853

c new09.c

#include "fail.h" #pragma inline_depth(0); void *save; size_t save_size; unsigned location; void *alloc( size_t s ) { save_size = s; return save = operator new( s ); } struct X
www.eeworm.com/read/209211/4981499

c reg.c

#include "gc.h" void addsplits(void); Reg* rega(void) { Reg *r; r = freer; if(r == R) { r = alloc(sizeof(*r)); } else freer = r->link; *r = zreg; return r; } int rcmp(const void *a1, co
www.eeworm.com/read/209211/4982638

makefile

ROOT=.. include ../Make.config LIB=libgui.a OFILES=\ alloc.$O\ cload.$O\ draw.$O\ load.$O\ screen.$O default: $(LIB) $(LIB): $(OFILES) $(AR) r $(LIB) $(OFILES) $(RANLIB) $(LIB) %.$O: %.c $(
www.eeworm.com/read/209211/4983354

c reg.c

#include "gc.h" void addsplits(void); Reg* rega(void) { Reg *r; r = freer; if(r == R) { r = alloc(sizeof(*r)); } else freer = r->link; *r = zreg; return r; } int rcmp(const void *a1, co
www.eeworm.com/read/204140/5033472

cpp bzip2encoder.cpp

// BZip2Encoder.cpp #include "StdAfx.h" #include "BZip2Encoder.h" #include "../../../Common/Alloc.h" #include "../BWT/Mtf8.h" #include "BZip2CRC.h" namespace NCompress { namespace NBZip