Searched refs:sign (Results 126 - 150 of 299) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/gcc/config/soft-fp/
H A Dquad.h73 unsigned sign : 1; member in struct:_FP_UNION_Q::__anon1279
85 unsigned sign : 1;
179 unsigned sign : 1; member in struct:_FP_UNION_Q::__anon1281
187 unsigned sign : 1;
/freebsd-11-stable/lib/libiconv_modules/mapper_zone/
H A Dcitrus_mapper_zone.c101 int c, i, sign = 0; local
109 if (sign == 0 && (c == '+' || c == '-')) {
110 sign = c;
124 if (sign == '-')
/freebsd-11-stable/contrib/dtc/
H A DMakefile215 $(GPG) --detach-sign --armor -o ../dtc-$(dtc_version).tar.sign \
217 $(KUP) put ../dtc-$(dtc_version).tar.gz ../dtc-$(dtc_version).tar.sign \
251 rm -f dtc-*.tar dtc-*.tar.sign dtc-*.tar.asc
/freebsd-11-stable/crypto/openssh/regress/misc/kexfuzz/
H A DMakefile53 CDIAGFLAGS+= -Wpointer-sign
/freebsd-11-stable/usr.bin/jot/
H A Djot.c396 int dot, hash, space, sign, numbers = 0; local
427 dot = hash = space = sign = numbers = 0;
432 } else if ((*p == '#' && !(numbers|dot|sign|space|
435 ((*p == '+' || *p == '-') && !(numbers|dot|sign++))
/freebsd-11-stable/contrib/tcsh/
H A Dtc.printf.c69 int sign = 0, count = 0; local
166 sign = 1;
172 if (sign)
347 sign = 0;
/freebsd-11-stable/crypto/openssl/apps/
H A Dpkcs7.c235 if (p7->d.sign != NULL) {
236 certs = p7->d.sign->cert;
237 crls = p7->d.sign->crl;
/freebsd-11-stable/contrib/jemalloc/src/
H A Dutil.c38 static char *d2s(intmax_t x, char sign, char *s, size_t *slen_p);
141 /* Swallow leading whitespace and get sign, if any. */
162 * Note where the first non-whitespace/sign character is so that it is
283 d2s(intmax_t x, char sign, char *s, size_t *slen_p) argument
291 sign = '-';
292 switch (sign) {
301 *s = sign;
/freebsd-11-stable/contrib/gcc/config/
H A Dfp-bit.h360 unsigned char sign; member in struct:__anon1232
364 unsigned int sign;
393 unsigned int sign:1 __attribute__ ((packed)); member in struct:__anon1234::__anon1235
401 unsigned int sign:1 __attribute__ ((packed)); member in struct:__anon1234::__anon1236
411 unsigned int sign:1 __attribute__ ((packed)); member in struct:__anon1234::__anon1237
/freebsd-11-stable/sys/dev/mse/
H A Dmse.c519 int sign; local
531 sign = (dx < 0);
535 if (sign)
537 sign = (dy < 0);
541 if (sign)
/freebsd-11-stable/lib/libc/stdtime/
H A Dstrptime.c569 int sign = 1; local
573 sign = -1;
592 if (i > 1400 || (sign == -1 && i > 1200) ||
595 tm->tm_hour -= sign * (i / 100);
596 tm->tm_min -= sign * (i % 100);
H A Dstrftime.c500 char const * sign; local
540 sign = "-";
543 sign = "+";
544 pt = _add(sign, pt, ptlim);
/freebsd-11-stable/contrib/ntp/libntp/
H A Dntp_calgps.c159 uint32_t base, days, sign; local
167 sign = (uint32_t)-(days < base);
168 days = sign ^ (days - base);
170 days = base + (sign & clen) + (sign ^ days);
/freebsd-11-stable/contrib/binutils/bfd/
H A Dcpu-ia64-opc.c189 BFD_HOST_64_BIT val = 0, sign; local
198 /* sign extend: */
199 sign = (BFD_HOST_64_BIT) 1 << (total - 1);
200 val = (val ^ sign) - sign;
385 BFD_HOST_U_64_BIT sign = 0; local
389 sign = 0x4;
400 *code |= (sign | value) << self->field[0].shift;
/freebsd-11-stable/contrib/gdtoa/
H A Ddtoa.c78 (d0, mode, ndigits, decpt, sign, rve)
79 double d0; int mode, ndigits, *decpt, *sign; char **rve;
81 (double d0, int mode, int ndigits, int *decpt, int *sign, char **rve)
84 /* Arguments ndigits, decpt, sign are similar to those
155 /* set sign for everything, including 0's and NaNs */
156 *sign = 1;
157 word0(&d) &= ~Sign_bit; /* clear sign bit */
160 *sign = 0;
192 if (*sign)
628 j1 = delta->sign
[all...]
H A Dgdtoa.h107 int *sign, char **rve));
/freebsd-11-stable/contrib/gcc/config/arm/
H A Dieee754-df.S64 @ flip sign bit
77 eor xh, xh, #0x80000000 @ flip sign bit of first arg
83 eor yh, yh, #0x80000000 @ flip sign bit of second arg
167 @ Keep absolute value in xh-xl-ip, sign in r5 (the n bit was set above)
285 @ shift result right of 1 to 20 bits, sign is in r5.
364 @ if opposite sign: return NAN
393 mov r5, #0 @ sign bit is 0
412 ands r5, r0, #0x80000000 @ sign bit in r5
426 movs r2, r0, lsl #1 @ toss sign bit
428 mov xh, xh, rrx @ retrieve sign bi
[all...]
/freebsd-11-stable/contrib/apr/strings/
H A Dapr_snprintf.c80 * sign is set to 0 for positive, 1 for negative
86 static char *apr_cvt(double arg, int ndigits, int *decpt, int *sign, argument
96 *sign = 0;
99 *sign = 1;
160 static char *apr_ecvt(double arg, int ndigits, int *decpt, int *sign, char *buf) argument
162 return (apr_cvt(arg, ndigits, decpt, sign, 1, buf));
165 static char *apr_fcvt(double arg, int ndigits, int *decpt, int *sign, char *buf) argument
167 return (apr_cvt(arg, ndigits, decpt, sign, 0, buf));
177 int sign, decpt; local
182 p1 = apr_ecvt(number, ndigit, &decpt, &sign, buf
[all...]
/freebsd-11-stable/contrib/gcc/
H A Ddfp.c77 r->sign = 1;
138 /* Fix up sign bit. */
139 if (r->sign != decNumberIsNegative (dn))
664 /* Keep sign field in sync. */
665 r->sign ^= 1;
676 /* Keep sign field in sync. */
677 r->sign = 0;
694 decimal_real_maxval (REAL_VALUE_TYPE *r, int sign, enum machine_mode mode) argument
714 if (sign)
/freebsd-11-stable/crypto/openssl/crypto/evp/
H A Dpmeth_lib.c238 dst->sign = src->sign;
487 int (*sign) (EVP_PKEY_CTX *ctx,
493 pmeth->sign = sign;
644 *psign = pmeth->sign;
H A Dpmeth_fn.c88 if (!ctx || !ctx->pmeth || !ctx->pmeth->sign) {
106 if (!ctx || !ctx->pmeth || !ctx->pmeth->sign) {
116 return ctx->pmeth->sign(ctx, sig, siglen, tbs, tbslen);
/freebsd-11-stable/contrib/libpcap/rpcapd/
H A Drpcapd.c98 static void main_terminate(int sign);
99 static void main_reread_config(int sign);
104 static void main_reap_children(int sign);
749 static void main_terminate(int sign _U_)
759 static void main_reread_config(int sign _U_)
769 static void main_reap_children(int sign _U_)
/freebsd-11-stable/usr.bin/dc/
H A Dinout.c192 bool dot = false, sign = false; local
204 sign = true;
226 if (sign)
/freebsd-11-stable/usr.sbin/uefisign/
H A Duefisign.c240 PKCS7_set0_type_other(pkcs7->d.sign->contents, nid, t);
244 sign(X509 *cert, EVP_PKEY *key, int pipefd) function
423 sign(cert, key, pipefds[0]);
/freebsd-11-stable/contrib/gdb/gdb/
H A Di387-tdep.c57 to print the value, 1 position for the sign, 1 for the decimal
71 int sign; local
76 sign = raw[9] & 0x80;
87 fprintf_filtered (file, " %cInf", (sign ? '-' : '+'));
88 else if (sign && fraction[0] == 0x00000000 && fraction[1] == 0x40000000)

Completed in 203 milliseconds

1234567891011>>