代码搜索:bug

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

代码结果 10,000
www.eeworm.com/read/190666/5178827

c bug25.c

foo (a) { __builtin_ffs (a); }
www.eeworm.com/read/186901/5229498

php decode_bug.php

www.eeworm.com/read/185663/5237003

dsp bug2.dsp

# Microsoft Developer Studio Project File - Name="bug2" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Console
www.eeworm.com/read/185663/5237006

dsp bug1.dsp

# Microsoft Developer Studio Project File - Name="bug1" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Console
www.eeworm.com/read/179911/5299882

txt bug-list.txt

Bug List 21 January 1999 Michael Elizabeth Chastain, - If a variable has a value of "m" in the previous .config file, and a type of bool in the Config script, then all the in
www.eeworm.com/read/179153/5309698

t sort_bug.t

#!/usr/bin/perl -w # Test to see if we've worked around some wacky sort/threading bug # See [rt.cpan.org 6782] BEGIN { if( $ENV{PERL_CORE} ) { chdir 't'; @INC = ('../lib', 'lib')
www.eeworm.com/read/178760/5313568

c bug-1376320.c

/* bug-1376320.c copy signedness while replacing operands */ #include static void testSign(void) { signed long l; l = 3; l -= 5ul; ASSERT(l < 0); }
www.eeworm.com/read/178760/5313572

c bug-920866.c

/* replace optimized parameter tree returned by decorateType */ #include char foo(char c) { return c; } void testReplaceParameterTree(void) { ASSERT(foo (0 ? 1 : 2) == 2); }
www.eeworm.com/read/178760/5313573

c bug1065458.c

/* bug1065458.c */ #include unsigned short f() { return 0xff00; } unsigned short g() { return f() ? 1 : 0; } void test_1065458(void) { ASSERT( 1 == g() ); }
www.eeworm.com/read/178760/5313574

c bug-460000.c

/* bug 460000 */ #include int func( int a ) { return a; } int x = -1024; void testByteShift(void) { ASSERT(func( x >> 8 ) == -4); ASSERT(func( x / 256 ) == -4); } void tes