代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/325392/13209308
c gsm_create.c
/*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
www.eeworm.com/read/325167/13221363
c multi_dec.c
/************************************************************************
* *
* multi_dec.c Test opendivx decoding by several
www.eeworm.com/read/138638/13227503
c a_client.c
/*
** A program that uses the less error-prone memory allocator.
*/
#include "alloc.h"
void
function()
{
int *new_memory;
/*
** Get space for a bunch of integers
*/
new_memory = MA
www.eeworm.com/read/239517/13274582
c multi_dec.c
/************************************************************************
* *
* multi_dec.c Test opendivx decoding by several
www.eeworm.com/read/137531/13314958
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/238907/13315195
makefile
L_TARGET := lib.a
L_OBJS := ctype.o checksum.o string.o strlib.o vsprintf.o printf.o malloc.o memory.o
include $(TOPDIR)/Rules.make
www.eeworm.com/read/137370/13325665
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/321262/13410057
c 6-4.c
#include /* Support all standards */
#include /* malloc support */
#include /* Memory locking functions */
#define BUFFER 2048
void ma
www.eeworm.com/read/320816/13417883
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/317237/13507132
cpp 一元稀疏多项式计算器.cpp
#include
#include
#define OK 1;
#define READ(I) while (((I)=getchar())=='\n'); //读入合法字符
typedef int status;
typedef struct PolyNode
{
float coef;
int expn;
s