代码搜索:zero
找到约 10,000 项符合「zero」的源代码
代码结果 10,000
www.eeworm.com/read/166734/5473013
c paranoia.c
#undef V9
#define NOPAUSE
/* A C version of Kahan's Floating Point Test "Paranoia"
Thos Sumner, UCSF, Feb. 1985
David Gay, BTL, Jan. 1986
This is a rewrite from the Pascal version by
www.eeworm.com/read/165570/5481494
txt expectedoutput.txt
Exception in thread "main" java.lang.ArithmeticException: / by zero
at D.rd(Root.java:89)
at A.ra(Root.java:31)
at B.rb(Root.java:53)
at Root.main(Root.java:9)
www.eeworm.com/read/162614/5524339
a cxg1005.a
-- CXG1005.A
--
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025,
www.eeworm.com/read/162614/5526942
c 990827-1.c
unsigned test(unsigned one , unsigned bit)
{
unsigned val= bit & 1;
unsigned zero= one >> 1;
val++;
return zero + ( val>> 1 );
}
int main()
{
if (test (1,0) != 0)
abort ();
www.eeworm.com/read/162614/5527242
c 20000313-1.c
unsigned int buggy (unsigned int *param)
{
unsigned int accu, zero = 0, borrow;
accu = - *param;
borrow = - (accu > zero);
*param += accu;
return borrow;
}
int main (void)
{
unsigned
www.eeworm.com/read/162614/5530225
c pr11864-1.c
/* PR optimization/11864
* Reporter: Kazumoto Kojima
* Summary: [3.3/3.4 regression] miscompiles zero extension and test
* Description:
* gcc-3.3/3.4 -O2 for sh target may mi
www.eeworm.com/read/162614/5530231
h c99-math.h
#include
extern void abort(void);
#define C99_MATH_TESTS(nan, inf, huge, norm, zero) \
{ \
if (fpclassify (nan) != FP_NAN) \
abort (); \
\
if (fpclassify (inf) !
www.eeworm.com/read/161121/5557024
s ev67-strrchr.s
/*
* arch/alpha/lib/ev67-strrchr.S
* 21264 version by Rick Gorton
*
* Finds length of a 0-terminated string. Optimized for the
* Alpha architecture:
*
* - mem
www.eeworm.com/read/161121/5557041
s ev67-strchr.s
/*
* arch/alpha/lib/ev67-strchr.S
* 21264 version contributed by Rick Gorton
*
* Return the address of a given character within a null-terminated
* string, or nu
www.eeworm.com/read/160427/5570971
java intervalxyzdataset.java
/* ===========================================================
* JFreeChart : a free chart library for the Java(tm) platform
* ===========================================================
*
* (