Searched refs:sign (Results 151 - 175 of 244) sorted by relevance

12345678910

/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_read_support_format_tar.c1617 int sign; local
1624 sign = 1;
1626 sign = -1;
1640 *ps = s * sign;
2020 int digit, sign, base; local
2029 sign = -1;
2032 sign = 1;
2044 return (sign < 0) ? -l : l;
2056 int base, digit, sign; local
2065 sign
[all...]
/freebsd-9.3-release/gnu/usr.bin/rcs/lib/
H A Dpartime.c365 char sign; local
422 sign = *s++;
440 *zone = z + (sign=='-' ? -offset : offset);
/freebsd-9.3-release/sys/boot/ficl/
H A Dvm.c666 int sign = ((radix == 10) && (value < 0)); local
675 if (sign)
704 if (sign)
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestBean.java212 long sign;
228 sign = ((i < 0) ? -1L : 1L);
229 power = (sign * i);
232 lowerBound = sign * ((long) Math.pow(2L, power));
/freebsd-9.3-release/contrib/binutils/binutils/
H A Dresres.c122 static const bfd_byte sign[] = local
152 set_windres_bfd_content (&wrbfd, sign, sec_length, 4-(sec_length & 3));
153 set_windres_bfd_content (&wrbfd, sign, 0, sizeof (sign));
H A Dsrconv.c524 rl.sign = 0;
650 dbt.sign = BTYPE_UNSPEC;
656 dbt.sign = BTYPE_UNSPEC;
664 dbt.sign = SIGN_SIGNED;
685 dbt.sign = SIGN_UNSIGNED;
693 dbt.sign = SIGN_UNSIGNED;
748 dbt.sign = SIGN_UNSPEC;
774 dbt.sign = SIGN_UNSPEC;
829 dbt.sign = SIGN_UNSPEC;
856 dbt.sign
[all...]
/freebsd-9.3-release/crypto/openssh/
H A Dkex.h145 void (*sign)(Key *, Key *, u_char **, u_int *, u_char *, u_int); member in struct:Kex
H A Dkexecdhs.c133 /* sign H */
134 kex->sign(server_host_private, server_host_public, &signature, &slen,
H A Dkexgexs.c185 /* sign H */
186 kex->sign(server_host_private, server_host_public, &signature, &slen,
/freebsd-9.3-release/crypto/openssl/apps/
H A DCA.sh9 # CA -sign ... will sign the generated request and output
58 echo "usage: $0 -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify" >&2
155 -sign|-signreq)
/freebsd-9.3-release/lib/msun/src/
H A De_fmodl.c75 sx = ux.bits.sign;
124 if ((hz|lz)==0) /* return sign(x)*0 */
132 /* convert back to floating value and restore the sign */
133 if((hx|lx)==0) /* return sign(x)*0 */
/freebsd-9.3-release/contrib/tzdata/
H A DMakefile169 -Wno-address -Wno-format-nonliteral -Wno-sign-compare \
754 gpg --armor --detach-sign $?
757 gpg --armor --detach-sign $?
760 gpg --armor --detach-sign $?
/freebsd-9.3-release/crypto/heimdal/lib/krb5/
H A Daddr_families.c630 int tmp1, tmp2, sign; local
637 sign = 1;
641 sign = -1;
649 return sign * tmp1;
650 return sign * krb5_address_order(context, &a->high, &b->high);
654 return sign;
657 return -sign;
660 return sign * (addr1->addr_type - addr2->addr_type);
/freebsd-9.3-release/lib/libc/mips/gen/
H A Dldexp.S84 srl t0, v1, 31 # get x sign
147 sll t0, t0, 31 # reposition sign
/freebsd-9.3-release/contrib/libreadline/
H A Dvi_mode.c153 _rl_vi_set_last (key, repeat, sign)
154 int key, repeat, sign;
158 _rl_vi_last_arg_sign = sign;
164 rl_vi_start_inserting (key, repeat, sign)
165 int key, repeat, sign;
167 _rl_vi_set_last (key, repeat, sign);
1022 Don't recognize minus sign?
/freebsd-9.3-release/crypto/heimdal/lib/hx509/
H A Dtest_ca.in70 ${hxtool} crl-sign \
81 ${hxtool} crl-sign \
93 ${hxtool} crl-sign \
294 echo "sign CMS signature (generate key)"
/freebsd-9.3-release/contrib/binutils/gas/
H A Dread.c1144 Take the sign of the number from X_unsigned rather than X_add_number. */
1158 /* Add a sequence of sign bits if the top bit of X_add_number is not
1159 the sign of the original value. */
1992 bytes from a 4-byte expression and they forgot to sign
4105 mask = ~(unmask >> 1); /* Includes sign bit now. */
4693 sizeof_leb128 (valueT value, int sign)
4695 if (sign)
4751 output_leb128 (char *p, valueT value, int sign)
4753 if (sign)
4771 /* Strip leading sign extension
4683 sizeof_leb128(valueT value, int sign) argument
4741 output_leb128(char *p, valueT value, int sign) argument
4848 output_big_leb128(char *p, LITTLENUM_TYPE *bignum, int size, int sign) argument
4860 emit_leb128_expr(expressionS *exp, int sign) argument
4940 s_leb128(int sign) argument
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dexplow.c48 /* Truncate and perhaps sign-extend C as appropriate for MODE. */
66 HOST_WIDE_INT sign = 1; local
67 sign <<= width - 1;
68 c &= (sign << 1) - 1;
69 c ^= sign;
70 c -= sign;
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dlinespec.c786 /* Check whether arg is all digits (and sign). */
1562 preceded by a sign). Q should point to the end of those digits;
1574 enum sign
1578 sign = none;
1599 sign = plus, (*argptr)++;
1601 sign = minus, (*argptr)++;
1603 switch (sign)
1649 /* Decode a linespec starting with a dollar sign. */
1567 enum sign enum
1571 sign = none; local
H A Dvalprint.c267 static void print_decimal (struct ui_file * stream, char *sign,
270 print_decimal (struct ui_file *stream, char *sign, int use_local,
286 sign, temp[0]);
290 sign, temp[1], temp[0]);
294 sign, temp[2], temp[1], temp[0]);
269 print_decimal(struct ui_file *stream, char *sign, int use_local, ULONGEST val_ulong) argument
/freebsd-9.3-release/lib/libedit/
H A Dchared.c341 int sign = 1; local
352 sign = -1; /* Handle $- */
357 *num = (sign < 0 ? dval - i : i);
/freebsd-9.3-release/sbin/sysctl/
H A Dsysctl.c536 int i, hexlen, sign, ctltype; local
602 sign = ctl_sign[ctltype];
644 else if (!sign)
/freebsd-9.3-release/crypto/openssl/crypto/ec/
H A Dec_mult.c190 int sign = 1; local
215 sign = -1;
281 r[j++] = sign * digit;
/freebsd-9.3-release/sbin/growfs/
H A Dgrowfs.c501 * Here we add or subtract (sign +1/-1) the available fragments in a given
507 frag_adjust(ufs2_daddr_t frag, int sign) argument
532 acg.cg_frsum[fragsize] += sign;
534 fragsize, sign);
543 acg.cg_frsum[fragsize] += sign;
544 DBG_PRINT2("frag_adjust [%d]+=%d\n", fragsize, sign);
546 DBG_PRINT2("frag_adjust [[%d]]+=%d\n", fragsize, sign);
/freebsd-9.3-release/contrib/compiler-rt/lib/sparc64/
H A Ddivsi3.S59 xor %o1,%o0,%g3 ! record sign of result in sign of %g3

Completed in 313 milliseconds

12345678910