代码搜索:shift
找到约 10,000 项符合「shift」的源代码
代码结果 10,000
www.eeworm.com/read/136752/13363068
h misc.h
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE
www.eeworm.com/read/322448/13379881
c example_281xadcseq_ovdtest.c
//###########################################################################
//
// FILE: Example_281xAdcSeq_ovdTest.c
//
// TITLE: DSP281x ADC Seq Override mode Test.
//
// ASSUMPTIONS:
//
www.eeworm.com/read/136192/13388426
~pas main.~pas
unit main;
{受同学之邀,要我写个盗传奇密码的程序,以前从没有搞过,不知从何下手
知道原理是键盘记录这方面的,所以写了个很简单的键盘记录器罢了,并不
是什么密码截取器.
(以TEST.EXE为例)本程序是通过几个时钟控件,一个用来监视}
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Co
www.eeworm.com/read/136192/13388461
pas main.pas
unit main;
{受同学之邀,要我写个盗传奇密码的程序,以前从没有搞过,不知从何下手知道原理是键盘
记录这方面的,所以写了个很简单的键盘记录器罢了,并不是什么密码截取器.
(以TEST.EXE为例)本程序是通过几个时钟控件,一个用来监视TEST.EXE进程是否存在,如果
存在,就马上记录所有键盘操作,别外一个用来监视,TEST.EXE是否退出,如果退出了,就马上
停止监视.
有一 ...
www.eeworm.com/read/321827/13397051
c xfdnorm.c
/* _FDnorm function -- IEEE 754 version */
#include "wctype.h"
#include "xmath.h"
_STD_BEGIN
_CRTIMP2 short _FDnorm(unsigned short *ps)
{ /* normalize float fraction */
short xchar;
unsign
www.eeworm.com/read/321827/13397095
c rotl.c
/***
*rotl.c - rotate an unsigned integer left
*
* Copyright (c) 1989-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
* defines _rotl() - performs a rotate left on an u
www.eeworm.com/read/321827/13397654
c rotr.c
/***
*rotr.c - rotate an unsigned integer right
*
* Copyright (c) 1989-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
* defines _rotr() - performs a rotate right on an
www.eeworm.com/read/321625/13401590
c bigdigits.c
/* $Id: bigdigits.c $ */
/******************** SHORT COPYRIGHT NOTICE**************************
This source code is part of the BigDigits multiple-precision
arithmetic library Version 2.1 origi
www.eeworm.com/read/321160/13411620
m ss_mlsrs.m
function [seq]=ss_mlsrs(connections);
% [seq]=ss_mlsrs(connections)
% SS_MLSRS generates the maximal length shift register sequence when the
% shift register connections are given as input to th
www.eeworm.com/read/320097/13432925
cpp bm.cpp
//字符串匹配算法
//BM(Boyer Moore)算法,区分大小写
#include
#include
#define pat_length 34 //模式字符串长度
int compare(unsigned char *t, unsigned char *p);
int shift_compare(int match);
in