代码搜索:arithmetic
找到约 7,844 项符合「arithmetic」的源代码
代码结果 7,844
www.eeworm.com/read/127781/5996173
h multi_arith.h
/* multi_arith.h: multi-precision integer arithmetic functions, needed
to do extended-precision floating point.
(c) 1998 David Huggins-Daines.
Somewhat based on arch/alpha/math-emu/ieee-mat
www.eeworm.com/read/120487/6073592
sql aggregates.sql
--
-- AGGREGATES
--
SELECT avg(four) AS avg_1 FROM onek;
SELECT avg(a) AS avg_32 FROM aggtest WHERE a < 100;
-- In 7.1, avg(float4) is computed using float8 arithmetic.
-- Round the result to 3 dig
www.eeworm.com/read/119864/6081929
c bernum.c
/* This program computes the Bernoulli numbers.
* See radd.c for rational arithmetic.
*/
typedef struct{
double n;
double d;
}fract;
#define PD 44
fract x[PD+1] = {0.0};
fract p[PD+1] = {0.0};
www.eeworm.com/read/110034/6167613
h multi_arith.h
/* multi_arith.h: multi-precision integer arithmetic functions, needed
to do extended-precision floating point.
(c) 1998 David Huggins-Daines.
Somewhat based on arch/alpha/math-emu/ieee-mat
www.eeworm.com/read/102935/6226461
h multi_arith.h
/* multi_arith.h: multi-precision integer arithmetic functions, needed
to do extended-precision floating point.
(c) 1998 David Huggins-Daines.
Somewhat based on arch/alpha/math-emu/ieee-mat
www.eeworm.com/read/494289/6381462
h gf2m4x.h
/*
* MIRACL C++ Headerfile gf2m4x.h
*
* AUTHOR : M. Scott
*
* PURPOSE : Definition of class GF2m4x - Arithmetic over the extension
* field GF(2^4m)
*
* NOTE
www.eeworm.com/read/402476/11534319
v test_logic.v
module test_logic;
reg [31:0] op;
reg clock;
wire [31:0] result;
wire overflow,zero,pn;
arithmetic calca(op,clock,result,overflow,zero,pn);
always begin #25 clock=~clock;end
initial
begin
www.eeworm.com/read/156908/11752808
h gf2m4x.h
/*
* MIRACL C++ Headerfile gf2m4x.h
*
* AUTHOR : M. Scott
*
* PURPOSE : Definition of class GF2m4x - Arithmetic over the extension
* field GF(2^4m)
*
* NOTE