代码搜索:Carry

找到约 8,060 项符合「Carry」的源代码

代码结果 8,060
www.eeworm.com/read/481966/6633653

cpp 2014.cpp

#include #define CARRY 100000000 class BigInt { private: int getLength(long n) { int len; for(len = 0; n > 0; len++) { n /= 10; } return len; } public: long num[
www.eeworm.com/read/480720/6660377

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/408584/11381059

c in_cksum.c

#include "unp.h" uint16_t in_cksum(uint16_t *addr, int len) { int nleft = len; uint32_t sum = 0; uint16_t *w = addr; uint16_t answer = 0; /* * Our algorithm is simple, using a 32 bit ac
www.eeworm.com/read/406172/11448435

cpp bignumber.cpp

// BigNumber.cpp: implementation of the CBigNumber class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "RSAUtil.h" #include "BigNumber.
www.eeworm.com/read/405708/11458971

sv 02.06.00_example_2-4.sv

/********************************************************************** * Illegal use of variables; SystemVerilog checks that at most one * continuous assignment or one output port is "driving" a va
www.eeworm.com/read/405708/11459105

sv 08.09.00_example_8-10.sv

/********************************************************************** * Polymorphic models with parameterized data types * * Author: Stuart Sutherland * * (c) Copyright 2003, Sutherland HDL, In
www.eeworm.com/read/403098/11522638

txt 新建 文本文档.txt

set near on set exact on set carry on set keycomp on set palette off set optimize on set sysformat off set ansi off messagebox("已是最后一个记录!",48,"信息窗口")
www.eeworm.com/read/261384/11651083

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/258599/11852125

c xp.c

static char rcsid[] = "$Id: H:/drh/idioms/book/RCS/xp.doc,v 1.10 1996/06/26 23:02:01 drh Exp $"; #include #include #include "assert.h" #include "xp.h" #define T XP_T #define
www.eeworm.com/read/154354/11968862

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--