Searched refs:sign (Results 201 - 225 of 274) sorted by relevance

1234567891011

/freebsd-11.0-release/usr.bin/xlint/lint2/
H A Dchk.c597 int fwidth, prec, left, sign, space, alt, zero; local
615 fwidth = prec = left = sign = space = alt = zero = 0;
625 if (sign)
627 sign = 1;
696 if (sz != NOTSPEC || left || sign || space ||
/freebsd-11.0-release/contrib/gcc/config/arm/
H A Dlib1funcs.asm828 eor work, divisor @ Save the sign of the result.
857 eor ip, r0, r1 @ save the sign of the result.
875 10: teq ip, r0 @ same sign ?
928 @ Need to save the sign of the dividend, unfortunately, we need
954 movs ip, r0 @ preserve sign of dividend
1011 case of logical shifts) or the sign (for asr). */
1067 @ the sign bit into all of AL. That's not what we want...
/freebsd-11.0-release/crypto/openssl/crypto/ts/
H A Dts_asn1.c307 pkcs7_signed = token->d.sign;
/freebsd-11.0-release/contrib/libucl/
H A DMakefile.unix4 C_COMMON_FLAGS ?= -fPIC -Wall -W -Wno-unused-parameter -Wno-pointer-sign -I./include -I./uthash -I./src
/freebsd-11.0-release/contrib/libarchive/libarchive/
H A Darchive_read_support_format_tar.c2011 int sign; local
2018 sign = 1;
2020 sign = -1;
2034 *ps = s * sign;
2494 int digit, sign; local
2508 sign = 1;
2510 sign = -1;
2531 return (sign < 0) ? -l : l;
2563 /* Extend 7-bit 2s-comp to 8-bit 2s-comp, decide sign. */
2584 /* c is first byte that fits; if sign mismatc
[all...]
/freebsd-11.0-release/contrib/gcc/config/sparc/
H A Dlb1spc.asm131 ! compute sign of result; if neither is negative, no problem
134 xor %o1, %o0, %g3 ! compute sign in any case
479 ! compute sign of result; if neither is negative, no problem
482 mov %o0, %g3 ! sign of remainder matches %o0
/freebsd-11.0-release/contrib/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.h100 SDValue LowerDIVREM24(SDValue Op, SelectionDAG &DAG, bool sign) const;
271 BFE_I32, // Extract range of bits with sign extension to 32-bits.
/freebsd-11.0-release/contrib/netbsd-tests/fs/common/
H A Dfstest_puffs.c236 childfail(int sign) argument
/freebsd-11.0-release/sys/conf/
H A Dkern.mk8 -Wundef -Wno-pointer-sign ${FORMAT_EXTENSIONS} \
32 -Wno-error-pointer-sign
/freebsd-11.0-release/usr.bin/kdump/
H A Dkdump.c552 const char *sign; local
637 sign = "-";
640 sign = "";
642 printf("%s%jd.%06ld ", sign, (intmax_t)kth->ktr_time.tv_sec,
/freebsd-11.0-release/usr.bin/xlint/lint1/
H A Dscan.l618 sign(int64_t q, tspec_t t, int len)
636 * Extends the sign of q.
645 if (t == PTR || isutyp(t) || !sign(q, t, len)) {
/freebsd-11.0-release/crypto/openssl/apps/
H A Dx509.c133 " -signkey arg - self sign cert with arg\n",
135 " -req - input is a certificate request, sign and output.\n",
160 static int sign(X509 *x, EVP_PKEY *pkey, int days, int clrext,
570 BIO_printf(bio_err, "We need a private key to sign with\n");
917 if (!sign(x, Upkey, days, clrext, digest, extconf, extsect))
1213 /* self sign */
1214 static int sign(X509 *x, EVP_PKEY *pkey, int days, int clrext, function
/freebsd-11.0-release/usr.bin/sort/
H A Dcoll.c696 * sign equals -1 if the number is negative (explicit plus is not allowed,
702 read_number(struct bwstring *s0, int *sign, wchar_t *smain, size_t *main_len, wchar_t *sfrac, size_t *frac_len, unsigned char *si) argument
715 *sign = -1;
757 *sign = 0;
/freebsd-11.0-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Ddwarf.c673 * of signless forms (data1, data2, etc) that take their sign from the
1301 int sign = 1; local
1312 sign = 1;
1314 sign = 0;
1358 intr->intr_signed = sign;
1362 (sign ? "" : "unsigned "),
/freebsd-11.0-release/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300.h463 #define ah_total_iq_corr_meas ah_meas2.sign
466 int32_t sign[AR9300_MAX_CHAINS]; member in union:ath_hal_9300::__anon8051
470 int32_t sign[AR9300_MAX_CHAINS]; member in union:ath_hal_9300::__anon8052
474 int32_t sign[AR9300_MAX_CHAINS]; member in union:ath_hal_9300::__anon8053
478 int32_t sign[AR9300_MAX_CHAINS]; member in union:ath_hal_9300::__anon8054
/freebsd-11.0-release/sys/cam/ata/
H A Data_xpt.c785 int sign = (done_ccb->ataio.res.lba_high << 8) + local
788 ("SIGNATURE: %04x\n", sign));
789 if (sign == 0x0000 &&
793 } else if (sign == 0x9669 &&
805 } else if (sign == 0xc33c &&
809 } else if (sign == 0xeb14 &&
816 "Unexpected signature 0x%04x\n", sign);
/freebsd-11.0-release/contrib/libc++/src/
H A Dlocale.cpp5535 const char sign = static_cast<char>(money_base::sign); local
5543 // function'. "Space between sign and symbol or value" means that
5544 // if the sign is adjacent to the symbol, there's a space between
5545 // them, and otherwise there's a space between the sign and value.
5548 // international curr_symbol is used to separate the sign and
5551 // separate the symbol and value-or-sign with a space, we rearrange the
5555 // We also need to avoid adding an extra space between the sign
5575 pat.field[0] = sign;
5584 case 2: // Space between sign an
[all...]
/freebsd-11.0-release/contrib/tzcode/zic/
H A Dzic.c896 int mm, ss, sign; local
901 sign = 1;
903 sign = -1;
905 } else sign = 1;
930 return oadd(eitol(sign) * hh * eitol(SECSPERHOUR),
931 eitol(sign) * (eitol(mm) * eitol(SECSPERMIN) + eitol(ss)));
2697 errx(EXIT_FAILURE, _("%d did not sign extend correctly"), i);
/freebsd-11.0-release/crypto/openssl/crypto/pkcs7/
H A Dpkcs7.h99 /* The private key to sign with */
188 PKCS7_SIGNED *sign; member in union:pkcs7_st::__anon6420
/freebsd-11.0-release/crypto/openssh/
H A Dssh_api.c115 ssh->kex->sign=&_ssh_host_key_sign;
/freebsd-11.0-release/contrib/gdb/gdb/
H A Dutils.c1618 c &= 0xFF; /* Avoid sign bit follies */
2705 decimal2str (char *paddr_str, char *sign, ULONGEST addr)
2721 sprintf (paddr_str, "%s%lu", sign, temp[0]);
2724 sprintf (paddr_str, "%s%lu%09lu", sign, temp[1], temp[0]);
2727 sprintf (paddr_str, "%s%lu%09lu%09lu", sign, temp[2], temp[1], temp[0]);
2692 decimal2str(char *paddr_str, char *sign, ULONGEST addr) argument
/freebsd-11.0-release/contrib/gcc/cp/
H A Dmangle.c1230 int sign = tree_int_cst_sgn (cst); local
1232 if (TREE_INT_CST_HIGH (cst) + (sign < 0))
1261 if (sign < 0)
1288 if (sign < 0)
1303 The "n" prefix is not used for floating-point literals; the sign
/freebsd-11.0-release/lib/libedit/
H A Dreadline.c546 int idx, sign, sub, num, begin, ret; local
563 sign = 0;
565 sign = 1;
577 if (sign)
/freebsd-11.0-release/crypto/openssl/crypto/evp/
H A Devp_locl.h301 int (*sign) (EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, member in struct:evp_pkey_method_st
/freebsd-11.0-release/contrib/ntp/util/
H A Dntp-keygen.c27 * RSA private/public sign key pair used for public key signatures
31 * DSA Private/public sign key pair used for public key signatures
307 EVP_PKEY *pkey_sign = NULL; /* sign key */
317 char *sign = NULL; /* sign key */ local
399 sign = estrdup(OPT_ARG( SIGN_KEY ));
445 * in host and sign certificate file names.
603 * Create new encrypted RSA or DSA sign keys file if requested;
604 * otherwise, look for an existing sign key file. If not found,
607 if (sign !
[all...]

Completed in 481 milliseconds

1234567891011