代码搜索:alloc
找到约 10,000 项符合「alloc」的源代码
代码结果 10,000
www.eeworm.com/read/176347/9502507
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/176347/9502520
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/176347/9502527
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/371958/9528694
asm alloc.asm
.PB main
#init the heap
LQI $R1,3
INT 7
#allocate memory, place address in $R20
LQI $R2,20
LQI $R1,0
INT 7
MOV $R20,$R3
MOV $R2,$R20
LQI $R1,20
INT 0
LQI $R2,10
LQI $R1,16
INT 0
www.eeworm.com/read/371958/9528699
run alloc.run
www.eeworm.com/read/371958/9528854
asm alloc.asm
.PB main
#init the heap
LQI $R1,3
INT 7
#allocate memory, place address in $R20
LQI $R2,20
LQI $R1,0
INT 7
MOV $R20,$R3
MOV $R2,$R20
LQI $R1,20
INT 0
LQI $R2,10
LQI $R1,16
INT 0
www.eeworm.com/read/371958/9528857
run alloc.run
www.eeworm.com/read/175783/9533114
c alloc.c
/***************************************************************************
* *
* db.*
www.eeworm.com/read/371500/9551759
c alloc.c
#include "db.h"
/* Allocate & initialize a DB structure, and all the buffers it needs */
DB *
_db_alloc(int namelen)
{
DB *db;
/* Use calloc, to init structure t
www.eeworm.com/read/366300/9821546
h alloc.h
/*******dynamic memory allocation**********************/
complex *CMPLX_Vector(nh)
/* Allocates a complex vector with range [0...nh-1] */
int nh;
{
complex *v;
v=(complex *)malloc((unsigned)