代码搜索:alloc
找到约 10,000 项符合「alloc」的源代码
代码结果 10,000
www.eeworm.com/read/183395/5256261
c newheap.c
#include
void _NewHeap(void *start, void *end)
{
CELL_HDR *new = start;
new->next = __FreeList;
__FreeList = new;
new->size = NEW_SIZE(start, end);
new->EndAddr = end;
#
www.eeworm.com/read/183001/5260081
c common.c
#include "postgres_fe.h"
#include "extern.h"
/* Return value is zero-filled. */
char *
pgtypes_alloc(long size)
{
char *new = (char *) calloc(1L, size);
if (!new)
errno = ENOMEM;
return (ne
www.eeworm.com/read/182103/5270625
c cp.c
/*
* cp.c
*
* MPC8xx CPM RISC Communication Processor routines.
*
* Based on code (alloc860.c in eth_comm port) by
* Jay Monkman (jmonkman@frasca.com),
* which, in turn, is based on code by
*
www.eeworm.com/read/182103/5270768
c cp.c
/*
* cp.c
*
* MPC8xx CPM RISC Communication Processor routines.
*
* Based on code (alloc860.c in eth_comm port) by
* Jay Monkman (jmonkman@frasca.com),
* which, in turn, is based on code by
*
www.eeworm.com/read/179911/5293245
c dma.c
/* $Id: dma.c,v 1.1 2000/02/18 00:24:30 ralf Exp $
*
* Dynamic DMA mapping support.
*
* On RM200 there is no hardware dynamic DMA address translation,
* so consistent alloc/free are merely page a
www.eeworm.com/read/176663/5335621
h lzmadecoder.h
// LZMA/Decoder.h
#ifndef __LZMA_DECODER_H
#define __LZMA_DECODER_H
#include "../../../Common/MyCom.h"
#include "../../../Common/Alloc.h"
#include "../../ICoder.h"
#include "../LZ/LZOutWindow.h"
#in
www.eeworm.com/read/176663/5335624
cpp lzxdecoder.cpp
// LzxDecoder.cpp
#include "StdAfx.h"
#include "LzxDecoder.h"
#include "Common/Defs.h"
#include "Common/Alloc.h"
#include "Windows/Defs.h"
namespace NCompress {
namespace NLzx {
const int kLenIdN
www.eeworm.com/read/176663/5335838
makefile
PROG=../../../bin/Formats/split.so
LOCAL_FLAGS=
MY_WINDOWS=
include ../../../makefile.machine
LOCAL_SHARED=$(LINK_SHARED)
LIBS=$(LOCAL_LIBS)
OBJS = \
../../../Common/Alloc.o \
../../../Common/MyW
www.eeworm.com/read/172774/5382090
c newheap.c
#include
void _NewHeap(void *start, void *end)
{
CELL_HDR *new = start;
new->next = __FreeList;
__FreeList = new;
new->size = NEW_SIZE(start, end);
new->EndAddr = end;
#
www.eeworm.com/read/350097/3128147
c dma.c
/* $Id: dma.c,v 1.1 2000/02/18 00:24:30 ralf Exp $
*
* Dynamic DMA mapping support.
*
* On RM200 there is no hardware dynamic DMA address translation,
* so consistent alloc/free are merely page a