代码搜索:Numeric
找到约 7,754 项符合「Numeric」的源代码
代码结果 7,754
www.eeworm.com/read/15127/432800
cpp zbrent.cpp
#include
#include
#include "nr.h"
using namespace std;
DP NR::zbrent(DP func(const DP), const DP x1, const DP x2, const DP tol)
{
const int ITMAX=100;
const DP EPS=numeric_
www.eeworm.com/read/17546/737928
vhd keybcontrol.vhd
LIBRARY ieee;
USE ieee.std_logic_1164.all;
--USE ieee.numeric_std.all;
ENTITY KeybControl IS
port
(
CLOCK18 : IN STD_LOGIC;
PS2_DAT : INOUT STD_LOGIC;
PS2_CLK : INOUT STD_LOGIC;
www.eeworm.com/read/17704/754521
vhd dan_2a03.vhd
--Dan Leach
--2A03 for NES
--Created 1/03/06
--Initial revision
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use work.Pack_2A03.all;
entity NES_2A03 is
port (
G
www.eeworm.com/read/17704/754522
vhd danpack.vhd
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.numeric_std.all;
use work.T65_Pack.all;
package Pack_2A03 is
component T65
port(
Mode : in std_logic_vector(1 downto 0); -- "0
www.eeworm.com/read/18421/787124
vhd top.vhd
-- Top2.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.NUMERIC_BIT.all;
use ieee.STD_LOGIC_ARITH.all;
entity TOP is
port(CLK : in std_logic;
www.eeworm.com/read/18588/795260
vhf cnt60.vhf
-- Vhdl model created from schematic J:\eda\Xilinx\virtex2\data\drawing\ftce.sch - Thu Dec 19 18:12:07 2002
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
USE ieee.numeric_std.ALL;
-- synopsys trans
www.eeworm.com/read/18679/799723
vhd top.vhd
-- Top2.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.NUMERIC_BIT.all;
use ieee.STD_LOGIC_ARITH.all;
entity TOP is
port(CLK : in std_logic;
www.eeworm.com/read/37320/1072099
c++
#include
#include
#include
using namespace std;
//创建一个list容器的实例LISTINT,其存放int型数据
typedef list LISTINT;
void main(void)
{
//用LISTINT创建一个名为listOne的list对象
www.eeworm.com/read/479142/1344305
txt config.txt
# sample config file for Java HTML tidy
indent=auto
indent-spaces=2
wrap=72
markup=yes
clean=yes
output-xml=no
input-xml=no
show-warnings=no
numeric-entities=yes
quote-marks=yes
quote-nbsp=yes
quote-
www.eeworm.com/read/476610/1367833
h locale.h
#ifndef __LOCALE
#define __LOCALE
#define LC_ALL 0
#define LC_COLLATE 1
#define LC_CTYPE 2
#define LC_MONETARY 3
#define LC_NUMERIC 4
#define LC_TIME 5
#define NULL 0
struct lconv {
c