Searched refs:neg (Results 1 - 25 of 90) sorted by relevance

1234

/barrelfish-2018-10-04/lib/libc/quad/
H A Dfloatdidf.c51 int neg; local
57 u.q = -x, neg = 1; local
59 u.q = x, neg = 0; local
71 return (neg ? -d : d);
H A Dfloatdisf.c51 int neg; local
57 u.q = -x, neg = 1; local
59 u.q = x, neg = 0; local
73 return (neg ? -f : f);
H A Dmoddi3.c53 int neg; local
56 ua = -(u_quad_t)a, neg = 1;
58 ua = a, neg = 0;
64 return (neg ? -ur : ur);
H A Ddivdi3.c51 int neg; local
54 ua = -(u_quad_t)a, neg = 1;
56 ua = a, neg = 0;
58 ub = -(u_quad_t)b, neg ^= 1;
62 return (neg ? -uq : uq);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/
H A Dbn_mpi.c86 if (a->neg)
94 int neg=0; local
113 a->neg=0;
119 neg=1;
122 a->neg=neg;
123 if (neg)
H A Dbn_add.c67 int a_neg = a->neg, ret;
77 if (a_neg ^ b->neg)
88 r->neg=1;
93 r->neg=0;
99 r->neg = a_neg;
160 r->neg = 0;
258 r->neg=0;
266 int add=0,neg=0; local
277 if (a->neg)
279 if (b->neg)
[all...]
H A Dbn_kron.c132 if (B->neg)
134 B->neg = 0;
135 if (A->neg)
169 if ((A->neg ? ~BN_lsw(A) : BN_lsw(A)) & BN_lsw(B) & 2)
176 tmp->neg = 0;
H A Dbn_print.c81 if (a->neg) *(p++)='-';
176 int neg=0,h,m,i,j,k,c; local
181 if (*a == '-') { neg=1; a++; }
186 num=i+neg;
229 ret->neg=neg;
243 int neg=0,i,j; local
247 if (*a == '-') { neg=1; a++; }
252 num=i+neg;
286 ret->neg
[all...]
H A Dbn_shift.c73 r->neg=a->neg;
116 r->neg=a->neg;
141 r->neg=a->neg;
187 r->neg=a->neg;
H A Dbn_word.c139 if (a->neg)
141 a->neg=0;
144 a->neg=!(a->neg);
189 if (a->neg)
191 a->neg=0;
193 a->neg=1;
200 a->neg=1;
/barrelfish-2018-10-04/lib/tommath/
H A Dbn_mp_fread.c21 int err, ch, neg, y; local
29 neg = MP_NEG;
32 neg = MP_ZPOS;
57 a->sign = neg;
H A Dbn_mp_read_radix.c21 int y, res, neg; local
37 neg = MP_NEG;
39 neg = MP_ZPOS;
77 a->sign = neg;
H A Dbn_mp_mul.c21 int res, neg; local
22 neg = (a->sign == b->sign) ? MP_ZPOS : MP_NEG;
59 c->sign = (c->used > 0) ? neg : MP_ZPOS;
/barrelfish-2018-10-04/usr/eclipseclp/icparc_solvers/ech/
H A Dbool.pl3 % 910904 added exor,neg constraints
13 :- constraints boolean/1, and/3, or/3, exor/3, neg/2, imp/2, chr_labeling/0:at_lower(1).
52 %and(X,Y,0):- neg(X,Y).
76 %or(X,Y,1):- neg(X,Y).
88 exor(1,X,Y) <=> neg(X,Y).
89 exor(X,1,Y) <=> neg(X,Y).
90 exor(X,Y,1) <=> neg(X,Y).
99 label_exor(1,X,Y):- neg(X,Y).
101 %exor(X,Y,1):- neg(X,Y).
104 % neg/
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/asn1/
H A Dt_pkey.c69 const char *neg; local
72 neg = (BN_is_negative(num))?"-":"";
84 if (BIO_printf(bp,"%s %s%lu (%s0x%lx)\n",number,neg,
85 (unsigned long)num->d[0],neg,(unsigned long)num->d[0])
92 (neg[0] == '-')?" (Negative)":"") <= 0)
/barrelfish-2018-10-04/usr/eclipseclp/ecrc_solvers/chr/
H A Dbool.pl20 solve_bool(~~(_12810), _12805) ?- !, solve_bool(_12810, _12806), neg(_12806, _12805).
26 bool_portray(neg(_13027, _13026), _13028) ?- !, _13028 = (_13027 = ~~(_13026)).
66 %%% Callables for neg / 2
68 'CHRlabel_with'(neg(A, B), C, D) ?-
69 coca(try_clause(D, neg(A, B), neg(E, F), true)),
205 coca(try_double(F, and(A, B, C), H, neg(A, C), and(I, J, K), neg(I, K), replacement, true, (I = 1, J = 0, K = 0), anonymous("36"))),
213 coca(try_double(F, and(A, B, C), H, neg(C, A), and(I, J, K), neg(
[all...]
/barrelfish-2018-10-04/lib/libc/iconv/
H A D_strtol.h52 int any, cutlim, i, neg; local
77 neg = 1;
80 neg = 0;
103 * 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated
110 cutoff = (neg ? __INT_MIN : __INT_MAX);
113 if (neg) {
131 if (neg) {
H A D_strtoul.h51 int any, cutlim, i, neg; local
73 neg = 1;
76 neg = 0;
120 if (neg && any > 0)
/barrelfish-2018-10-04/lib/libc/locale/
H A Dwcstol.c56 int neg, any, cutlim; local
67 neg = 1;
70 neg = 0;
86 cutoff = neg ? (unsigned long)-(LONG_MIN + LONG_MAX) + LONG_MAX
115 acc = neg ? LONG_MIN : LONG_MAX;
120 } else if (neg)
H A Dwcstoll.c62 int neg, any, cutlim; local
73 neg = 1;
76 neg = 0;
92 cutoff = neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX
121 acc = neg ? LLONG_MIN : LLONG_MAX;
126 } else if (neg)
H A Dwcstoimax.c62 int neg, any, cutlim; local
73 neg = 1;
76 neg = 0;
92 cutoff = neg ? (uintmax_t)-(INTMAX_MIN + INTMAX_MAX) + INTMAX_MAX
121 acc = neg ? INTMAX_MIN : INTMAX_MAX;
126 } else if (neg)
H A Dwcstoul.c56 int neg, any, cutlim; local
67 neg = 1;
70 neg = 0;
118 } else if (neg)
/barrelfish-2018-10-04/lib/libc/stdlib/
H A Dstrtoimax.c61 int neg, any, cutlim; local
74 neg = 1;
77 neg = 0;
106 * either 7 (neg==0) or 8 (neg==1), meaning that if we have
114 cutoff = neg ? (uintmax_t)-(INTMAX_MIN + INTMAX_MAX) + INTMAX_MAX
138 acc = neg ? INTMAX_MIN : INTMAX_MAX;
143 } else if (neg)
H A Dstrtol.c62 int neg, any, cutlim; local
75 neg = 1;
78 neg = 0;
107 * 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated
114 cutoff = neg ? (unsigned long)-(LONG_MIN + LONG_MAX) + LONG_MAX
138 acc = neg ? LONG_MIN : LONG_MAX;
143 } else if (neg)
H A Dstrtoll.c61 int neg, any, cutlim; local
74 neg = 1;
77 neg = 0;
106 * either 7 (neg==0) or 8 (neg==1), meaning that if we have
114 cutoff = neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX
138 acc = neg ? LLONG_MIN : LLONG_MAX;
143 } else if (neg)

Completed in 107 milliseconds

1234