代码搜索:alloc
找到约 10,000 项符合「alloc」的源代码
代码结果 10,000
www.eeworm.com/read/464448/1530102
c newheap.c
#include
void _NewHeap(void *start, void *end)
{
CELL_HDR *new;
start = (void *)((unsigned)start & ~(_BND-1));
end = (void *)((unsigned)end & ~(_BND-1));
new = start;
new
www.eeworm.com/read/250243/4433438
c dma.c
/*
* Dynamic DMA mapping support.
*
* We never have any address translations to worry about, so this
* is just alloc/free.
*/
#include
#include
#include
www.eeworm.com/read/247871/4472724
h lzmaencoder.h
// LZMA/Encoder.h
#ifndef __LZMA_ENCODER_H
#define __LZMA_ENCODER_H
#include "../../../Common/MyCom.h"
#include "../../../Common/Alloc.h"
#include "../../ICoder.h"
#include "../LZ/IMatchFind
www.eeworm.com/read/247871/4472729
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/LZOutWindo
www.eeworm.com/read/247871/4472734
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 {
cons
www.eeworm.com/read/237745/4621187
h cdib.h
// cdib.h declaration for Inside Visual C++ CDib class
#ifndef _INSIDE_VISUAL_CPP_CDIB
#define _INSIDE_VISUAL_CPP_CDIB
class CDib : public CObject
{
enum Alloc {noAlloc, crtAlloc, heapAlloc}
www.eeworm.com/read/226030/4788293
c filters.c
/* Copyright 2001,2002,2003 NAH6
* All Rights Reserved
*
* Parts Copyright DoD, Parts Copyright Starium
*
*/
#include "alloc.h"
#include
/*#include "main.h"*/
#include "celpfi
www.eeworm.com/read/222917/4816909
h variant.h
#ifndef VARIANT_H
#define VARIANT_H
#if PHP_WIN32
#define ALLOC_VARIANT(v) (v) = (VARIANT *) emalloc(sizeof(VARIANT)); \
VariantInit(v);
#define FREE_VARIANT(v) VariantClear(v);
www.eeworm.com/read/222917/4816951
h config.h
#if PHP_WIN32
#include "../../../../main/config.w32.h"
#else
#include
#endif
#include
#include "zend.h"
#include "zend_alloc.h"
www.eeworm.com/read/209559/4960382
c dma.c
/*
* Dynamic DMA mapping support.
*
* We never have any address translations to worry about, so this
* is just alloc/free.
*/
#include
#include
#include