代码搜索:shift

找到约 10,000 项符合「shift」的源代码

代码结果 10,000
www.eeworm.com/read/264194/11326069

vhd shift.vhd

library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_arith.all; entity shift is port(cp,en,D,CT,c,k,x:in std_logic; q3,q2,q1,q0:out std_logic); end shift; architecture HL of shift is
www.eeworm.com/read/263812/11340719

vbw shift.vbw

frmButtons = 22, 22, 272, 284, , 0, 0, 250, 262, C
www.eeworm.com/read/263812/11340722

vbp shift.vbp

Type=Exe Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#C:\WINDOWS\SYSTEM\STDOLE2.TLB#OLE Automation Form=frmButtons.frm Startup="frmButtons" HelpFile="" Command32="" Name="Project1"
www.eeworm.com/read/408889/11366149

m shift.m

% Program 5-4 % shift.m % % Shift the contents of the register. % % Programmed by M.Okita and H.Harada % function [outregi] = shift(inregi,shiftr,shiftu) % ********************************
www.eeworm.com/read/401271/11560168

c shift.c

www.eeworm.com/read/401090/11564860

vhd shift.vhd

-- ************************************************************** -- File: shift8.vhd -- -- Purpose: 8-bit shift register with parallel load -- -- Created: 10/13/99 JLJ -- -- Revised: 11
www.eeworm.com/read/400005/11586330

vhd shift.vhd

library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; entity shift is port(shifted:in std_logic_vector(8 downto 0); sh_en:in std_logic; load:in std_logic; c:in std_
www.eeworm.com/read/262192/11601787

m shift.m

% Program 5-4 % shift.m % % Shift the contents of the register. % % Programmed by M.Okita and H.Harada % function [outregi] = shift(inregi,shiftr,shiftu) % ********************************
www.eeworm.com/read/347945/11623739

m shift.m

function F = shift(F,shifttol) % Author Johan L鰂berg % $Id: shift.m,v 1.4 2005/02/04 10:10:27 johanl Exp $ for i = 1:size(F.clauses,2) switch F.clauses{i}.type case {1,9}
www.eeworm.com/read/158297/11627098

m shift.m

function y = shift(x,b); % This function performs the shift encryption function % y = x + b mod 26 % We assume that x is a text string and b is a number % The result is kept in text representation