代码搜索:Sign
找到约 10,000 项符合「Sign」的源代码
代码结果 10,000
www.eeworm.com/read/238768/4609711
pod dsa_sign.pod
=pod
=head1 NAME
DSA_sign, DSA_sign_setup, DSA_verify - DSA signatures
=head1 SYNOPSIS
#include
int DSA_sign(int type, const unsigned char *dgst, int len,
unsigned char *sigre
www.eeworm.com/read/233522/4668253
c d_sign.c
#include "f2c.h"
#include "netlib.h"
double d_sign(const doublereal *a, const doublereal *b)
{
double x = (*a >= 0 ? *a : - *a);
return *b >= 0 ? x : -x;
}
www.eeworm.com/read/233522/4668321
c r_sign.c
#include "f2c.h"
#include "netlib.h"
#ifdef KR_headers
real r_sign(a,b) const real *a, *b;
#else
real r_sign(const real *a, const real *b)
#endif
{
real x = (*a >= 0 ? *a : - *a);
retur
www.eeworm.com/read/233448/4685859
c num-sign.c
/* Copyright (C) 2001 Free Software Foundation, Inc. */
/* { dg-do preprocess { target i?86-*-* } } */
/* Tests that traditional numbers are signed, unless otherwise
specified. This test assume
www.eeworm.com/read/216502/4891941
c d_sign.c
double d_sign(a,b)
double *a, *b;
{
double x;
x = (*a >= 0 ? *a : - *a);
return( *b >= 0 ? x : -x);
}
www.eeworm.com/read/216502/4891954
c i_sign.c
long int i_sign(a,b)
long int *a, *b;
{
long int x;
x = (*a >= 0 ? *a : - *a);
return( *b >= 0 ? x : -x);
}
www.eeworm.com/read/216502/4891963
c r_sign.c
double r_sign(a,b)
float *a, *b;
{
float x;
x = (*a >= 0 ? *a : - *a);
return( *b >= 0 ? x : -x);
}
www.eeworm.com/read/216502/4891987
c h_sign.c
short h_sign(a,b)
short *a, *b;
{
short x;
x = (*a >= 0 ? *a : - *a);
return( *b >= 0 ? x : -x);
}
www.eeworm.com/read/203830/5037904
c p_sign.c
/* crypto/evp/p_sign.c */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
*