代码搜索:INTEGER
找到约 10,000 项符合「INTEGER」的源代码
代码结果 10,000
www.eeworm.com/read/175643/9538665
h integer.h
#ifndef CRYPTOPP_INTEGER_H
#define CRYPTOPP_INTEGER_H
#include "cryptlib.h"
#include "misc.h"
#include
NAMESPACE_BEGIN(CryptoPP)
/// multiple precision integer and basic arithme
www.eeworm.com/read/175042/9561717
pas integer.pas
program p10_1(input,output,sf);
var
sf:file of integer;
y:integer;
i:integer;
begin
assign(sf,'insfile');
rewrite(sf);
for i:=1 to 180 do
begin
{ y:=sin(i*3.14159/180);}
y:=2*i
www.eeworm.com/read/371177/9563058
cpp integer.cpp
// integer.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#include "integer.h"
#include "modarith.h"
#include "nbtheory.h"
#include "asn.h"
#include "words.h"
#in
www.eeworm.com/read/371177/9563599
h integer.h
#ifndef CRYPTOPP_INTEGER_H
#define CRYPTOPP_INTEGER_H
#include "cryptlib.h"
#include "misc.h"
#include
NAMESPACE_BEGIN(CryptoPP)
/// multiple precision integer and basic arithme
www.eeworm.com/read/365220/9872824
class integer.class
www.eeworm.com/read/363888/9932956
h integer.h
//: C12:Integer.h
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Non-member overloaded operators
#
www.eeworm.com/read/363888/9932970
cpp integer.cpp
//: C12:Integer.cpp {O}
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Implementation of overloaded
www.eeworm.com/read/363596/9943577
c integer.c
#include "fmt.h"
#include "assert.h"
#include "mem.h"
#define T Integer_T
typedef int *T;
T Integer_new(int n) {
T integer;
NEW(integer);
*integer = n;
return integer;
}
int Integer_get(T inte
www.eeworm.com/read/363596/9943583
h integer.h
#ifndef INTEGER_INCLUDED
#define INTEGER_INCLUDED
#define T Integer_T
typedef int *T;
extern T Integer_new(int n);
extern int Integer_get(T integer);
extern int Integer_put(T integer, int n);
extern
www.eeworm.com/read/362791/9980507
cpp integer.cpp
// integer.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#include "integer.h"
#include "modarith.h"
#include "nbtheory.h"
#include "asn.h"
#include "words.h"
#in