代码搜索:alloc
找到约 10,000 项符合「alloc」的源代码
代码结果 10,000
www.eeworm.com/read/238485/13882928
c alloc.c
#include "alloc.h"
#include "error.h"
extern char *malloc();
extern void free();
#define ALIGNMENT 16 /* XXX: assuming that this alignment is enough */
#define SPACE 4096 /* must be multiple of ALIGN
www.eeworm.com/read/151716/5679517
plo alloc.plo
alloc.lo alloc.lo: alloc.c lzo_conf.h ../include/lzoconf.h ../config.h \
h:/mingw/3.3.1/include/limits.h h:/mingw/3.3.1/include/_mingw.h \
h:/mingw/3.3.1/mingw32/include/winx/limitsx.h \
h:/m
www.eeworm.com/read/151716/5679592
c alloc.c
/* alloc.c -- memory allocation
This file is part of the LZO real-time data compression library.
Copyright (C) 1996-2002 Markus Franz Xaver Johannes Oberhumer
All Rights Reserved.
The L
www.eeworm.com/read/148721/5709530
c alloc.c
#include "c.h"
struct block {
struct block *next;
char *limit;
char *avail;
};
union align {
long l;
char *p;
double d;
int (*f)(void);
};
union header {
struct block b;
union a
www.eeworm.com/read/148143/5718124
c alloc.c
/*
* File: alloc.c
* Purpose: generic malloc() and free() engine for dBUG
*
* Notes: 99% of this code stolen/borrowed from the K&R C
* examples.
*
*/
#include "src/include/dbug.
www.eeworm.com/read/147331/5730965
s _alloc.s
; @(#)_alloc.s 1.4 90/10/14 21:57:19, AMD
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Copyright 1989, 1990 Advanced Micro Devices, Inc.
;
; This software is the p
www.eeworm.com/read/147331/5730983
s alloc.s
;
;(#)_alloc.s 1.4 90/10/14 21:57:19, AMD
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Copyright 1989, 1990 Advanced Micro Devices, Inc.
;
; This software is the
www.eeworm.com/read/145991/5741780
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/144216/5752068
alloc reg.alloc
while ($i--) {
foo();
}
exit
PP code if i an int register if i an int but not a
(i.e. can't be register (i.e. can be
implicitly invalidated) implicitly invalidated)
nextstate
www.eeworm.com/read/143132/5758809
c alloc.c
/* memory allocation routines
*
* Adapted from alloc routine in K&R; memory statistics and interrupt
* protection added for use with net package. Must be used in place of
* standard Turbo-C li