代码搜索:arithmetic

找到约 7,844 项符合「arithmetic」的源代码

代码结果 7,844
www.eeworm.com/read/221021/14779669

eqn ds18b20.fit.eqn

-- Copyright (C) 1991-2005 Altera Corporation -- Your use of Altera Corporation's design tools, logic functions -- and other software and tools, and its AMPP partner logic -- functions, and any o
www.eeworm.com/read/120853/14785345

dat asslandat40.dat

算术左移指令SAL(Shift <mark>Arithmetic</mark> Left) 指令格式:SAL OPRD1,COUNT 其中OPRD1、COUNT与指令SHL相同。本指令与SHL的功能也完全相同,这是因为逻辑左移指令与算术左移指令所要完成的操作是一样的。如果 SAL将OPRD1的最高位移至CF,改变了原来的CF值,则溢出标志位OF=1,表示移位的前后的操作数不同具有倍增的关系。因而SAL可用于带 ...
www.eeworm.com/read/120853/14785987

dat asslandat76.dat

算术左移指令SAL(Shift <mark>Arithmetic</mark> Left) 指令格式:SAL OPRD1,COUNT 指令功能: 其中OPRD1、COUNT与指令SHL相同。本指令与SHL的功能也完全相同,这是因为逻辑左移指令与算术左移指令所要完成的操作是一样的。如果 SAL将OPRD1的最高位移至CF,改变了原来的CF值,则溢出标志位OF=1,表示移位的前后的操作数不同具有倍增的关系。因 ...
www.eeworm.com/read/210234/15203209

transcript

# Reading C:/Modeltech_xe/tcl/vsim/pref.tcl # do f5_tw.fdo # ** Warning: (vlib-34) Library already exists at "work". # Model Technology ModelSim XE II vcom 5.7g Compiler 2003.10 Oct 13 2003 # --
www.eeworm.com/read/206291/15297012

c dft.c

/* dft.c - N-point DFT of length-L real-valued signal */ #include /* complex arithmetic */ void dtftr(); /* DTFT's over a f
www.eeworm.com/read/206291/15297016

c dtft.c

/* dtft.c - DTFT of length-L signal at a single frequency w */ #include /* complex arithmetic */ complex dtft(L, x, w) /* u
www.eeworm.com/read/168845/5432359

hpp arith2.hpp

/* Boost interval/arith2.hpp template implementation file * * This header provides some auxiliary arithmetic * functions: fmod, sqrt, square, pov, inverse and * a multi-interval division. *
www.eeworm.com/read/168845/5434135

rst negate.rst

.. Metafunctions/Arithmetic Operations//negate |60 negate ====== Synopsis -------- .. parsed-literal:: template< typename T > struct negate {
www.eeworm.com/read/474980/6798736

cce bn-led.cce

Warning[000] D:\work\test\BN-LED\BN-LED.C 3 : Spelling of #include file "C:\HT-PIC\INCLUDE\delay.c" does not match actual name Warning[000] D:\work\test\BN-LED\BN-LED.C 196 : unused variable definiti
www.eeworm.com/read/395344/8182804

java exception2.java

//捕获算术异常Arithmetic Exception public class Exception2 { public static void main(String args[]) { try { int x, y; x=15; y=0; System.out.println(x/y);//注意!!! System.out.pr