代码搜索:alloc
找到约 10,000 项符合「alloc」的源代码
代码结果 10,000
www.eeworm.com/read/155108/5629424
alloc_3
12
0 0 0 4 0 0
0 1 3 5 1 0
0 2 5 7 1 1
0 3 9 10 1 3
0 4 15 4 3 4
0 5 31 5 3 5
0 6 63 6 3 6
0 7 127 7 3 7
0 8 255 8 3 8
0 9 511 9 3 9
0 10 1023 10 3 10
0 11 2047 11 3 11
0 12 4095 12 3 12
www.eeworm.com/read/155108/5629431
alloc_1
30
0 0 0 4 0 0
0 1 3 5 1 0
0 2 7 3 3 2
0 3 15 4 3 4
0 4 31 5 3 5
0 5 63 6 3 6
0 6 127 7 3 7
0 7 255 8 3 8
0 8 511 9 3 9
0 9 1023 10 3 10
0 10 2047 11 3 11
0 11 4095 12 3 12
0 12 8191 13 3
www.eeworm.com/read/155108/5629435
alloc_4
30
0 0 0 4 0 0
0 1 3 5 1 0
0 2 5 7 1 1
0 3 7 3 3 2
0 4 9 10 1 3
0 5 15 4 3 4
0 6 31 5 3 5
0 7 63 6 3 6
0 8 127 7 3 7
0 9 255 8 3 8
0 10 511 9 3 9
0 11 1023 10 3 10
0 12 2047 11 3 11
0 13
www.eeworm.com/read/155108/5629441
alloc_2
8
0 0 0 4 0 0
0 1 3 5 1 0
0 2 5 7 1 1
0 3 9 10 1 3
0 4 15 4 3 4
0 5 31 5 3 5
0 6 63 6 3 6
0 7 127 7 3 7
0 8 255 8 3 8
0 9 511 9 3 9
0 10 1023 10 3 10
0 11 2047 11 3 11
0 12 4095 12 3 12
www.eeworm.com/read/474901/6797283
h alloc.h
// Onur G. Guleryuz 1995, 1996, 1997,
// University of Illinois at Urbana-Champaign,
// Princeton University,
// Polytechnic University.
#if !defined(_ALLOC_)
#define _ALLOC_
float **alloc
www.eeworm.com/read/474901/6797291
c alloc.c
// Onur G. Guleryuz 1995, 1996, 1997,
// University of Illinois at Urbana-Champaign,
// Princeton University,
// Polytechnic University.
#include
#include "macros.h"
float **alloc
www.eeworm.com/read/474431/6809309
h alloc.h
/*
** Definitions for a less error-prone memory allocator.
*/
#include
#define malloc DON'T CALL malloc DIRECTLY!
#define MALLOC(num,type) (type *)alloc( (num) * sizeof(type) )
ex
www.eeworm.com/read/474431/6809312
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/474177/6815912
h alloc.h
www.eeworm.com/read/473712/6833833