代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/177981/9424663
c memory.c
/*----------------------------------------------------------------------------*/
/* memory.c - memory management routines for sga code */
/*----------------------------------
www.eeworm.com/read/177839/9430863
cpp fangwei.cpp
// FangWei.cpp: implementation of the CFangWei class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "fagnwei1.h"
#include "FangWei.h"
#
www.eeworm.com/read/177615/9443988
c checker.c
#include
#include
int main()
{
char *ptr = (char *) malloc(1024);
char ch;
/* Uninitialized read */
ch = ptr[0];
/* Write beyond the block */
ptr[1024]
www.eeworm.com/read/373595/9448993
c stdnet.c
/* Implementation of standard 2 layer networks */
#include "defs.h"
#include "ind.h"
#include "stdnet.h"
#include "genback.h"
char IndStdOptStr[40]="B:W:E:b:\0";
char NetStdOptStr[40]="\0";
int
www.eeworm.com/read/373595/9449010
c back.c
/* Implementation of backpropagation algorithm */
#include "defs.h"
#include "back.h"
#include "ind.h"
/* Parameter Handling */
#define DEFLEARNRATE 1.0
#define DEFIMPULSE 0.0
#define DEFINITWEIGH
www.eeworm.com/read/373100/9475216
cpp summit_h.cpp
#include "stdio.h"
#include "conio.h"
#include "malloc.h"
#include "string.h"
typedef struct{
unsigned int weight;
unsigned int parent,lchild,rchild;
}HTNode,*HuffmanTree;
typede
www.eeworm.com/read/373012/9479547
makefile
# $Id: Makefile,v 1.15 2006/02/25 15:00:23 geuzaine Exp $
#
# Copyright (C) 1997-2006 P. Dular, C. Geuzaine
#
# This program is free software; you can redistribute it and/or modify
# it under the term
www.eeworm.com/read/176864/9480864
c decode.c
#include
#include
#include
#include
#include
#include
#include "config.h"
#include "sim.h"
#define GLOBAL 1
#include "global.h
www.eeworm.com/read/176730/9485918
c checker.c
#include
#include
int main()
{
char *ptr = (char *) malloc(1024);
char ch;
/* Uninitialized read */
ch = ptr[0];
/* Write beyond the block */
ptr[1024]