代码搜索:malloc

找到约 10,000 项符合「malloc」的源代码

代码结果 10,000
www.eeworm.com/read/100077/15886186

h smap.h

/* * @(#)smap.h 1.1 30/08/88 16:07:36 agc * * Copyright 1988, Joypace Ltd., UK. This product is "careware". * If you find it useful, I suggest that you send what you think * it is worth to the ch
www.eeworm.com/read/189298/8477408

c invcreat.c

/* ** Function to create a SUBASSEMBLY inventory record. */ #include #include #include "inventor.h" Invrec * create_subassy_record( int n_parts ) { Invrec *new_rec;
www.eeworm.com/read/189298/8477411

c alloc.c

/* ** Implementation for a less error-prone memory allocator. */ #include #include "alloc.h" #undef malloc void * alloc( size_t size ) { void *new_mem; /* ** Ask for the re
www.eeworm.com/read/289991/8513541

txt 很好的粒子群算法优化程序.txt

#include #include "..\\Utils.h" #include "..\\TSPDataSet.h" #include "PSO.h" static void PSO_MendCycle( TParticle *Particle { int tLooper1, tLooper2; int HasFound;
www.eeworm.com/read/432730/8579647

c jmemnobs.c

//////////////////////////////////////////////////////////////////////// // // Note : this file is included as part of the Smaller Animals Software // JpegFile package. Though this file has not bee
www.eeworm.com/read/187486/8636193

cpp spherical.cpp

// Spherical.cpp: implementation of the Spherical class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "Spherical.h" #include
www.eeworm.com/read/431398/8678856

c eta_source.c

/* * Copyright (c) 2001-2005 Falk Feddersen * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the F
www.eeworm.com/read/287166/8713802

h z_zone.h

// Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // // $Id: z_zone.h,v 1.9 2001/03/13 22:14:20 stroggonmeth Exp $ // // Copyrigh
www.eeworm.com/read/386670/8732835

cpp 栈.cpp

#include #include #include #define STACK_INIT_SIZE 100 #define STACKINCREMENT 10 typedef struct{ int *base; int *top; int stacksize; }Sqstack; /
www.eeworm.com/read/386022/8771199

txt revers matrix.txt

#include #include #include void main() { int n; printf("请输入你所求解的逆矩阵的阶数:n="); scanf("%d",&n); float choose_the_main(float **a,float *b,int k,int n); void