代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/147766/5721177
flash2 ld.sys.big.flash2
OUTPUT_FORMAT("elf32-bigmips")
OUTPUT_ARCH(mips)
ENTRY(XferToRam)
SECTIONS
{
. = 0xBF000000;
.got : {*(.got)}
.reset : {
xfer.o
}
kernel_location_start = 0x80100000;
. = 0x80400000;
www.eeworm.com/read/143130/5759125
c memp.c
/*
* Copyright (c) 2001, Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted
www.eeworm.com/read/136821/5851200
h custom-linux-ipaq-g++.h
/**********************************************************************
** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
**
** This file is part of the Qtopia Environment.
**
** This fil
www.eeworm.com/read/136821/5851235
h custom-linux-cassiopeia-g++.h
/**********************************************************************
** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
**
** This file is part of the Qtopia Environment.
**
** This fil
www.eeworm.com/read/136571/5869622
h mem_align.h
#ifndef _MEM_ALIGN_H_
#define _MEM_ALIGN_H_
#include "../portab.h"
void *xvid_malloc(size_t size, uint8_t alignment);
void xvid_free(void *mem_ptr);
#endif /* _MEM_ALIGN_H_ */
www.eeworm.com/read/134479/5892413
br vout_brook1d.br
#include
kernel void foo (float a, float b, float4 c,
float d[10], vout []float e) {
e = a+b;
push(e);
if (round(fmod( (indexof a).x,2))!=1) {
e = 2;
push (e);
}
}
www.eeworm.com/read/128531/5987759
makefile
# File: drivers/scsi/sym53c8xx_2/Makefile
# Makefile for the NCR/SYMBIOS/LSI 53C8XX PCI SCSI controllers driver.
list-multi := sym53c8xx_2.o
sym53c8xx_2-objs := sym_fw.o sym_glue.o sym_hipd.o sym_mal
www.eeworm.com/read/127781/5995060
flash2 ld.sys.big.flash2
OUTPUT_FORMAT("elf32-bigmips")
OUTPUT_ARCH(mips)
ENTRY(XferToRam)
SECTIONS
{
. = 0xBF000000;
.got : {*(.got)}
.reset : {
xfer.o
}
kernel_location_start = 0x80100000;
. = 0x80400000;
www.eeworm.com/read/127781/5998991
makefile
# File: drivers/sym53c8xx/Makefile
# Makefile for the NCR/SYMBIOS/LSI 53C8XX PCI SCSI controllers driver.
list-multi := sym53c8xx_2.o
sym53c8xx_2-objs := sym_fw.o sym_glue.o sym_hipd.o sym_malloc.o s
www.eeworm.com/read/127087/6007421
c strdup.c
#include "port_before.h"
#include
#include "port_after.h"
#ifndef NEED_STRDUP
int __bind_strdup_unneeded;
#else
char *
strdup(const char *src) {
char *dst = malloc(strlen(src) + 1);
i