代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/294069/3920559
cpp henonn.cpp
#include
#include "mex.h"
#ifdef MATLAB_MEX_FILE
#undef malloc
#undef realloc
#undef free
#define malloc mxMalloc
#define realloc mxRealloc
#define free mxFree
#define printf mexPrintf
#endi
www.eeworm.com/read/383940/2609085
c driver.c
#include
int main() {
nesc_app_t na;
na.numVariables = 1;
na.variableNames = (char**)malloc(sizeof(char*));
na.variableTypes = (char**)malloc(sizeof(char*));
na.variableArray = (
www.eeworm.com/read/267656/11169925
cpp doclist.cpp
#include "stdafx.h"
#pragma warning( disable : 4786 )
#include "assert.h"
#include "doclist.h"
void *my_malloc(size_t size)
{
void *ptr;
ptr=(void *)malloc(size);
if(!ptr) {
p
www.eeworm.com/read/391748/8381574
m4 eealloc.m4
# eealloc.m4 serial 1
dnl Copyright (C) 2003 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dn
www.eeworm.com/read/282666/9076995
h misc.h
#ifndef __MISC_H__
#define __MISC_H__
#define MY_PROCESS_ERROR(Condition) if (!(Condition)) goto Exit0;
#define MY_PROCESS_ERROR_WITH_MSG1(Condition, ErrMsg1) \
if (!(Condition))\
www.eeworm.com/read/423577/10546399
m4 eealloc.m4
# eealloc.m4 serial 1
dnl Copyright (C) 2003 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dn
www.eeworm.com/read/147331/5731199
h unsecvars.h
/* Environment variable to be removed for SUID programs. The names are
all stuffed in a single string which means they have to be terminated
with a '\0' explicitly. */
#define UNSECURE_ENVVARS
www.eeworm.com/read/141297/5773509
cc gri_fft.cc
/* -*- c++ -*- */
/*
* Copyright 2003 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the ter
www.eeworm.com/read/136821/5851637
h config.h
#define HAVE_STRPTIME 1
#define CONFIG_DECODERS 1
#define CONFIG_MPEGAUDIO_HP 1
#define CONFIG_NETWORK 1
//#define CONFIG_ZLIB 1
#define HAVE_MALLOC_H 1
#define HAVE_MEMALIGN 1
#define HAVE_LRINTF 1
#
www.eeworm.com/read/167185/5464690
h mtrf.h
/* Header file: mtfr.h */
char *mtrf_malloc();
char *mtrf_realloc();
int mtrf_free();
char *mtrf_strdup();
void mtrf_set_dealloc();
void mtrf_set_verbose();
int mtrf_get_dealloc();
int mtrf_get_verb