代码搜索:alloc
找到约 10,000 项符合「alloc」的源代码
代码结果 10,000
www.eeworm.com/read/136959/13351339
c bitarray.c
/*
** Functions to maintain an arbitrary length array of bits
*/
#include "bitops.h"
char *alloc_bit_array(size_t bits)
{
char *set = calloc((bits + CHAR_BIT - 1) / CHAR_BIT, sizeof(char));
www.eeworm.com/read/310556/13649218
makefile
#ident "@(#)cfront:src/makefile 1.6"
CC = CC
#set $(PATCH) to -DPATCH if using the patch version:
#PATCH=-DPATCH
# set $(PATCH) to nothing if using nm/munch:
PATCH=
CCFLAGS=-O
OFILES = alloc.o dcl.o d
www.eeworm.com/read/149476/5699385
cpp benchmarkdialog.cpp
// BenchmarkDialog.cpp
#include "StdAfx.h"
#include "Common/IntToString.h"
#include "Common/StringToInt.h"
#include "Common/Exception.h"
#include "Common/Alloc.h"
#include "Windows/Thread.h"
www.eeworm.com/read/145165/5747426
xmap simple_eflash2.xmap
# Link map of start
# Unreferenced symbols:
(alloc.c ) [whole file]
# .sdram
# .vector_ram
# .ipsbar
# .ext_sram
# .ext_flash
FFC00000 0000040C .text .text (vectors.s)
www.eeworm.com/read/136812/5861581
c add_radio.c
#ifndef lint
static char sccsid[] = "@(#)add_radio.c 1.1 92/07/30";
#endif
/*
* Name: add_radio.c
*
* Description: Add a radio to a form. Allocates a form radio
* structure using menu_alloc()
www.eeworm.com/read/136812/5861622
c add_field.c
#ifndef lint
static char sccsid[] = "@(#)add_field.c 1.1 92/07/30";
#endif
/*
* Name: add_field.c
*
* Description: Add a field to a form. Allocates a form field
* structure using menu_alloc()
www.eeworm.com/read/123438/6059336
c ialloc.c
/*
* linux/fs/sysv/ialloc.c
*
* minix/bitmap.c
* Copyright (C) 1991, 1992 Linus Torvalds
*
* ext/freelists.c
* Copyright (C) 1992 Remy Card (card@masi.ibp.fr)
*
* xenix/alloc
www.eeworm.com/read/123438/6059343
c balloc.c
/*
* linux/fs/sysv/balloc.c
*
* minix/bitmap.c
* Copyright (C) 1991, 1992 Linus Torvalds
*
* ext/freelists.c
* Copyright (C) 1992 Remy Card (card@masi.ibp.fr)
*
* xenix/alloc
www.eeworm.com/read/120487/6073295
c common.c
#include "postgres_fe.h"
#include "extern.h"
char *
pgtypes_alloc(long size)
{
char *new = (char *) calloc(1L, size);
if (!new)
{
errno = ENOMEM;
return NULL;
}
memset(new, '\0', size)
www.eeworm.com/read/117583/6101399
c vfdcmd.c
/*
vfdcmd.c
Virtual Floppy Disk drive control program (console version)
Copyright (C) 2003 Kenji Kato
*/
#define WIN32_LEAN_AND_MEAN
#define _CRTDBG_MAP_ALLOC
#include
#i