代码搜索:alloc

找到约 10,000 项符合「alloc」的源代码

代码结果 10,000
www.eeworm.com/read/204140/5033488

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/204140/5033493

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/204140/5033498

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/198657/5083687

h vector.h

#ifndef NTL_vector__H #define NTL_vector__H #include struct _ntl_VectorHeader { long length; long alloc; long init; long fixed; }; union _ntl_AlignedVectorHe
www.eeworm.com/read/189477/5192677

c free.c

#include #include #include void free(void* __block) { __asm__ __volatile__("int $0x28"::"a" (__FREE_NR),"b" (__block)); }
www.eeworm.com/read/176663/5335476

cpp blocksort.cpp

// BlockSort.cpp #include "StdAfx.h" #include "BlockSort.h" #include "Common/Alloc.h" namespace NCompress { static const int kNumHashBytes = 2; static const UInt32 kNumHashValues = 1
www.eeworm.com/read/166734/5473029

h lburg.h

#ifndef BURG_INCLUDED #define BURG_INCLUDED /* iburg.c: */ extern void *alloc(int nbytes); typedef enum { TERM=1, NONTERM } Kind; typedef struct rule *Rule; typedef struct term *Term; struc
www.eeworm.com/read/344017/3212706

c ahbarb.c

#include #include "ahbarb.h" ahbarb *ahbarb_create() { ahbarb *m; m = (ahbarb *) ti_alloc(sizeof(ahbarb)); if (!m) { return 0; } ti_print_err("\ Create ahbarb model
www.eeworm.com/read/344017/3212708

c apbmst.c

#include #include "apbmst.h" apbmst *apbmst_create() { apbmst *m; m = (apbmst *) ti_alloc(sizeof(apbmst)); if (!m) { return 0; } ti_print_err("\ Create apbmst model
www.eeworm.com/read/340665/3283861

filter

#!/bin/sh script=$1 file=$2 # Possibly allow some files to go unchanged. Other # future manipulations are likely. case $file in */alloc_policies.h) cat $file ;; *) sed -f $script $file ;; esac