代码搜索:Carry

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

代码结果 8,060
www.eeworm.com/read/103725/6212618

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--; return
www.eeworm.com/read/101082/6244260

c madd.c

/* @(#)madd.c 4.1 12/25/82 */ #include m_add(a,b,c) struct mint *a,*b,*c; { int carry,i; int x; short *cval; cval=xalloc(a->len+1,"m_add"); carry=0; for(i=0;ilen;i++) { x=carry+a->va
www.eeworm.com/read/172424/6301645

h math32f.h

// ************************************************* // 32 bit basic floating point math operations // Copyright (c) B Knudsen Data, Norway, 2000 - 2005 // *****************************************
www.eeworm.com/read/172424/6301684

h math24f.h

// ************************************************* // 24 bit basic floating point math operations // Copyright (c) B Knudsen Data, Norway, 2000 - 2005 // *****************************************
www.eeworm.com/read/172424/6301707

h math16f.h

// ************************************************* // 16 bit basic floating point math operations // Copyright (c) B Knudsen Data, Norway, 2000 - 2005 // *****************************************
www.eeworm.com/read/493568/6395513

syr cpu.syr

Release 7.1.04i - xst H.42 Copyright (c) 1995-2005 Xilinx, Inc. All rights reserved. --> Parameter TMPDIR set to __projnav CPU : 0.00 / 0.17 s | Elapsed : 0.00 / 0.00 s --> Parameter xsthdpdir set
www.eeworm.com/read/493568/6395582

log __projnav.log

Project Navigator Auto-Make Log File ------------------------------------- Started process "Synthesize". ========================================================================= *
www.eeworm.com/read/488546/6489257

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/486654/6524354

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/486736/6526272

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