代码搜索:alloc
找到约 10,000 项符合「alloc」的源代码
代码结果 10,000
www.eeworm.com/read/295689/8145675
c alloc.c
#include "c.h"
#define ALLOCSIZE 64*1024
struct block {
struct block *next;
char *limit;
char *avail;
};
union align {
long l;
char *p;
double d;
int (*f) ARGS((
www.eeworm.com/read/393928/8254997
h alloc.h
www.eeworm.com/read/392440/8342365
h alloc.h
www.eeworm.com/read/174213/9602062
h alloc.h
/*
* Copyright (c) 1996-1997
* Silicon Graphics Computer Systems, Inc.
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby gra
www.eeworm.com/read/174213/9602220
pthread_alloc
/*
* Copyright (c) 1996
* Silicon Graphics Computer Systems, Inc.
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted
www.eeworm.com/read/369090/9662766
h alloc.h
www.eeworm.com/read/369090/9663067
h alloc.h
www.eeworm.com/read/173137/9671464
h alloc.h
#ifndef MP_ALLOC_H
#define MP_ALLOC_H
/*
* mpatrol
* A library for controlling and tracing dynamic memory allocations.
* Copyright (C) 1997-2002 Graeme S. Roy
*
* This l
www.eeworm.com/read/173137/9671529
c alloc.c
/*
* mpatrol
* A library for controlling and tracing dynamic memory allocations.
* Copyright (C) 1997-2002 Graeme S. Roy
*
* This library is free software; you can redistr
www.eeworm.com/read/172772/9691514
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