代码搜索:shift
找到约 10,000 项符合「shift」的源代码
代码结果 10,000
www.eeworm.com/read/407473/11418910
obj bcd shift.obj
www.eeworm.com/read/403922/11504082
html spldoublylinkedlist.shift.html
Shifts a node from the beginning of the doubly linked list
www.eeworm.com/read/403013/11524082
cpp shift-prec.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/402476/11534294
v test_shift.v
`timescale 1ps/1ps
module test_shift;
reg ena,clk,shifttype;
reg [4:0] shamt;
reg [31:0] setvalue;
wire [31:0] result;
shift u1(ena,clk,setvalue,shifttype,shamt,result);
always
begin #50 clk=~clk
www.eeworm.com/read/402476/11534311
v shift2.v
//此段代码是由一个我们编写的一段C++代码生成,而且代码中的逻辑表达式经过我们化简算法得到化简
module <mark>shift</mark>2(flag,din,shamt,A,B,<mark>shift</mark>zero);//快速移位寄存器,可以做到只有8级的门电路的延时
input flag,din;//输入控制信号,flag表示是左移或是右移,din表示移走后的那位补0还是补1
input [4:0] shamt;//移位字段, ...
www.eeworm.com/read/402476/11534318
rar shift2.rar
www.eeworm.com/read/402359/11536644
c bn_shift.c
/* crypto/bn/bn_shift.c */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
www.eeworm.com/read/402018/11543730
vhd shift_add.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
entity shift_add is
port(indata:in std_logic_vector(10 downto 0);
clk:in std_logic;
add_en: in std_logic;
www.eeworm.com/read/402018/11544073
vhd shift8.vhd
library ieee;
use ieee.std_logic_1164.all;
entity shift8 is
port(a,clk1,clr1:in std_logic;
b:out std_logic);
end shift8;
architecture rtl of shift8 is
component dff4
port(clk,clr,d:in std_