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

1234567891011>>

/macosx-10.9.5/Heimdal-323.92.1/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.9.5/Libc-997.90.3/fbsdcompat/
H A Dfpmath.h39 unsigned int sign :1; member in struct:IEEEf2bits::__anon2832
41 unsigned int sign :1;
58 unsigned int sign :1; member in struct:IEEEd2bits::__anon2833
60 unsigned int sign :1;
/macosx-10.9.5/ksh-20/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.9.5/tcl-102/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.9.5/CPANInternal-140/Class-Factory-Util-1.7/
H A DBuild.PL7 sign => 1,
/macosx-10.9.5/CPANInternal-140/Test-use-ok/
H A DMakefile.PL12 sign; WriteAll;
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/system/dlv/
H A Dsetup.sh21 (cd ns1 && sh -e sign.sh)
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/system/gost/
H A Dsetup.sh21 cd ns1 && sh sign.sh
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/system/pending/
H A Dsetup.sh21 cd ns1 && sh -e sign.sh
/macosx-10.9.5/bind9-45.100/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.9.5/cxxfilt-11/cxxfilt/libiberty/
H A Dcopysign.c10 unsigned int sign : 1; member in struct:__anon7948::__anon7949
20 unsigned int sign : 1; member in struct:__anon7948::__anon7950
55 unsigned int sign : 1; member in struct:__anon7952::__anon7953
70 unsigned int sign : 1; member in struct:__anon7952::__anon7954
90 unsigned int sign : 1; member in struct:__anon7956::__anon7957
97 unsigned int sign:1; member in struct:__anon7956::__anon7958
117 unsigned int sign : 1; member in struct:__anon7959::__anon7960
125 unsigned int sign:1; member in struct:__anon7959::__anon7961
140 a.number.sign =b.number.sign;
[all...]
/macosx-10.9.5/Libc-997.90.3/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.9.5/CPANInternal-140/DateTime-Format-Builder/
H A DBuild.PL12 sign => 1,
/macosx-10.9.5/CPANInternal-140/DateTime-Format-Builder-0.80/
H A DBuild.PL16 sign => 1,
/macosx-10.9.5/CPANInternal-140/DateTime-Format-W3CDTF-0.06/
H A DMakefile.PL21 sign;
/macosx-10.9.5/CPANInternal-140/Log-Dispatch/
H A DBuild.PL15 sign => 1,

Completed in 261 milliseconds

1234567891011>>