代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/375190/2725863
h leak_detector.h
#define GC_DEBUG
#include "gc.h"
#define malloc(n) GC_MALLOC(n)
#define calloc(m,n) GC_MALLOC((m)*(n))
#define free(p) GC_FREE(p)
#define realloc(p,n) GC_REALLOC((p),(n))
#undef strdup
#define strdup(
www.eeworm.com/read/145180/12746341
readme
YAMD, Yet Another Malloc Debugger
By Nate Eldredge,
Overview
--------
YAMD is Yet Another Malloc Debugger. It's a package to help in
finding bugs related to dynamic memory allo
www.eeworm.com/read/232130/4705315
def win16.def
NAME MALLOC2
DESCRIPTION 'C++ Malloc Demo Chapter 2 (c)1993-1995 Microsoft Corp'
EXETYPE WINDOWS
STUB 'WINSTUB.EXE'
CODE PRELOAD DISCARDABLE
DATA
www.eeworm.com/read/163821/5509076
h heap.h
/*
* libc/stdlib/malloc/heap.h -- heap allocator used for malloc
*
* Copyright (C) 2002 NEC Corporation
* Copyright (C) 2002 Miles Bader
*
* This file is subject to the terms
www.eeworm.com/read/405754/2285223
c memalloc.c
/*
# proc: datadup - mallocs new space and copies supplied data into it, see also
# proc: ../image/imageops.c imagedup
# proc: malloc_char - allocates (malloc) a char of specified size n
# p
www.eeworm.com/read/304657/3793990
h leak_detector.h
#define GC_DEBUG
#include "gc.h"
#define malloc(n) GC_MALLOC(n)
#define calloc(m,n) GC_MALLOC((m)*(n))
#define free(p) GC_FREE(p)
#define realloc(p,n) GC_REALLOC((p),(n))
#define CHECK_LEAKS() GC_gcol
www.eeworm.com/read/186676/8918775
c heap.c
/******************************************************************************
*
* Copyright (c) 2003 Gerhard W. Gruber
*
* PROJECT: pICE
* $Source: /cvsroot/pice/pice/module/heap.c,v $
* $Revi
www.eeworm.com/read/177471/9451253
txt 调试过程中问题.txt
1 定义显存:使用全局数组定义可以正常工作。
U32 frameBuffer1[SCR_YSIZE][SCR_XSIZE/32];
使用malloc分配内存不能正常工作;
U32 (*frameBuffer1)[SCR_XSIZE/32];
if((U32)frameBuffer1==0)
{
frameBuffer1=(unsigne
www.eeworm.com/read/170484/9803749
c heap.c
/******************************************************************************
*
* Copyright (c) 2003 Gerhard W. Gruber
*
* PROJECT: pICE
* $Source: /cvsroot/pice/pice/module/heap.c,v $
* $Revi
www.eeworm.com/read/144627/12779689
c lrn_directq.c
#ifdef PGRL_NO_FA
#include
#include
#include
#include
#include "lrn_DirectQ.h"
#include "gaussian.h"
#include "misc.h"
int Episodes_Per_Para