代码搜索:shift
找到约 10,000 项符合「shift」的源代码
代码结果 10,000
www.eeworm.com/read/172724/9695513
vhd barrelshifter.vhd
-------------------------------------------------------------------------------
-- Title : Barrel Shifter (Pure combinational)
-- Project : Barrel Shifter
-------------------------------
www.eeworm.com/read/171518/9747670
vhd shifter.vhd
--****************************************************************************************************
-- Shifter for ARM core
-- Designed by Ruslan Lepetenok
-- Modified 23.01.2003
--************
www.eeworm.com/read/366813/9797000
bas crcmodule.bas
Attribute VB_Name = "CRCmodule"
Option Explicit
Function booleanAND(x As Long, y As Long) As Long
Dim output As Long
Dim i As Integer
Dim temp, temp1 As Integer
output = 0
www.eeworm.com/read/268797/11121347
sh bug-args.sh
#!/usr/bin/bash
# $Id: bug-args.sh.in,v 1.2 2006/12/19 00:39:28 rockyb Exp $
echo First parm is: $1
set a b c d e
shift 2
# At this point we shouldn't have a $5 or a $4
exit 0
www.eeworm.com/read/414255/11122879
cbc
#!/bin/sh
CBROOT=..
CODE=cb.c
A_OUT=a.out
while [ $# -ne 0 ]
do
case $1 in
-o) if [ "$2" = "" ] ; then
echo 2>& "-o requires output filename"
exit 1
fi
A_OUT="$2"
shift
;;
www.eeworm.com/read/414255/11123204
cbc
#!/bin/sh
CBSRC=`dirname "$0"`
CBROOT="$CBSRC/.."
CODE=cb.c
A_OUT=a.out
while [ $# -ne 0 ]
do
case $1 in
-o) if [ "$2" = "" ] ; then
echo 2>& "-o requires output filename"
exit 1
www.eeworm.com/read/268287/11145434
m hz_average3.m
function y=hz_average3(u,acc)
% returns the scalar value for
% avaergae of matrix u
% special case of avergaing 2x2 matrices using righ-shift
N=size(u,1)*size(u,2);
for i=1:N
acc(1) = acc(1) +
www.eeworm.com/read/268287/11145444
m hz_average2.m
function [y,acc]=hz_average2(u,acc)
% returns the scalar value for
% avaergae of matrix u
% special case of avergaing 2x2 matrices using righ-shift
N=size(u,1)*size(u,2);
for i=1:N
acc(1) = acc(1) +
www.eeworm.com/read/267784/11162691
c main.c
//==================================================================================
//预定义包含文件
//==================================================================================
#include