代码搜索:alloc
找到约 10,000 项符合「alloc」的源代码
代码结果 10,000
www.eeworm.com/read/149476/5699022
h branchcoder.h
// BranchCoder.h
#ifndef __BRANCH_CODER_H
#define __BRANCH_CODER_H
#include "Common/MyCom.h"
#include "Common/Types.h"
#include "Common/Alloc.h"
#include "../../ICoder.h"
class CBranchC
www.eeworm.com/read/145165/5747436
xmap fat.xmap
# Link map of start
# Unreferenced symbols:
_addr$4 (sdram_test.c )
_k$8 (flexcan_test.c )
_i (flexcan_test.c )
(alloc.c ) [whole file]
(printf.c ) [whole file]
# .sdram
# .ipsb
www.eeworm.com/read/139804/5797010
c ext.c
#include "ne2000.h"
#include "ne2k.h"
unsigned int PoolNumber=0;
long ticks=0x00; /* replace with a better timeout method, like wait() */
void idle()
{
;
}
packet_buffer *alloc_
www.eeworm.com/read/138727/5814682
h branchcoder.h
// BranchCoder.h
#ifndef __BRANCH_CODER_H
#define __BRANCH_CODER_H
#include "Common/MyCom.h"
#include "Common/Types.h"
#include "Common/Alloc.h"
#include "../../ICoder.h"
class CBranchC
www.eeworm.com/read/131315/5934247
makefile
# @(#)Makefile 1.8 (Berkeley) 6/8/93
DIR= papers/kernmalloc
SRCS= kernmalloc.t appendix.t
MACROS= -ms
paper.ps: ${SRCS} alloc.fig usage.tbl
${SOELIM} ${SRCS} | ${TBL} | ${PIC} | ${EQN} | ${GRIND} |
www.eeworm.com/read/111692/6153657
h branchcoder.h
// BranchCoder.h
#ifndef __BRANCH_CODER_H
#define __BRANCH_CODER_H
#include "Common/MyCom.h"
#include "Common/Types.h"
#include "Common/Alloc.h"
#include "../../ICoder.h"
class CBranchC
www.eeworm.com/read/101082/6242310
c _ll_move.c
#ifdef lint
static char *sccsid = "@(#)_ll_move.c 4.1 (ULTRIX) 7/2/90";
#endif lint
#include "curses.ext"
extern struct line *_line_alloc();
/*
* _ll_move positions the cursor at position (row,co
www.eeworm.com/read/101082/6248837
c xalloc.c
#ifdef lint
static char *sccsid = "@(#)xalloc.c 4.1 (ULTRIX) 7/17/90";
#endif
# include "stdio.h"
/*
xalloc/xfree based on alloc/free in C library at one time.
Also xfreeall() frees all memory all
www.eeworm.com/read/101082/6250658
c misc.c
#include
#include "defs"
char * copys(s)
register char *s;
{
register char *t;
char *k;
ptr calloc();
for(t=s; *t++ ; );
if( (k = calloc( t-s , sizeof(char))) == NULL)
fatal("Cannot alloc
www.eeworm.com/read/100285/6271820
c type.c
#include
#include
#include
#include "extern.h"
/* malloc + error check */
void *
mm_alloc(size_t size)
{
void *ptr = malloc(size);
if (ptr == NULL)
{
fprintf