Searched refs:sign (Results 1 - 25 of 626) sorted by relevance

1234567891011>>

/macosx-10.10.1/OpenSSL098-52/src/demos/sign/
H A DMakefile4 EXAMPLES=sign
8 sign: sign.o
9 $(CC) -o sign sign.o $(LIBS)
15 ./sign
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn_mp_cmp.c22 /* compare based on sign */
23 if (a->sign != b->sign) {
24 if (a->sign == MP_NEG) {
32 if (a->sign == MP_NEG) {
H A Dbn_mp_neg.c29 b->sign = (a->sign == MP_ZPOS) ? MP_NEG : MP_ZPOS;
31 b->sign = MP_ZPOS;
H A Dbn_mp_add.c23 /* get sign of both inputs */
24 sa = a->sign;
25 sb = b->sign;
30 /* add their magnitudes, copy the sign */
31 c->sign = sa;
37 /* the sign of the one with the greater magnitude. */
39 c->sign = sb;
42 c->sign = sa;
H A Dbn_mp_sub.c24 sa = a->sign;
25 sb = b->sign;
31 /* and use the sign of the first number. */
32 c->sign = sa;
40 /* Copy the sign from the first */
41 c->sign = sa;
45 /* The result has the *opposite* sign from */
47 c->sign = (sa == MP_ZPOS) ? MP_NEG : MP_ZPOS;
H A Dbn_mp_read_signed_bin.c30 a->sign = MP_ZPOS;
32 a->sign = MP_NEG;
/macosx-10.10.1/Libc-1044.1.2/fbsdcompat/
H A Dfpmath.h39 unsigned int sign :1; member in struct:IEEEf2bits::__anon2711
41 unsigned int sign :1;
58 unsigned int sign :1; member in struct:IEEEd2bits::__anon2712
60 unsigned int sign :1;
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/sfio/
H A Dsfecvt.c25 char* sfecvt(double dval, int n_digit, int* decpt, int* sign) argument
27 char* sfecvt(dval,n_digit,decpt,sign)
31 int* sign; /* to return sign */
37 return _sfcvt(&dval,buf,sizeof(buf),n_digit,decpt,sign,&len,SFFMT_EFORMAT);
H A Dsffcvt.c25 char *sffcvt(double dval, int n_digit, int* decpt, int* sign) argument
27 char *sffcvt(dval,n_digit,decpt,sign)
31 int* sign; /* to return sign */
37 return _sfcvt(&dval,buf,sizeof(buf),n_digit,decpt,sign,&len,0);
/macosx-10.10.1/tcl-105/tcl/tcl/libtommath/
H A Dbn_mp_cmp.c22 /* compare based on sign */
23 if (a->sign != b->sign) {
24 if (a->sign == MP_NEG) {
32 if (a->sign == MP_NEG) {
H A Dbn_mp_neg.c29 b->sign = (a->sign == MP_ZPOS) ? MP_NEG : MP_ZPOS;
31 b->sign = MP_ZPOS;
H A Dbn_mp_add.c23 /* get sign of both inputs */
24 sa = a->sign;
25 sb = b->sign;
30 /* add their magnitudes, copy the sign */
31 c->sign = sa;
37 /* the sign of the one with the greater magnitude. */
39 c->sign = sb;
42 c->sign = sa;
H A Dbn_mp_sub.c24 sa = a->sign;
25 sb = b->sign;
31 /* and use the sign of the first number. */
32 c->sign = sa;
40 /* Copy the sign from the first */
41 c->sign = sa;
45 /* The result has the *opposite* sign from */
47 c->sign = (sa == MP_ZPOS) ? MP_NEG : MP_ZPOS;
/macosx-10.10.1/CPANInternal-159.1/Class-Factory-Util-1.7/
H A DBuild.PL7 sign => 1,
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/system/dlv/
H A Dsetup.sh21 (cd ns1 && sh -e sign.sh)
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/system/gost/
H A Dsetup.sh21 cd ns1 && sh sign.sh
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/system/pending/
H A Dsetup.sh21 cd ns1 && sh -e sign.sh
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/system/filter-aaaa/
H A Dsetup.sh23 (cd ns1 && sh -e sign.sh)
24 (cd ns4 && sh -e sign.sh)
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dcopysign.c10 unsigned int sign : 1; member in struct:__anon7729::__anon7730
20 unsigned int sign : 1; member in struct:__anon7729::__anon7731
55 unsigned int sign : 1; member in struct:__anon7733::__anon7734
70 unsigned int sign : 1; member in struct:__anon7733::__anon7735
90 unsigned int sign : 1; member in struct:__anon7737::__anon7738
97 unsigned int sign:1; member in struct:__anon7737::__anon7739
117 unsigned int sign : 1; member in struct:__anon7740::__anon7741
125 unsigned int sign:1; member in struct:__anon7740::__anon7742
140 a.number.sign =b.number.sign;
[all...]
/macosx-10.10.1/Libc-1044.1.2/stdlib/OpenBSD/
H A Dgcvt.c35 int i, decpt, sign; local
44 digits = __dtoa(value, 2, ndigit, &decpt, &sign, NULL);
49 * Infinity or NaN, convert to inf or nan with sign.
52 snprintf(buf, ndigit + 1, "%s%s", sign ? "-" : "",
59 if (sign)
65 sign = 1;
68 sign = 0;
75 if (sign)
85 for (sign = decpt, i = 0; (sign /
[all...]
H A Decvt.c33 __cvt(double value, int ndigit, int * __restrict decpt, int * __restrict sign, int fmode, int pad) argument
40 *sign = value < 0.0;
59 *sign = 0;
65 p = __dtoa(value, fmode + 2, ndigit, decpt, sign, &rve);
99 ecvt(double value, int ndigit, int * __restrict decpt, int * __restrict sign) argument
101 return(__cvt(value, ndigit, decpt, sign, 0, 1));
105 fcvt(double value, int ndigit, int * __restrict decpt, int * __restrict sign) argument
107 return(__cvt(value, ndigit, decpt, sign, 1, 1));
/macosx-10.10.1/CPANInternal-159.1/DateTime-Format-Builder-0.80/
H A DBuild.PL16 sign => 1,
/macosx-10.10.1/CPANInternal-159.1/DateTime-Format-W3CDTF-0.06/
H A DMakefile.PL21 sign;
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/system/dlvauto/
H A Dsetup.sh23 cd ns1 && sh sign.sh
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/system/dns64/
H A Dsetup.sh23 cd ns1 && sh sign.sh

Completed in 154 milliseconds

1234567891011>>