代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/408999/11362055
mac malloc.mac
INCLUDE PROLOG.H
_CC1:
PUBLIC _malloc
_malloc:
MOV BX,2
ADD BX,SP
MOV BX,[BX]
PUSH BX ;
MOV BX,0
PUSH BX ;
CALL _Ualloc
ADD SP,4
RET
EXTRN _Ualloc:NEAR
INCLUDE EPILOG.H
www.eeworm.com/read/263454/11362209
c malloc.c
#include
#include
#include
#include
#include
#include
void *MALLOC(size_t nbytes, char *msg )
{ /* allocates space -- or exits
www.eeworm.com/read/408999/11362314
c malloc.c
www.eeworm.com/read/408460/11387545
h malloc.h
/***
*malloc.h - declarations and definitions for memory allocation functions
*
* Copyright (c) 1985-1990, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Contains the function declar
www.eeworm.com/read/406786/11435642
c malloc.c
/*
* malloc.c --- a general purpose kernel memory allocator for Linux.
*
* Written by Theodore Ts'o (tytso@mit.edu), 11/29/91
*
* This routine is written to be as fast as possible, so that it
*
www.eeworm.com/read/406613/11439059
c malloc.c
#include
#include
void main(void)
{
char *string;
int *int_values;
float *float_values;
if ((string = (char *) malloc(50)))
printf("Successfully alloc
www.eeworm.com/read/402163/11542044
h malloc.h
www.eeworm.com/read/400742/11569650
c malloc.c
/*
* malloc.c --- a general purpose kernel memory allocator for Linux.
*
* Written by Theodore Ts'o (tytso@mit.edu), 11/29/91
*
* This routine is written to be as fast as possible, so that it
* can be
www.eeworm.com/read/348129/11610180
c malloc.c
www.eeworm.com/read/158283/11628450
test malloc.test
# 2001 September 15
#
# The author disclaims copyright to this source code. In place of
# a legal notice, here is a blessing:
#
# May you do good and not evil.
# May you find forgiveness for yo