代码搜索:alloc

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

代码结果 10,000
www.eeworm.com/read/482278/1289253

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/482278/1289326

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/481348/1297210

c alloc.c

/*++ Copyright (c) 1997-2000 Microsoft Corporation. All rights reserved. Module Name: alloc.c Abstract: This file handles the creation/destruction of all FSDMGR data struc
www.eeworm.com/read/480930/1311267

c alloc.c

/* * linux/fs/hpfs/alloc.c * * Mikulas Patocka (mikulas@artax.karlin.mff.cuni.cz), 1998-1999 * * HPFS bitmap operations */ #include "hpfs_fn.h" /* * Check if a sector is allocated in bitma
www.eeworm.com/read/479224/1333945

h alloc.h

// Backward-compat support -*- C++ -*- // Copyright (C) 2001, 2003, 2004 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you
www.eeworm.com/read/479224/1334164

h alloc.h

// Backward-compat support -*- C++ -*- // Copyright (C) 2001, 2003, 2004 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can
www.eeworm.com/read/479151/1343072

c alloc.c

/* * linux/fs/hpfs/alloc.c * * Mikulas Patocka (mikulas@artax.karlin.mff.cuni.cz), 1998-1999 * * HPFS bitmap operations */ #include "hpfs_fn.h" /* * Check if a sector is allocated in bitma
www.eeworm.com/read/478549/1351393

c alloc.c

#include #include #define MAGIC (Header *)1111 typedef long Align; union header { struct { union header *ptr; unsigned size; } s;
www.eeworm.com/read/477840/1357742

h _alloc.h

typedef struct cell_hdr { struct cell_hdr *next; void *EndAddr; int size; #ifdef DEBUG unsigned int InUse; #endif } CELL_HDR; extern CELL_HDR *__FreeList; #define _BND 1 #define
www.eeworm.com/read/477840/1357745

c alloc.c

#include #include #include #include /* #define DEBUG */ #ifdef DEBUG #define calloc xcalloc #define malloc xmalloc #define realloc xrealloc #d