代码搜索:Carry
找到约 8,060 项符合「Carry」的源代码
代码结果 8,060
www.eeworm.com/read/244126/12885773
h words.h
#ifndef CRYPTOPP_WORDS_H
#define CRYPTOPP_WORDS_H
#include "misc.h"
NAMESPACE_BEGIN(CryptoPP)
inline unsigned int CountWords(const word *X, unsigned int N)
{
while (N && X[N-1]==0)
N--
www.eeworm.com/read/142001/12973050
inc macros.inc
;========================================================================
; FILE: macros.inc
;
; contains useful macro definitions
;
;======================================================
www.eeworm.com/read/327101/13099418
h words.h
#ifndef CRYPTOPP_WORDS_H
#define CRYPTOPP_WORDS_H
#include "misc.h"
NAMESPACE_BEGIN(CryptoPP)
inline unsigned int CountWords(const word *X, unsigned int N)
{
while (N && X[N-1]==0)
N--
www.eeworm.com/read/325327/13212133
txt 所有运算.txt
#include
#include
#include
#define MAX 1000
void reverse(char *p)
{//逆序存放
int i=(int)strlen(p),j;
char temp;
for(j=0;j
www.eeworm.com/read/324454/13262390
v dpll_2kcount.v
module DPLL_2KCOUNT(se,reset,k,kclock,carry,borrow);
output carry,borrow;
input[3:0] k;
input se,reset,kclock;
reg[19:0] out;
reg[19:0] mo;
always @(k)
begin
case(k)
4'b0001:mo
www.eeworm.com/read/324454/13262467
bak dpll_2kcount.v.bak
module DPLL_2KCOUNT(se,reset,k,kclock,carry,borrow);
output carry,borrow;
input[3:0] k;
input se,reset,kclock;
reg[19:0] out;
reg[19:0] mo;
always @(k)
begin
case(k)
4'b0001:mo
www.eeworm.com/read/324454/13262471
txt dpll_2kcount.txt
module DPLL_2KCOUNT(sel,reset,k,kclock,carry,borrow,mode);
output carry,borrow;
input[3:0] mode;
input sel,reset,kclock;
reg carry,borrow;
reg[19:0] out;
reg[19:0] mo;
reg carry,borrow;
al
www.eeworm.com/read/136879/13356384
cpp hugeint1.cpp
// Fig. 8.8: hugeint1.cpp
// Member and friend function definitions for class HugeInt
#include
#include "hugeint1.h"
// Conversion constructor
HugeInt::HugeInt( long val )
{
in
www.eeworm.com/read/136573/13371439
c pi_fft.c
/*
---- calculation of PI(= 3.14159...) using FFT ----
by T.Ooura, ver. LG1.1.2-MP1.5a Sep. 2001.
This is a test program to estimate the performance of
the FFT routines: fft*g.c.
Example compila
www.eeworm.com/read/314901/13556058
cpp bigint.cpp
#include"iostream.h"
#include"stdlib.h"
#include"time.h"
#include"math.h"
#include"string.h"
#define MAXLEN 40
class BigInt
{
public:
int Sign;
int