代码搜索:alloc

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

代码结果 10,000
www.eeworm.com/read/180810/9294904

c huffman.c

#include #include #include void input(); int hmin(void); void hinsert(int,int); struct alphabet /*定义list结构体,alph指定字节,freq出现次数 */
www.eeworm.com/read/180601/9301507

c sortlist.c

#include #include #include #include #include void main(int argc, char *argv[]) { DIR *directory_pointer; struct dirent *entry;
www.eeworm.com/read/180601/9301549

c filelist.c

#include #include #include #include #include void main(int argc, char *argv[]) { DIR *directory_pointer; struct dirent *entry;
www.eeworm.com/read/376114/9331038

c sortlist.c

#include #include #include #include #include void main(int argc, char *argv[]) { DIR *directory_pointer; struct dirent *entry;
www.eeworm.com/read/376114/9331129

c filelist.c

#include #include #include #include #include void main(int argc, char *argv[]) { DIR *directory_pointer; struct dirent *entry;
www.eeworm.com/read/366524/9810646

c sortlist.c

#include #include #include #include #include void main(int argc, char *argv[]) { DIR *directory_pointer; struct dirent *entry;
www.eeworm.com/read/366524/9810691

c filelist.c

#include #include #include #include #include void main(int argc, char *argv[]) { DIR *directory_pointer; struct dirent *entry;
www.eeworm.com/read/366195/9825243

cpp recvol.cpp

#include "rar.hpp" #define RECVOL_BUFSIZE 0x800 RecVolumes::RecVolumes() { Buf.Alloc(RECVOL_BUFSIZE*256); memset(SrcFile,0,sizeof(SrcFile)); } RecVolumes::~RecVolumes() { for (int I=0;I
www.eeworm.com/read/169081/9881501

h kfc.h

#ifndef KFC_H #define KFC_H #include "kiss_fft.h" #ifdef __cplusplus extern "C" { #endif /* KFC -- Kiss FFT Cache Not needing to deal with kiss_fft_alloc and a config object may be handy for a lot
www.eeworm.com/read/364932/9886770

c mutex1.c

#include #include struct foo { int f_count; pthread_mutex_t f_lock; /* ... more stuff here ... */ }; struct foo * foo_alloc(void) /* allocate the object */ { s