代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/242277/13082172
cpp add.cpp
#include
#include
struct Polynomial
{
float Coefficient;
int Exponent;
Polynomial *Next;
};
Polynomial *CreatPoly (int m)
{
int i;
Polynomial *f
www.eeworm.com/read/240662/13208148
c 6-8.c
void *malloc(long numbytes) {
/* Holds where we are looking in memory */
void *current_location;
/* This is the same as current_location, but cast to a
* memory_control_block
*/
struct m
www.eeworm.com/read/138142/13257558
c main.c
/*++
Module Name:
Main.c
Note: it's ugly!
--*/
#include
#include
#include
#include
www.eeworm.com/read/324261/13276779
h ring_buffer.h
/**
* \file ring_buffer.h
* \brief Ring (circular) buffer API.
*
* A ring (circular) buffer implementation for use in the
* serial port driver.
*
* To avoid the use of malloc to dynamica
www.eeworm.com/read/321262/13410055
c 6-8.c
void *malloc(long numbytes) {
/* Holds where we are looking in memory */
void *current_location;
/* This is the same as current_location, but cast to a
* memory_control_block
*/
struct m
www.eeworm.com/read/151104/5686195
c misc.c
/*
* misc.c
*
* This is a collection of several routines from gzip-1.0.3
* adapted for Linux.
*
* malloc by Hannu Savolainen 1993 and Matthias Urlichs 1994
*
* Modified for ARM Linux by Russ
www.eeworm.com/read/150726/5689651
h stringto.h
//CString to other
long StrToLng(CString String)
{
long temp;
char* tempChar=NULL;
char* ptrChar;
int Stringlen;
Stringlen=String.GetLength();
tempChar=
(TCHAR*)malloc(Stringlen*size
www.eeworm.com/read/147766/5721901
c misc.c
/*
* misc.c
*
* This is a collection of several routines from gzip-1.0.3
* adapted for Linux.
*
* malloc by Hannu Savolainen 1993 and Matthias Urlichs 1994
*
* Modified for ARM Linux by Russ
www.eeworm.com/read/144212/5752772
c xmalloc.c
/* xmalloc.c -- safe versions of malloc and realloc */
/* Copyright (C) 1991 Free Software Foundation, Inc.
This file is part of GNU Readline, a library for reading lines
of text with interact
www.eeworm.com/read/144212/5752829
c xmalloc.c
/* xmalloc.c -- safe versions of malloc and realloc */
/* Copyright (C) 1991 Free Software Foundation, Inc.
This file is part of GNU Readline, a library for reading lines
of text with interact