代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/223339/14644793
cpp algo0217.cpp
void difference(SLinkList &space, int &S) { // 算法2.17
// 依次输入集合A和B的元素,在一维数组space中建立表示集合(A-B)∪(B-A)
// 的静态链表, S为头指针。假设备用空间足够大,space[0].cur为头指针。
int i, j, k, m, n, p, r;
ElemType b;
Init
www.eeworm.com/read/122603/14679888
c solicit.c
#include "stdhead.h"
#include "solicit.h"
#include "clilib.h"
#include "parse.h"
struct DHCP_MESSAGE * create_solicit_message (char *interface_name)
{
struct DHCP_MESSAGE * dhcp_message_ptr = mal
www.eeworm.com/read/219502/14878427
cpp algo0217.cpp
void difference(SLinkList &space, int &S) { // 算法2.17
// 依次输入集合A和B的元素,在一维数组space中建立表示集合(A-B)∪(B-A)
// 的静态链表, S为头指针。假设备用空间足够大,space[0].cur为头指针。
int i, j, k, m, n, p, r;
ElemType b;
Init
www.eeworm.com/read/116285/14979720
cpp main.cpp
///////////// "..\lnk\nucleus.lnk"
#include "Malloc.h"
#include
extern "C" int init_main_guts(void);
char * t,*t1,*t2,*t3;
char g_data[1024*64];
void main()
{
// init_main_guts(
www.eeworm.com/read/208856/15234301
cpp algo0217.cpp
void difference(SLinkList &space, int &S) { // 算法2.17
// 依次输入集合A和B的元素,在一维数组space中建立表示集合(A-B)∪(B-A)
// 的静态链表, S为头指针。假设备用空间足够大,space[0].cur为头指针。
int i, j, k, m, n, p, r;
ElemType b;
Init
www.eeworm.com/read/205734/15308573
c misc.c
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef HAVE_STDLIB_H
#include
#endif
#include "misc.h"
#include "logging.h"
/**
* ntfs_calloc
*
* Return a pointer to the allocated me
www.eeworm.com/read/171934/5391049
h su_strlst.h
/*
* This file is part of the Sofia-SIP package
*
* Copyright (C) 2006 Nokia Corporation.
*
* Contact: Pekka Pessi
*
* This library is free software; you can redistribut
www.eeworm.com/read/167185/5462073
c allocsp.c
allocsp(p_p_block,n) /* allocate a short pointer */
int n;
short **p_p_block;
{
/*
assume a 2 byte 16 bit short
program calls malloc to establish storage for a block of n shorts
p_block is a point
www.eeworm.com/read/167185/5462075
c alloccp.c
alloccp(p_p_block,n) /* allocate a char pointer */
int n;
char **p_p_block;
{
/*
assume an 1 byte 8 bit char
program calls malloc to establish storage for a block of n char
p_block is a pointer t
www.eeworm.com/read/167185/5462076
c allocdp.c
allocdp(p_p_block,n) /* allocate a double pointer */
int n;
double **p_p_block;
{
/*
assume an 8 byte 64 bit double
program calls malloc to establish storage for a block of n doubles
p_block is