代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/382751/9002968
c os.c
/*
** 2005 November 29
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgivene
www.eeworm.com/read/283498/9015706
asm strsetm.asm
StdGrp group stdlib,stddata
stddata segment para public 'sldata'
stddata ends
;
stdlib segment para public 'slcode'
assume cs:stdgrp
;
extrn sl_malloc:far
;
;
; strsetm- Allocates a
www.eeworm.com/read/382584/9019186
c fillheap.c
#include
#include
void main(void)
{
char *buffer1, *buffer2, *buffer3;
int i, state;
buffer1 = malloc(100);
buffer2 = malloc(200);
buffer3 = malloc(300)
www.eeworm.com/read/382395/9031427
c fillheap.c
#include
#include
void main(void)
{
char *buffer1, *buffer2, *buffer3;
int i, state;
buffer1 = malloc(100);
buffer2 = malloc(200);
buffer3 = malloc(300)
www.eeworm.com/read/381960/9060562
c multi_dec.c
/************************************************************************
* *
* multi_dec.c Test opendivx decoding by several
www.eeworm.com/read/381879/9067807
c 一元稀疏加减.c
//一元稀疏多项式计算器
#include
#include
#define OK 1;
#define READ(I) while (((I)=getchar())=='\n'); //读入合法字符
typedef int status;
typedef struct PolyNode
{
float coef;
www.eeworm.com/read/380940/9120754
c fillheap.c
#include
#include
void main(void)
{
char *buffer1, *buffer2, *buffer3;
int i, state;
buffer1 = malloc(100);
buffer2 = malloc(200);
buffer3 = malloc(300)
www.eeworm.com/read/184026/9125900
cpp xuanke.cpp
#include "xuanke.h"
//--------------------------------------主函数开始------------------------------------------//
int main()
{
records=(jishiben*)malloc(sizeof(jishiben)*SHUZU_SIZE);
if(records==NU
www.eeworm.com/read/183515/9155910
c xmalloc.c
void * xmalloc(size_t size)
{
register uoid * value = malloc(size);
if (value == 0)
err_exit ("virtual memory exhausted");
return value;
}
www.eeworm.com/read/379525/9194221
listing .listing
-rw-r--r-- 1 3 1025 6082 Jul 17 1975 alloc.c
-rw-r--r-- 1 3 1025 2866 Jul 18 1975 clock.c
-rw-r--r-- 1 3 1025 4218 Jul 17 1975 fio.c
-rw-r--