代码搜索:alloc
找到约 10,000 项符合「alloc」的源代码
代码结果 10,000
www.eeworm.com/read/470693/1463353
c 920410-1.c
int alloc_float(f)
float f;
{ union
{
float f;
int i;
}
u;
u.f=f;
return u.i&~1;
}
float c_float(int obj)
{ union
{
float f;
int i;
} u;
u.i=obj;
www.eeworm.com/read/467962/1494625
txt file1-o.txt
#include
#include
#include
#include
#include
#include
#include "dsp16-io.h"
int main(int argc, char *argv[])
{
char h
www.eeworm.com/read/464631/1526230
cpp bzip2decoder.cpp
// BZip2Decoder.cpp
#include "StdAfx.h"
extern "C"
{
#include "../../../C/Alloc.h"
}
#include "../../Common/Defs.h"
#include "BZip2Crc.h"
#include "BZip2Decoder.h"
#include "Mtf8.h"
www.eeworm.com/read/249482/4450278
dat funtc282b.dat
#include
#include
#include
int main(void)
{
char *string1 = "1234567890";
char *string2 = "123DC8";
int length;
length = strspn(string1, string2)
www.eeworm.com/read/249482/4450647
dat funtc269b.dat
#include
#include
#include
int main(void)
{
char *string1 = "1234567890";
char *string2 = "747DC8";
int length;
length = strcspn(string1, string2
www.eeworm.com/read/247871/4472714
cpp dllexports.cpp
// DLLExports.cpp
#include "StdAfx.h"
#include "Common/MyInitGuid.h"
#include "Common/ComTry.h"
#ifdef _WIN32
#include "Common/Alloc.h"
#endif
#include "BZip2Encoder.h"
#include "BZip2De
www.eeworm.com/read/247871/4472718
cpp bzip2decoder.cpp
// BZip2Decoder.cpp
#include "StdAfx.h"
#include "BZip2Decoder.h"
#include "../../../Common/Alloc.h"
#include "../../../Common/Defs.h"
#include "../BWT/Mtf8.h"
#include "BZip2CRC.h"
nam
www.eeworm.com/read/240162/4582212
c new3.c
// { dg-do run }
// GROUPS passed operator-new
#include
#include
#include
int pass = 0;
void *operator new(size_t sz) throw (std::bad_alloc) {
void *p;
pass = 1;
www.eeworm.com/read/240162/4582529
c p755.c
// { dg-do run }
// It checks to see if you can define your own global new operator.
// prms-id: 755
#include
extern "C" void _exit(int);
void* operator new(size_t sz) throw (std::bad_alloc)
www.eeworm.com/read/240162/4589260
c 920410-1.c
int alloc_float(f)
float f;
{ union
{
float f;
int i;
}
u;
u.f=f;
return u.i&~1;
}
float c_float(int obj)
{ union
{
float f;
int i;
} u;
u.i=obj;