代码搜索:bug

找到约 10,000 项符合「bug」的源代码

代码结果 10,000
www.eeworm.com/read/125819/6021032

c bug-221168.c

/* bug-221168.c */ #include #ifdef __mcs51 # define XDATA xdata #else # define XDATA #endif XDATA static char x[10][20]; XDATA char * getAddrOfCell(unsigned char y, unsigned char z)
www.eeworm.com/read/125819/6021033

c bug-435068.c

/* bug-435068.c */ #include char c, d; static void testQuestion(void) { volatile char c, d; c = (0x100 & 0x100) ? 4 : 8; // ok d = ((0x100 & 0x100) ? 4 : 8) + 1; AS
www.eeworm.com/read/125819/6021034

c bug-468811.c

/* For some reason an integer operation is run as floating point. Test is to see if it links. */ #include typedef unsigned char UBYTE; typedef unsigned char UINT8; void set_sprite_ti
www.eeworm.com/read/125819/6021036

c bug-499644.c

/* Floats */ #include const float a = 0.0; float f(void) { return a * 5; }
www.eeworm.com/read/125819/6021037

c bug-477835.c

/* Registers not being saved. */ #include /* In the following code BC is assigned a copy of fp, but bc is not saved across the call. */ void fptr(void (*fp)(void)) { int i; for (i
www.eeworm.com/read/125819/6021043

c bug-478094.c

/* Tests a commit problem. */ #include int foo = 16; void f( int x ) { UNUSED(x); } void g(int bar) { int a = 0; int b = 0; while(1) { switch(bar) { case 0:
www.eeworm.com/read/125819/6021047

c bug-223113.c

/* bug-223113.c PENDING */ #include int putch( int Ch ) { return( Ch ); } int puts( char *Str ) { char *Ptr; for( Ptr = Str; *Ptr != '\0'; Ptr++ ) { putch( *Ptr
www.eeworm.com/read/125819/6021052

c bug-467035.c

/* Tests a bug in for loops where b in plot_point is always 1. Stripped down from the gbdk filltest.c */ #include typedef unsigned char UBYTE; UBYTE getpix(UBYTE x, UBYTE y) { UNU
www.eeworm.com/read/125819/6021057

c bug-524697.c

/* Bad addition for adding a length and char[] */ #include typedef struct _Foo { char sz[90]; } Foo; typedef struct _Bar { unsigned int uLen; } Bar; char *getOffset(Foo *pFoo, Bar
www.eeworm.com/read/125819/6021061

c bug-524209.c

/* Problem with casts and warnings. */ #include #include typedef unsigned short UINT16; typedef struct _Class Class; typedef struct _Instance { Class *pClass; } Instance;