代码搜索:如何学习 FREE?
找到约 10,000 项符合「如何学习 FREE?」的源代码
代码结果 10,000
www.eeworm.com/read/465911/7048822
dll free.dll
www.eeworm.com/read/199841/7097774
c free.c
#include "nxlib.h"
int
XFree (void *data)
{
Xfree (data);
return 1;
}
www.eeworm.com/read/189342/7115028
c free.c
#include
#include
void main(void)
{
int *int_values;
int i;
if ((int_values = malloc(100 * sizeof(int))) == NULL)
printf("Error allocating the array\n
www.eeworm.com/read/189342/7115361
cpp no_free.cpp
#include
void main(void)
{
char *pointer;
do {
pointer = new char[10000];
if (pointer)
cout
www.eeworm.com/read/118158/7133782
bmp free.bmp
www.eeworm.com/read/140797/7146867
c free.c
/*
* free.c
*
* Very simple linked-list based malloc()/free().
*/
#include
#include "malloc.h"
static struct free_arena_header *
__free_block(struct free_arena_header *ah)
{
struct
www.eeworm.com/read/140797/7147049
c free.c
/*
* free.c
*
* Very simple linked-list based malloc()/free().
*/
#include
#include "malloc.h"
static struct free_arena_header *
__free_block(struct free_arena_header *ah)
{
struct
www.eeworm.com/read/219035/7147258
dll free.dll
www.eeworm.com/read/219035/7147260
c free.c
#include "mex.h"
#include "utils.h"
void mexFunction(int nOut, mxArray *pOut[],
int nIn, const mxArray *pIn[])
{
mxArray *address, *data;
if (!mxIsClass(pIn[0], "pointer"))
mex
www.eeworm.com/read/219035/7147269
m free.m
% FREE release memory
%
% FREE(P) release memory occupied by pointer P
%
% See also MALLOC, @POINTER\POINTER
%
% Copyright 2004 Nikolai Yu. Zolotykh