代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/148696/12442854
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/233105/14169323
c 单链表2.c
#include
#include
struct node{
int key;
struct node *next;
};
void creat_link(struct node *);
main()
{
struct node *head=NULL;
creat_li
www.eeworm.com/read/130466/14192728
c coeff.c
#include "wm.h"
#include "coeff.h"
double **alloc_coeffs(int cols, int rows) {
double **p;
int i;
p = (double **)malloc(rows * sizeof(double *));
if (!p) {
#ifdef DEBUG
fprintf(stderr, "a
www.eeworm.com/read/129922/14216951
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/129182/14259975
c dl.c
#include "main.h"
void dl_dlgen(dl_t *dl) {
int i, j, k;
int b;
int a;
printf("dl_dlgen\n");
for (i=0; in; i++) {
dl->dl[i] = 0;
printf("%i\n", dl->o[i].n);
if (dl->o[i
www.eeworm.com/read/129182/14259977
c main.c
#include "main.h"
wlWindow gwin;
int quit=0;
int debug;
world_t worl;
ca_t *g_ca; //global ca
cas_t *g_cas;
dfa_t *g_dfa;
dfa_ca_t *g_dc;
pat_t *g_pat;
dl_t *g_dl;
static void run_init_file(cha
www.eeworm.com/read/128628/14288332
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/128559/14291003
c svmpredict.c
#include
#include
#include
#include "mex.h"
#include "svm.h"
#include "svm_model_matlab.h"
struct svm_node *x_space;
void exit_with_help()
{
mexPrintf(
"Usage: [pre
www.eeworm.com/read/230010/14309224
cpp mat_orth.cpp
#include
void mat_transpose (float *, int , int , float *);
void mat_mult (float *, int , int , float *, int , int , float *);
int svd(float *, int , int , float *, float *);
/*mat_or
www.eeworm.com/read/227639/14418785
c 单链表2.c
#include
#include
struct node{
int key;
struct node *next;
};
void creat_link(struct node *);
main()
{
struct node *head=NULL;
creat_li