代码搜索:bug
找到约 10,000 项符合「bug」的源代码
代码结果 10,000
www.eeworm.com/read/178760/5313673
c bug-221100.c
/* bug-221100.c
If test_index is char, loses high bit when indexes table
workaround is to use [(unsigned int) test_index]
*/
#include
#define ARRAY_SIZE 130
#ifdef SDCC_pic16
www.eeworm.com/read/178760/5313675
c bug-927659.c
/* bug-927659.c
double processing resp. reversing of params
*/
#include
#include
#include
unsigned char
foo(unsigned char a, ...) REENTRANT
{
va_list argptr;
www.eeworm.com/read/178760/5313677
c bug-435214.c
/* bug-435214.c
*/
#include
unsigned long divide(long a)
{
return a/512ul;
}
void
testDivide(void)
{
ASSERT(divide(1300) == 2);
ASSERT(divide(0x12345678) == 0x91A2B);
}
www.eeworm.com/read/178760/5313679
c bug-227710.c
/* bug-227710.c
*/
#include
static unsigned char dataset[] = {
1, 2, 3, 4
};
unsigned char *p;
struct {
unsigned char index;
} s;
unsigned char
foo(void)
{
// BUG,
www.eeworm.com/read/178760/5313680
c bug-477927.c
/* Tests an uninitalised variable bug.
t is not initalised in all paths in the do loop, causing the while
conditional to fail unpredictably.
Doesn't actually test, is really an example.
*/
www.eeworm.com/read/178760/5313726
c bug-971834.c
/* bug-971834.c
Life Range problem with
- uninitialized variable
- loop
*/
#ifdef TEST1
unsigned char ttt = 2;
short foo (void)
{
unsigned short a;
a |= ttt; /* WARNING(SDCC) */
r
www.eeworm.com/read/178760/5313727
c bug-895992.c
/* bug-895992.c
Life Range problem with
- uninitialized variable
- loop
- conditional block
*/
#ifdef TEST1
char p0;
void wait (void);
void foo(void)
{
unsigned char number;
unsi
www.eeworm.com/read/177972/5319134
snote bug.testnotepattern.snote
BugNo=30082
FixApproach=My Trick approach.
Status=My status
#SomeField=
www.eeworm.com/read/173141/5378542
sql bug3498.sql
-- Track 3498
--
-- test case for a post commit queued during an nested user transaction. This
-- is ugly but works. This case happens if the autoincrement field expansion
-- when the first insert c
www.eeworm.com/read/173141/5378925
java bug4356.java
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.lang.bug4356
Copyright 2001, 2004 The Apache Software Foundation or its licensors, as applicable.
Licensed under the Apache Lic