代码搜索:shift
找到约 10,000 项符合「shift」的源代码
代码结果 10,000
www.eeworm.com/read/18588/796106
vhd shift.vhd
-- File: shift.vhd
--
-- Author: Jennifer Jenkins
-- Philips Semiconductor
-- Purpose: Serial in/serial out 8-bit parallel load/out shift
-- register component definition.
www.eeworm.com/read/492491/1173302
bsf shift.bsf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
www.eeworm.com/read/492491/1173313
cmp shift.cmp
--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
www.eeworm.com/read/492491/1173498
vhd shift.vhd
-- megafunction wizard: %Shift register (RAM-based)%
-- GENERATION: STANDARD
-- VERSION: WM1.0
-- MODULE: altshift_taps
-- ============================================================
-- File
www.eeworm.com/read/491360/1191720
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/490530/1197965
right shift.right
./shift.tests abc d e
./shift.tests d e 123
./shift.tests d e 123
./shift.tests
./shift.tests
./shift.tests
www.eeworm.com/read/490530/1197966
tests shift.tests
if test $# = 0; then
exec "$THIS_SH" $0 abc "d e" 123
fi
echo $0 $1 $2
shift
echo $0 $1 $2
shift 999
echo $0 $1 $2
shift 2
echo $0 $1 $2
shift 2
echo $0 $1 $2
shift
echo $0 $1 $2
www.eeworm.com/read/482278/1289229
c shift.c
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ +
+ shift.c - this file implements bitwise shifting instruc
www.eeworm.com/read/482278/1289303
c shift.c
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ +
+ shift.c - this file implements bitwise shifting instructi
www.eeworm.com/read/471368/1431497
java shift.java
//【习2.19】 循环移位方阵。
//采用一维数组,将数组看成环形。
/*
对于给定的一个数据元素序列,如{0,1,2,3,4},输出如下形式的循环移位方阵:
0 1 2 3 4
1 2 3 4 0
2 3 4 0 1
3 4 0 1 2
4 0 1 2 3
*/
public class Shift
{