代码搜索:bug

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

代码结果 10,000
www.eeworm.com/read/178760/5313613

c bug1409955.c

/* bug1409955.c */ #include void WriteToXData(char* buffer) { (void)buffer; } void test_push_pop(void) { char a; xdata char* p; char d[5]; d[0] = 0
www.eeworm.com/read/178760/5313614

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/178760/5313615

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/178760/5313616

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/178760/5313618

c bug-136564.c

/* bug-136564.c loop induction */ #include volatile unsigned char p; unsigned char i_result[3]; void foo (void) { unsigned char i; unsigned char u; static unsigned char c =
www.eeworm.com/read/178760/5313619

c bug-499644.c

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

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/178760/5313626

c bug-905492.c

/* bug-905492.c the standard guarantees left-to-right evaluation, if the first operand is unequal 0 (resp. 0), the second isn't evaluated. */ #include char a; char inc_a(char c)
www.eeworm.com/read/178760/5313627

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/178760/5313630

c bug-868103.c

/** Bug 868103 tests. storage1: near, far, code, storage2: near, far, */ #ifndef STORAGE1 #define STORAGE1 {storage1} #endif #ifndef STORAGE2 #define STORAGE2 {storage2} #endif #include