代码搜索:integer
找到约 10,000 项符合「integer」的源代码
代码结果 10,000
www.eeworm.com/read/353378/3086066
c der_decode_integer.c
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The librar
www.eeworm.com/read/353378/3086101
c der_length_integer.c
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The librar
www.eeworm.com/read/353378/3086202
c der_encode_integer.c
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The librar
www.eeworm.com/read/260165/4335445
h integer_to_string_unittest_.h
// Updated: 12th March 2007
#if !defined(STLSOFT_INCL_STLSOFT_CONVERSION_HPP_INTEGER_TO_STRING)
# error This file cannot be directly included, and should only be included within stlsoft/conversi
www.eeworm.com/read/474916/6797964
cpp large_integer_multiplication.cpp
#include
#include
using namespace std;
void main()
{
char num1[32],num2[32];//存储大整数数组
int digit1[16]={0};
int digit2[16]={0};
int e[64]={0};
int f[64]={0};
int
www.eeworm.com/read/173932/9629485
m power_integer_2.m
function n = power_integer_2 (x)
m = 0.;
for j = 1:30
m = m + 1.;
delta = x - 2.^m;
if(delta < 0.)
n = m;
return
else
end
end
www.eeworm.com/read/237896/13920985
m power_integer_2.m
function n = power_integer_2 (x)
m = 0.;
for j = 1:30
m = m + 1.;
delta = x - 2.^m;
if(delta < 0.)
n = m;
return
else
end
end