代码搜索:alloc
找到约 10,000 项符合「alloc」的源代码
代码结果 10,000
www.eeworm.com/read/226770/14452941
c alloc_re.c
/* Public domain. */
#include "alloc.h"
#include "byte.h"
int alloc_re(x,m,n)
char **x;
unsigned int m;
unsigned int n;
{
char *y;
y = alloc(n);
if (!y) return 0;
byte_copy(y,m,*x);
allo
www.eeworm.com/read/125782/14463678
h nc_alloc.h
/****************************************************************************
* Copyright (c) 1998 Free Software Foundation, Inc. *
*
www.eeworm.com/read/125782/14464372
c alloc_entry.c
/****************************************************************************
* Copyright (c) 1998-2002,2003 Free Software Foundation, Inc. *
*
www.eeworm.com/read/125782/14464424
c alloc_ttype.c
/****************************************************************************
* Copyright (c) 1999-2002,2003 Free Software Foundation, Inc. *
*
www.eeworm.com/read/124620/14557149
h pthread_alloc.h
/*
* Copyright (c) 1996-1997
* Silicon Graphics Computer Systems, Inc.
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby gra
www.eeworm.com/read/124620/14557167
h stl_alloc.h
/*
* Copyright (c) 1996-1997
* Silicon Graphics Computer Systems, Inc.
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby gra
www.eeworm.com/read/224579/14583017
h stack_alloc.h
/* Copyright (C) 2002 Jean-Marc Valin */
/**
@file stack_alloc.h
@brief Temporary memory allocation on stack
*/
/*
Redistribution and use in source and binary forms, with or without
modifi
www.eeworm.com/read/123658/14618892
c local-alloc.c
/* Allocate registers within a basic block, for GNU compiler.
Copyright (C) 1987, 88, 91, 93, 94, 1995 Free Software Foundation, Inc.
This file is part of GNU CC.
GNU CC is free software; you can
www.eeworm.com/read/121395/14757600
h gen_alloc.h
#ifndef GEN_ALLOC_H
#define GEN_ALLOC_H
#define GEN_ALLOC_typedef(ta,type,field,len,a) \
typedef struct ta { type *field; unsigned int len; unsigned int a; } ta;
#endif
www.eeworm.com/read/121395/14757760
c alloc_re.c
#include "alloc.h"
#include "byte.h"
int alloc_re(char **x,unsigned int m,unsigned int n)
{
char *y;
y = alloc(n);
if (!y) return 0;
byte_copy(y,m,*x);
alloc_free(*x);
*x = y;
return