Symbol: sign
crypto/heimdal/lib/krb5/addr_families.c
643
int tmp1, tmp2, sign;
crypto/heimdal/lib/krb5/addr_families.c
650
sign = 1;
crypto/heimdal/lib/krb5/addr_families.c
654
sign = -1;
crypto/heimdal/lib/krb5/addr_families.c
664
return sign * tmp1;
crypto/heimdal/lib/krb5/addr_families.c
665
return sign * krb5_address_order(context, &a->high, &b->high);
crypto/heimdal/lib/krb5/addr_families.c
669
return sign;
crypto/heimdal/lib/krb5/addr_families.c
672
return -sign;
crypto/heimdal/lib/krb5/addr_families.c
675
return sign * (addr1->addr_type - addr2->addr_type);
crypto/krb5/src/kadmin/cli/getdate.y
784
int sign;
crypto/krb5/src/kadmin/cli/getdate.y
793
sign = c == '-' ? -1 : 1;
crypto/krb5/src/kadmin/cli/getdate.y
799
sign = 0;
crypto/krb5/src/kadmin/cli/getdate.y
803
if (sign < 0)
crypto/krb5/src/kadmin/cli/getdate.y
805
return sign ? tSNUMBER : tUNUMBER;
crypto/krb5/src/lib/rpc/xdr_float.c
120
is.sign = vs.sign;
crypto/krb5/src/lib/rpc/xdr_float.c
148
vsp->sign = is.sign;
crypto/krb5/src/lib/rpc/xdr_float.c
167
unsigned int sign : 1;
crypto/krb5/src/lib/rpc/xdr_float.c
175
unsigned int sign : 1;
crypto/krb5/src/lib/rpc/xdr_float.c
241
id.sign = vd.sign;
crypto/krb5/src/lib/rpc/xdr_float.c
280
vd.sign = id.sign;
crypto/krb5/src/lib/rpc/xdr_float.c
63
unsigned int sign : 1;
crypto/krb5/src/lib/rpc/xdr_float.c
70
unsigned int sign : 1;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
1748
p7->d.sign = p7s;
crypto/libecc/include/libecc/nn/nn_div_public.h
27
ATTRIBUTE_WARN_UNUSED_RET int nn_gcd(nn_t d, nn_src_t a, nn_src_t b, int *sign);
crypto/libecc/include/libecc/nn/nn_div_public.h
28
ATTRIBUTE_WARN_UNUSED_RET int nn_xgcd(nn_t g, nn_t u, nn_t v, nn_src_t a, nn_src_t b, int *sign);
crypto/libecc/include/libecc/sig/sig_algs_internal.h
289
.sign = generic_ec_sign,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
310
.sign = generic_ec_sign,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
331
.sign = generic_ec_sign,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
352
.sign = generic_ec_sign,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
373
.sign = generic_ec_sign,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
394
.sign = generic_ec_sign,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
415
.sign = generic_ec_sign,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
436
.sign = generic_ec_sign,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
458
.sign = _eddsa_sign,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
474
.sign = _eddsa_sign,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
489
.sign = _eddsa_sign,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
511
.sign = _eddsa_sign,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
526
.sign = _eddsa_sign,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
547
.sign = generic_ec_sign,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
568
.sign = generic_ec_sign,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
589
.sign = generic_ec_sign,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
610
.sign = _bip0340_sign,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
630
.sign = NULL,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
65
ATTRIBUTE_WARN_UNUSED_RET int (*sign) (u8 *sig, u8 siglen, const ec_key_pair *key_pair,
crypto/libecc/include/libecc/sig/sig_algs_internal.h
95
(sm->sign_finalize != NULL) && (sm->sign != NULL) &&
crypto/libecc/src/examples/basic/nn_pollard_rho.c
104
ret = nn_gcd(d, &tmp, n, &sign); EG(ret, err);
crypto/libecc/src/examples/basic/nn_pollard_rho.c
85
int sign;
crypto/libecc/src/nn/nn_div.c
1047
int *sign)
crypto/libecc/src/nn/nn_div.c
1096
(*sign) = 1;
crypto/libecc/src/nn/nn_div.c
1172
(*sign) = swap ? -1 : 1;
crypto/libecc/src/nn/nn_div.c
1199
int nn_xgcd(nn_t g, nn_t u, nn_t v, nn_src_t a, nn_src_t b, int *sign)
crypto/libecc/src/nn/nn_div.c
1213
MUST_HAVE((sign != NULL), ret, err);
crypto/libecc/src/nn/nn_div.c
1236
(*sign) = -(_sign);
crypto/libecc/src/nn/nn_div.c
1239
(*sign) = _sign;
crypto/libecc/src/nn/nn_div.c
1256
int nn_gcd(nn_t g, nn_src_t a, nn_src_t b, int *sign)
crypto/libecc/src/nn/nn_div.c
1265
ret = nn_xgcd(g, &u, &v, a, b, sign);
crypto/libecc/src/nn/nn_modinv.c
223
int sign, ret, cmp, isodd, isone;
crypto/libecc/src/nn/nn_modinv.c
259
ret = nn_xgcd(&out, &u, &v, x, m, &sign); EG(ret, err);
crypto/libecc/src/nn/nn_modinv.c
264
if (sign == -1) {
crypto/libecc/src/sig/sig_algs.c
188
} else if (sm->sign != sig->sign){
crypto/libecc/src/sig/sig_algs.c
483
MUST_HAVE(((sm != NULL) && (sm->sign != NULL)), ret, err);
crypto/libecc/src/sig/sig_algs.c
485
ret = sm->sign(sig, siglen, key_pair, m, mlen, rand,
crypto/libecc/src/wycheproof_tests/libecc_wycheproof.c
500
int ret, sign, check;
crypto/libecc/src/wycheproof_tests/libecc_wycheproof.c
520
sign = (compression - 2);
crypto/libecc/src/wycheproof_tests/libecc_wycheproof.c
524
y = ((check > 0) == sign) ? &x : &tmp;
crypto/openssh/kex.h
173
int (*sign)(struct ssh *, struct sshkey *, struct sshkey *,
crypto/openssh/kexgen.c
355
if ((r = kex->sign(ssh, server_host_private, server_host_public,
crypto/openssh/kexgexs.c
184
if ((r = kex->sign(ssh, server_host_private, server_host_public,
crypto/openssh/monitor.c
1877
kex->sign = sshd_hostkey_sign;
crypto/openssh/openbsd-compat/fmt_scaled.c
101
sign = +1;
crypto/openssh/openbsd-compat/fmt_scaled.c
156
if (sign)
crypto/openssh/openbsd-compat/fmt_scaled.c
157
whole *= sign;
crypto/openssh/openbsd-compat/fmt_scaled.c
202
if (sign == -1)
crypto/openssh/openbsd-compat/fmt_scaled.c
79
int sign = 0;
crypto/openssh/openbsd-compat/fmt_scaled.c
90
if (sign) {
crypto/openssh/openbsd-compat/fmt_scaled.c
94
sign = -1;
crypto/openssh/openbsd-compat/fmt_scaled.c
97
if (sign) {
crypto/openssh/regress/unittests/kex/test_kex.c
159
server2->kex->sign = server->kex->sign;
crypto/openssh/serverloop.c
710
(r = ssh->kex->sign(ssh, key_prv, key_pub, &sig, &slen,
crypto/openssh/sntrup761.c
1843
int sign, swap, t, i, loop, delta = 1;
crypto/openssh/sntrup761.c
1855
sign = -g[0] * f[0];
crypto/openssh/sntrup761.c
1867
for (i = 0; i < p + 1; ++i) g[i] = F3_freeze(g[i] + sign * f[i]);
crypto/openssh/sntrup761.c
1868
for (i = 0; i < p + 1; ++i) r[i] = F3_freeze(r[i] + sign * v[i]);
crypto/openssh/sntrup761.c
1872
sign = f[0];
crypto/openssh/sntrup761.c
1873
for (i = 0; i < p; ++i) out[i] = sign * v[p - 1 - i];
crypto/openssh/ssh_api.c
140
ssh->kex->sign=&_ssh_host_key_sign;
crypto/openssh/sshd-auth.c
867
kex->sign = sshd_hostkey_sign;
crypto/openssh/sshkey.c
2216
if (impl->funcs->sign == NULL)
crypto/openssh/sshkey.c
2219
r = impl->funcs->sign(key, sigp, lenp, data, datalen,
crypto/openssh/sshkey.h
185
int (*sign)(struct sshkey *, u_char **, size_t *,
crypto/openssl/apps/crl2pkcs7.c
135
p7->d.sign = p7s;
crypto/openssl/apps/pkcs7.c
165
if (p7->d.sign != NULL) {
crypto/openssl/apps/pkcs7.c
166
certs = p7->d.sign->cert;
crypto/openssl/apps/pkcs7.c
167
crls = p7->d.sign->crl;
crypto/openssl/crypto/asn1/x_long.c
100
sign = 0xff;
crypto/openssl/crypto/asn1/x_long.c
103
sign = 0;
crypto/openssl/crypto/asn1/x_long.c
118
*cont++ = (unsigned char)sign;
crypto/openssl/crypto/asn1/x_long.c
120
cont[i] = (unsigned char)(utmp ^ sign);
crypto/openssl/crypto/asn1/x_long.c
132
unsigned long utmp = 0, sign = 0x100;
crypto/openssl/crypto/asn1/x_long.c
144
sign = 0xff;
crypto/openssl/crypto/asn1/x_long.c
149
sign = 0;
crypto/openssl/crypto/asn1/x_long.c
158
if (sign == 0x100) {
crypto/openssl/crypto/asn1/x_long.c
161
sign = 0xff;
crypto/openssl/crypto/asn1/x_long.c
163
sign = 0;
crypto/openssl/crypto/asn1/x_long.c
164
} else if (((sign ^ cont[0]) & 0x80) == 0) { /* same sign bit? */
crypto/openssl/crypto/asn1/x_long.c
171
utmp |= cont[i] ^ sign;
crypto/openssl/crypto/asn1/x_long.c
178
if (sign)
crypto/openssl/crypto/asn1/x_long.c
88
unsigned long utmp, sign;
crypto/openssl/crypto/bn/bn_gcd.c
150
sign = -sign;
crypto/openssl/crypto/bn/bn_gcd.c
161
if (sign < 0) {
crypto/openssl/crypto/bn/bn_gcd.c
203
int sign;
crypto/openssl/crypto/bn/bn_gcd.c
251
sign = -1;
crypto/openssl/crypto/bn/bn_gcd.c
27
int sign;
crypto/openssl/crypto/bn/bn_gcd.c
474
sign = -sign;
crypto/openssl/crypto/bn/bn_gcd.c
486
if (sign < 0) {
crypto/openssl/crypto/bn/bn_gcd.c
73
sign = -1;
crypto/openssl/crypto/bn/bn_intern.c
114
r[j++] = sign * digit;
crypto/openssl/crypto/bn/bn_intern.c
26
int sign = 1;
crypto/openssl/crypto/bn/bn_intern.c
49
sign = -1;
crypto/openssl/crypto/dsa/dsa_meth.c
109
DSA_SIG *(*sign)(const unsigned char *, int, DSA *))
crypto/openssl/crypto/dsa/dsa_meth.c
111
dsam->dsa_do_sign = sign;
crypto/openssl/crypto/ec/ec_kmeth.c
228
int (*sign)(int type, const unsigned char *dgst,
crypto/openssl/crypto/ec/ec_kmeth.c
241
meth->sign = sign;
crypto/openssl/crypto/ec/ec_kmeth.c
316
*psign = meth->sign;
crypto/openssl/crypto/ec/ec_local.h
617
void ossl_ec_GFp_nistp_recode_scalar_bits(unsigned char *sign,
crypto/openssl/crypto/ec/ec_local.h
676
int (*sign)(int type, const unsigned char *dgst, int dlen, unsigned char *sig, unsigned int *siglen, const BIGNUM *kinv,
crypto/openssl/crypto/ec/ecdsa_sign.c
44
if (eckey->meth->sign != NULL)
crypto/openssl/crypto/ec/ecdsa_sign.c
45
return eckey->meth->sign(type, dgst, dlen, sig, siglen, kinv, r, eckey);
crypto/openssl/crypto/ec/ecp_nistp224.c
1136
u8 sign, digit;
crypto/openssl/crypto/ec/ecp_nistp224.c
1194
ossl_ec_GFp_nistp_recode_scalar_bits(&sign, &digit, bits);
crypto/openssl/crypto/ec/ecp_nistp224.c
1200
copy_conditional(tmp[1], tmp[3], sign);
crypto/openssl/crypto/ec/ecp_nistp256.c
1678
u8 sign, digit;
crypto/openssl/crypto/ec/ecp_nistp256.c
1738
ossl_ec_GFp_nistp_recode_scalar_bits(&sign, &digit, bits);
crypto/openssl/crypto/ec/ecp_nistp256.c
1746
copy_small_conditional(ftmp, tmp[1], (((limb)sign) - 1));
crypto/openssl/crypto/ec/ecp_nistp384.c
1415
u8 sign, digit;
crypto/openssl/crypto/ec/ecp_nistp384.c
1463
ossl_ec_GFp_nistp_recode_scalar_bits(&sign, &digit, bits);
crypto/openssl/crypto/ec/ecp_nistp384.c
1471
copy_conditional(tmp[1], tmp[3], (-(limb)sign));
crypto/openssl/crypto/ec/ecp_nistp521.c
1508
u8 sign, digit;
crypto/openssl/crypto/ec/ecp_nistp521.c
1555
ossl_ec_GFp_nistp_recode_scalar_bits(&sign, &digit, bits);
crypto/openssl/crypto/ec/ecp_nistp521.c
1563
copy_conditional(tmp[1], tmp[3], (-(limb)sign));
crypto/openssl/crypto/ec/ecp_nistp521.c
860
limb is_p, is_greater, sign;
crypto/openssl/crypto/ec/ecp_nistp521.c
952
sign = -(out[0] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
953
out[0] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
954
out[1] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
955
sign = -(out[1] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
956
out[1] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
957
out[2] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
958
sign = -(out[2] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
959
out[2] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
960
out[3] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
961
sign = -(out[3] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
962
out[3] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
963
out[4] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
964
sign = -(out[4] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
965
out[4] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
966
out[5] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
967
sign = -(out[0] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
968
out[5] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
969
out[6] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
970
sign = -(out[6] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
971
out[6] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
972
out[7] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
973
sign = -(out[7] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
974
out[7] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
975
out[8] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
976
sign = -(out[5] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
977
out[5] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
978
out[6] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
979
sign = -(out[6] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
980
out[6] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
981
out[7] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
982
sign = -(out[7] >> 63);
crypto/openssl/crypto/ec/ecp_nistp521.c
983
out[7] += (two58 & sign);
crypto/openssl/crypto/ec/ecp_nistp521.c
984
out[8] -= (1 & sign);
crypto/openssl/crypto/ec/ecp_nistputil.c
211
void ossl_ec_GFp_nistp_recode_scalar_bits(unsigned char *sign,
crypto/openssl/crypto/ec/ecp_nistputil.c
222
*sign = s & 1;
crypto/openssl/crypto/evp/evp_local.h
169
OSSL_FUNC_signature_sign_fn *sign;
crypto/openssl/crypto/evp/pmeth_lib.c
1705
int (*sign)(EVP_PKEY_CTX *ctx,
crypto/openssl/crypto/evp/pmeth_lib.c
1711
pmeth->sign = sign;
crypto/openssl/crypto/evp/pmeth_lib.c
1901
*psign = pmeth->sign;
crypto/openssl/crypto/evp/signature.c
1012
if (signature->sign == NULL) {
crypto/openssl/crypto/evp/signature.c
1018
ret = signature->sign(ctx->op.sig.algctx, sig, siglen,
crypto/openssl/crypto/evp/signature.c
1026
if (ctx->pmeth == NULL || ctx->pmeth->sign == NULL) {
crypto/openssl/crypto/evp/signature.c
1031
M_check_autoarg(ctx, sig, siglen, EVP_F_EVP_PKEY_SIGN) return ctx->pmeth->sign(ctx, sig, siglen, tbs, tbslen);
crypto/openssl/crypto/evp/signature.c
323
&& signature->sign == NULL)
crypto/openssl/crypto/evp/signature.c
325
&& signature->sign == NULL
crypto/openssl/crypto/evp/signature.c
334
&& (signature->sign != NULL
crypto/openssl/crypto/evp/signature.c
856
|| (operation == EVP_PKEY_OP_SIGN && ctx->pmeth->sign == NULL)
crypto/openssl/crypto/evp/signature.c
93
if (signature->sign != NULL)
crypto/openssl/crypto/evp/signature.c
95
signature->sign = OSSL_FUNC_signature_sign(fns);
crypto/openssl/crypto/pkcs7/pk7_asn1.c
25
ADB_ENTRY(NID_pkcs7_signed, ASN1_NDEF_EXP_OPT(PKCS7, d.sign, PKCS7_SIGNED, 0)),
crypto/openssl/crypto/pkcs7/pk7_doit.c
1032
untrusted = p7->d.sign->cert;
crypto/openssl/crypto/pkcs7/pk7_doit.c
1033
crls = p7->d.sign->crl;
crypto/openssl/crypto/pkcs7/pk7_doit.c
277
md_sk = p7->d.sign->md_algs;
crypto/openssl/crypto/pkcs7/pk7_doit.c
278
os = pkcs7_get1_data(p7->d.sign->contents);
crypto/openssl/crypto/pkcs7/pk7_doit.c
484
data_body = PKCS7_get_octet_string(p7->d.sign->contents);
crypto/openssl/crypto/pkcs7/pk7_doit.c
489
md_sk = p7->d.sign->md_algs;
crypto/openssl/crypto/pkcs7/pk7_doit.c
833
si_sk = p7->d.sign->signer_info;
crypto/openssl/crypto/pkcs7/pk7_doit.c
834
if (p7->d.sign->contents == NULL) {
crypto/openssl/crypto/pkcs7/pk7_doit.c
838
os = PKCS7_get_octet_string(p7->d.sign->contents);
crypto/openssl/crypto/pkcs7/pk7_doit.c
840
if (PKCS7_type_is_data(p7->d.sign->contents) && p7->detached) {
crypto/openssl/crypto/pkcs7/pk7_doit.c
843
p7->d.sign->contents->d.data = NULL;
crypto/openssl/crypto/pkcs7/pk7_lib.c
128
if ((p7->d.sign = PKCS7_SIGNED_new()) == NULL)
crypto/openssl/crypto/pkcs7/pk7_lib.c
130
if (!ASN1_INTEGER_set(p7->d.sign->version, 1)) {
crypto/openssl/crypto/pkcs7/pk7_lib.c
131
PKCS7_SIGNED_free(p7->d.sign);
crypto/openssl/crypto/pkcs7/pk7_lib.c
132
p7->d.sign = NULL;
crypto/openssl/crypto/pkcs7/pk7_lib.c
205
signer_sk = p7->d.sign->signer_info;
crypto/openssl/crypto/pkcs7/pk7_lib.c
206
md_sk = p7->d.sign->md_algs;
crypto/openssl/crypto/pkcs7/pk7_lib.c
265
sk = &(p7->d.sign->cert);
crypto/openssl/crypto/pkcs7/pk7_lib.c
286
sk = &(p7->d.sign->crl);
crypto/openssl/crypto/pkcs7/pk7_lib.c
31
if (p7->d.sign == NULL) {
crypto/openssl/crypto/pkcs7/pk7_lib.c
37
if (ret && PKCS7_type_is_data(p7->d.sign->contents)) {
crypto/openssl/crypto/pkcs7/pk7_lib.c
39
os = p7->d.sign->contents->d.data;
crypto/openssl/crypto/pkcs7/pk7_lib.c
41
p7->d.sign->contents->d.data = NULL;
crypto/openssl/crypto/pkcs7/pk7_lib.c
429
return p7->d.sign->cert;
crypto/openssl/crypto/pkcs7/pk7_lib.c
51
if (p7->d.sign == NULL || p7->d.sign->contents == NULL
crypto/openssl/crypto/pkcs7/pk7_lib.c
52
|| p7->d.sign->contents->d.ptr == NULL)
crypto/openssl/crypto/pkcs7/pk7_lib.c
548
return p7->d.sign->signer_info;
crypto/openssl/crypto/pkcs7/pk7_lib.c
682
return (X509_find_by_issuer_and_serial(p7->d.sign->cert,
crypto/openssl/crypto/pkcs7/pk7_lib.c
746
if (p7->d.sign == NULL || p7->d.sign->contents == NULL) {
crypto/openssl/crypto/pkcs7/pk7_lib.c
750
os = p7->d.sign->contents->d.data;
crypto/openssl/crypto/pkcs7/pk7_lib.c
96
PKCS7_free(p7->d.sign->contents);
crypto/openssl/crypto/pkcs7/pk7_lib.c
97
p7->d.sign->contents = p7_data;
crypto/openssl/crypto/pkcs7/pk7_mime.c
37
if (p7->d.sign == NULL)
crypto/openssl/crypto/pkcs7/pk7_mime.c
39
mdalgs = p7->d.sign->md_algs;
crypto/openssl/crypto/pkcs7/pk7_smime.c
293
X509_STORE_CTX_set0_crls(cert_ctx, p7->d.sign->crl);
crypto/openssl/crypto/rsa/rsa_meth.c
228
int (*sign)(int type, const unsigned char *m,
crypto/openssl/crypto/rsa/rsa_meth.c
233
meth->rsa_sign = sign;
crypto/openssl/crypto/ts/ts_asn1.c
220
pkcs7_signed = token->d.sign;
crypto/openssl/crypto/ts/ts_rsp_sign.c
710
if (!ASN1_INTEGER_set(p7->d.sign->version, 3))
crypto/openssl/crypto/ts/ts_rsp_verify.c
129
untrusted = sk_X509_new_reserve(NULL, sk_X509_num(certs) + sk_X509_num(token->d.sign->cert));
crypto/openssl/crypto/ts/ts_rsp_verify.c
132
|| !X509_add_certs(untrusted, token->d.sign->cert, 0))
crypto/openssl/demos/signature/rsa_pss_direct.c
196
if (sign(libctx, &sig, &sig_len) == 0)
crypto/openssl/demos/signature/rsa_pss_hash.c
179
if (sign(libctx, &sig, &sig_len) == 0)
crypto/openssl/include/crypto/evp.h
156
int (*sign)(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen,
crypto/openssl/include/openssl/dsa.h
235
DSA_SIG *(*sign)(const unsigned char *, int, DSA *));
crypto/openssl/include/openssl/ec.h
1490
int (*sign)(int type, const unsigned char *dgst,
crypto/openssl/include/openssl/evp.h
2116
int (*sign)(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen,
crypto/openssl/include/openssl/pkcs7.h
210
PKCS7_SIGNED *sign; /* field name 'signed' would clash with C keyword */
crypto/openssl/include/openssl/rsa.h
574
int (*sign)(int type, const unsigned char *m,
crypto/openssl/providers/common/include/prov/securitycheck.h
27
int ossl_dsa_check_key(const DSA *dsa, int sign);
crypto/openssl/providers/common/securitycheck.c
149
int ossl_dsa_check_key(const DSA *dsa, int sign)
crypto/openssl/providers/common/securitycheck.c
175
if (!sign) {
crypto/openssl/providers/implementations/signature/dsa_sig.c
261
static int dsa_check_key(PROV_DSA_CTX *ctx, int sign, const char *desc)
crypto/openssl/providers/implementations/signature/dsa_sig.c
263
int approved = ossl_dsa_check_key(ctx->dsa, sign);
crypto/openssl/ssl/statem/extensions.c
1459
unsigned char *binderout, SSL_SESSION *sess, int sign,
crypto/openssl/ssl/statem/extensions.c
1603
if (!sign)
crypto/openssl/ssl/statem/extensions.c
1617
if (sign) {
crypto/openssl/ssl/statem/statem_local.h
278
SSL_SESSION *sess, int sign, int external);
crypto/openssl/test/acvp_test.c
246
ECDSA_SIG *sign = d2i_ECDSA_SIG(NULL, &sig, sig_len);
crypto/openssl/test/acvp_test.c
248
if (sign == NULL)
crypto/openssl/test/acvp_test.c
250
r1 = ECDSA_SIG_get0_r(sign);
crypto/openssl/test/acvp_test.c
251
s1 = ECDSA_SIG_get0_s(sign);
crypto/openssl/test/acvp_test.c
275
ECDSA_SIG_free(sign);
crypto/openssl/test/acvp_test.c
312
ECDSA_SIG *sign = NULL;
crypto/openssl/test/acvp_test.c
322
if (!TEST_ptr(sign = ECDSA_SIG_new())
crypto/openssl/test/acvp_test.c
325
|| !TEST_true(ECDSA_SIG_set0(sign, rbn, sbn)))
crypto/openssl/test/acvp_test.c
329
if (!TEST_int_gt((sig_len = i2d_ECDSA_SIG(sign, &sig)), 0)
crypto/openssl/test/acvp_test.c
348
ECDSA_SIG_free(sign);
crypto/openssl/test/acvp_test.c
759
DSA_SIG *sign = d2i_DSA_SIG(NULL, &sig, sig_len);
crypto/openssl/test/acvp_test.c
761
if (sign == NULL)
crypto/openssl/test/acvp_test.c
763
DSA_SIG_get0(sign, &r1, &s1);
crypto/openssl/test/acvp_test.c
787
DSA_SIG_free(sign);
crypto/openssl/test/acvp_test.c
826
DSA_SIG *sign = NULL;
crypto/openssl/test/acvp_test.c
843
if (!TEST_ptr(sign = DSA_SIG_new())
crypto/openssl/test/acvp_test.c
846
|| !TEST_true(DSA_SIG_set0(sign, rbn, sbn)))
crypto/openssl/test/acvp_test.c
855
if (!TEST_int_gt((sig_len = i2d_DSA_SIG(sign, &sig)), 0)
crypto/openssl/test/acvp_test.c
866
DSA_SIG_free(sign);
crypto/openssl/test/bntest.c
146
static int sign[8] = { 0, 0, 0, 1, 1, 0, 1, 1 };
crypto/openssl/test/bntest.c
148
return sign[(neg++) % 8];
lib/libc/aarch64/_fpmath.h
34
unsigned int sign :1;
lib/libc/amd64/_fpmath.h
35
unsigned int sign :1;
lib/libc/arm/_fpmath.h
44
unsigned int sign :1;
lib/libc/arm/_fpmath.h
49
unsigned int sign :1;
lib/libc/gdtoa/_hdtoa.c
116
float redux = one[u.bits.sign];
lib/libc/gdtoa/_hdtoa.c
72
__hdtoa(double d, const char *xdigs, int ndigits, int *decpt, int *sign,
lib/libc/gdtoa/_hdtoa.c
81
*sign = u.bits.sign;
lib/libc/gdtoa/_hldtoa.c
130
float redux = one[u.bits.sign];
lib/libc/gdtoa/_hldtoa.c
170
__hldtoa(long double e, const char *xdigs, int ndigits, int *decpt, int *sign,
lib/libc/gdtoa/_hldtoa.c
174
return (__hdtoa((double)e, xdigs, ndigits, decpt, sign, rve));
lib/libc/gdtoa/_hldtoa.c
76
__hldtoa(long double e, const char *xdigs, int ndigits, int *decpt, int *sign,
lib/libc/gdtoa/_hldtoa.c
89
*sign = u.bits.sign;
lib/libc/gdtoa/_ldtoa.c
46
__ldtoa(long double *ld, int mode, int ndigits, int *decpt, int *sign,
lib/libc/gdtoa/_ldtoa.c
73
*sign = u.bits.sign;
lib/libc/gdtoa/_ldtoa.c
74
fpi.rounding ^= (fpi.rounding >> 1) & u.bits.sign;
lib/libc/gen/timezone.c
107
char sign;
lib/libc/gen/timezone.c
119
sign = '+';
lib/libc/gen/timezone.c
122
sign = '-';
lib/libc/gen/timezone.c
124
"GMT%c%d:%02d",sign,zone / 60,zone % 60);
lib/libc/i386/_fpmath.h
35
unsigned int sign :1;
lib/libc/include/fpmath.h
46
unsigned int sign :1;
lib/libc/include/fpmath.h
48
unsigned int sign :1;
lib/libc/include/fpmath.h
67
unsigned int sign :1;
lib/libc/include/fpmath.h
72
unsigned int sign :1;
lib/libc/powerpc/_fpmath.h
36
unsigned int sign :1;
lib/libc/powerpc/_fpmath.h
38
unsigned int sign :1;
lib/libc/powerpc64/_fpmath.h
36
unsigned int sign :1;
lib/libc/powerpc64/_fpmath.h
38
unsigned int sign :1;
lib/libc/riscv/_fpmath.h
34
unsigned int sign :1;
lib/libc/stdio/vfprintf.c
1005
if (sign)
lib/libc/stdio/vfprintf.c
1006
PRINT(&sign, 1);
lib/libc/stdio/vfprintf.c
314
char sign; /* sign prefix (' ', '+', '-', or \0) */
lib/libc/stdio/vfprintf.c
495
sign = '\0';
lib/libc/stdio/vfprintf.c
506
if (!sign)
lib/libc/stdio/vfprintf.c
507
sign = ' ';
lib/libc/stdio/vfprintf.c
528
sign = '+';
lib/libc/stdio/vfprintf.c
679
sign = '\0';
lib/libc/stdio/vfprintf.c
690
sign = '-';
lib/libc/stdio/vfprintf.c
696
sign = '-';
lib/libc/stdio/vfprintf.c
769
sign = '-';
lib/libc/stdio/vfprintf.c
773
sign = '\0';
lib/libc/stdio/vfprintf.c
824
sign = '\0';
lib/libc/stdio/vfprintf.c
895
sign = '\0';
lib/libc/stdio/vfprintf.c
925
nosign: sign = '\0';
lib/libc/stdio/vfprintf.c
969
sign = '\0';
lib/libc/stdio/vfprintf.c
988
if (sign)
lib/libc/stdio/vfwprintf.c
1026
sign = '\0';
lib/libc/stdio/vfwprintf.c
1045
if (sign)
lib/libc/stdio/vfwprintf.c
1062
if (sign)
lib/libc/stdio/vfwprintf.c
1063
PRINT(&sign, 1);
lib/libc/stdio/vfwprintf.c
390
wchar_t sign; /* sign prefix (' ', '+', '-', or \0) */
lib/libc/stdio/vfwprintf.c
564
sign = '\0';
lib/libc/stdio/vfwprintf.c
575
if (!sign)
lib/libc/stdio/vfwprintf.c
576
sign = ' ';
lib/libc/stdio/vfwprintf.c
597
sign = '+';
lib/libc/stdio/vfwprintf.c
736
sign = '\0';
lib/libc/stdio/vfwprintf.c
747
sign = '-';
lib/libc/stdio/vfwprintf.c
753
sign = '-';
lib/libc/stdio/vfwprintf.c
832
sign = '-';
lib/libc/stdio/vfwprintf.c
836
sign = '\0';
lib/libc/stdio/vfwprintf.c
952
sign = '\0';
lib/libc/stdio/vfwprintf.c
982
nosign: sign = '\0';
lib/libc/stdio/xprintf_float.c
157
char sign; /* sign prefix (' ', '+', '-', or \0) */
lib/libc/stdio/xprintf_float.c
181
sign = pi->showsign;
lib/libc/stdio/xprintf_float.c
261
sign = '-';
lib/libc/stdio/xprintf_float.c
265
sign = '\0';
lib/libc/stdio/xprintf_float.c
341
if (sign)
lib/libc/stdio/xprintf_float.c
351
if (sign)
lib/libc/stdio/xprintf_float.c
352
ret += __printf_puts(io, &sign, 1);
lib/libc/stdio/xprintf_int.c
262
int l, ngrp, rdx, sign, zext;
lib/libc/stdio/xprintf_int.c
289
sign = 1;
lib/libc/stdio/xprintf_int.c
296
sign = 0;
lib/libc/stdio/xprintf_int.c
301
sign = 0;
lib/libc/stdio/xprintf_int.c
306
sign = 0;
lib/libc/stdio/xprintf_int.c
314
if (sign)
lib/libc/stdio/xprintf_int.c
319
if (sign && argp->intmaxarg < 0) {
lib/libc/stdio/xprintf_int.c
325
if (sign && argp->longarg < 0) {
lib/libc/stdio/xprintf_int.c
331
if (sign && (short)argp->intarg < 0) {
lib/libc/stdio/xprintf_int.c
337
if (sign && (signed char)argp->intarg < 0) {
lib/libc/stdio/xprintf_int.c
343
if (sign && argp->intarg < 0) {
lib/libc/stdtime/strftime.c
487
char const * sign;
lib/libc/stdtime/strftime.c
527
sign = "-";
lib/libc/stdtime/strftime.c
530
sign = "+";
lib/libc/stdtime/strftime.c
531
pt = _add(sign, pt, ptlim);
lib/libc/stdtime/strptime.c
566
int sign = 1;
lib/libc/stdtime/strptime.c
570
sign = -1;
lib/libc/stdtime/strptime.c
589
if (i > 1400 || (sign == -1 && i > 1200) ||
lib/libc/stdtime/strptime.c
592
tm->tm_hour -= sign * (i / 100);
lib/libc/stdtime/strptime.c
593
tm->tm_min -= sign * (i % 100);
lib/libc/xdr/xdr_float.c
120
is.sign = vs.sign;
lib/libc/xdr/xdr_float.c
143
vsp->sign = is.sign;
lib/libc/xdr/xdr_float.c
159
unsigned int sign : 1;
lib/libc/xdr/xdr_float.c
167
unsigned int sign : 1;
lib/libc/xdr/xdr_float.c
240
id.sign = vd.sign;
lib/libc/xdr/xdr_float.c
280
vd.sign = id.sign;
lib/libc/xdr/xdr_float.c
67
unsigned int sign : 1;
lib/libc/xdr/xdr_float.c
74
unsigned int sign : 1;
lib/libiconv_modules/mapper_zone/citrus_mapper_zone.c
102
int c, i, sign = 0;
lib/libiconv_modules/mapper_zone/citrus_mapper_zone.c
110
if (sign == 0 && (c == '+' || c == '-')) {
lib/libiconv_modules/mapper_zone/citrus_mapper_zone.c
111
sign = c;
lib/libiconv_modules/mapper_zone/citrus_mapper_zone.c
125
if (sign == '-')
lib/libutil/humanize_number.c
114
sign = -1;
lib/libutil/humanize_number.c
118
sign = 1;
lib/libutil/humanize_number.c
171
sign * s1, localeconv()->decimal_point, s2,
lib/libutil/humanize_number.c
175
sign * (quotient + (remainder + divisor / 2) / divisor),
lib/libutil/humanize_number.c
52
int i, r, remainder, s1, s2, sign;
lib/msun/ld80/e_powl.c
564
int n, e, sign, asign, lx;
lib/msun/ld80/e_powl.c
591
sign = -1;
lib/msun/ld80/e_powl.c
596
sign = 1;
lib/msun/ld80/e_powl.c
628
sign = -sign;
lib/msun/ld80/e_powl.c
653
if( sign < 0 )
lib/msun/src/e_fmodl.c
71
sx = ux.bits.sign;
lib/msun/src/e_jn.c
215
int32_t sign;
lib/msun/src/e_jn.c
226
sign = 1;
lib/msun/src/e_jn.c
229
sign = 1 - ((n&1)<<1);
lib/msun/src/e_jn.c
232
if(n==1) return(sign*y1(x));
lib/msun/src/e_jn.c
269
if(sign>0) return b; else return -b;
lib/msun/src/e_jnf.c
173
int32_t sign;
lib/msun/src/e_jnf.c
181
sign = 1;
lib/msun/src/e_jnf.c
184
sign = 1 - ((n&1)<<1);
lib/msun/src/e_jnf.c
187
if(n==1) return(sign*y1f(x));
lib/msun/src/e_jnf.c
200
if(sign>0) return b; else return -b;
lib/msun/src/e_sqrt.c
101
int32_t sign = (int)0x80000000;
lib/msun/src/e_sqrt.c
114
if(((ix0&(~sign))|ix1)==0) return x;/* sqrt(+-0) = +-0 */
lib/msun/src/e_sqrt.c
133
ix0 += ix0 + ((ix1&sign)>>31);
lib/msun/src/e_sqrt.c
139
ix0 += ix0 + ((ix1&sign)>>31);
lib/msun/src/e_sqrt.c
151
ix0 += ix0 + ((ix1&sign)>>31);
lib/msun/src/e_sqrt.c
156
r = sign;
lib/msun/src/e_sqrt.c
162
if(((t1&sign)==sign)&&(s1&sign)==0) s0 += 1;
lib/msun/src/e_sqrt.c
168
ix0 += ix0 + ((ix1&sign)>>31);
lib/msun/src/e_sqrt.c
188
if ((q&1)==1) ix1 |= sign;
lib/msun/src/e_sqrtf.c
32
int32_t sign = (int)0x80000000;
lib/msun/src/e_sqrtf.c
45
if((ix&(~sign))==0) return x;/* sqrt(+-0) = +-0 */
lib/msun/src/e_sqrtl.c
95
if (u.bits.sign)
lib/msun/src/s_cbrt.c
42
u_int32_t sign;
lib/msun/src/s_cbrt.c
46
sign=hx&0x80000000; /* sign= sign(x) */
lib/msun/src/s_cbrt.c
47
hx ^=sign;
lib/msun/src/s_cbrt.c
71
INSERT_WORDS(t,sign|((high&0x7fffffff)/3+B2),0);
lib/msun/src/s_cbrt.c
73
INSERT_WORDS(t,sign|(hx/3+B1),0);
lib/msun/src/s_cbrtf.c
33
u_int32_t sign;
lib/msun/src/s_cbrtf.c
37
sign=hx&0x80000000; /* sign= sign(x) */
lib/msun/src/s_cbrtf.c
38
hx ^=sign;
lib/msun/src/s_cbrtf.c
48
SET_FLOAT_WORD(t,sign|((high&0x7fffffff)/3+B2));
lib/msun/src/s_cbrtf.c
50
SET_FLOAT_WORD(t,sign|(hx/3+B1));
lib/msun/src/s_ceill.c
60
u.e = u.bits.sign ? -0.0 : 1.0;
lib/msun/src/s_ceill.c
65
if (!u.bits.sign) {
lib/msun/src/s_ceill.c
82
if (!u.bits.sign) {
lib/msun/src/s_copysignl.c
40
ux.bits.sign = uy.bits.sign;
lib/msun/src/s_cosl.c
63
z.bits.sign = 0;
lib/msun/src/s_fabsl.c
41
u.bits.sign = 0;
lib/msun/src/s_floorl.c
60
u.e = u.bits.sign ? -1.0 : 0.0;
lib/msun/src/s_floorl.c
65
if (u.bits.sign) {
lib/msun/src/s_floorl.c
82
if (u.bits.sign) {
lib/msun/src/s_fmax.c
56
if (u[0].bits.sign != u[1].bits.sign)
lib/msun/src/s_fmax.c
57
return (u[u[0].bits.sign].d);
lib/msun/src/s_fmaxf.c
55
if (u[0].bits.sign != u[1].bits.sign)
lib/msun/src/s_fmaxf.c
56
return (u[u[0].bits.sign].f);
lib/msun/src/s_fmaximum.c
56
if (u[0].bits.sign != u[1].bits.sign)
lib/msun/src/s_fmaximum.c
57
return (u[u[0].bits.sign].d);
lib/msun/src/s_fmaximumf.c
55
if (u[0].bits.sign != u[1].bits.sign)
lib/msun/src/s_fmaximumf.c
56
return (u[u[0].bits.sign].f);
lib/msun/src/s_fmaximuml.c
50
if (u[0].bits.sign != u[1].bits.sign)
lib/msun/src/s_fmaximuml.c
51
return (u[0].bits.sign ? y : x);
lib/msun/src/s_fmaxl.c
50
if (u[0].bits.sign != u[1].bits.sign)
lib/msun/src/s_fmaxl.c
51
return (u[0].bits.sign ? y : x);
lib/msun/src/s_fmin.c
56
if (u[0].bits.sign != u[1].bits.sign)
lib/msun/src/s_fmin.c
57
return (u[u[1].bits.sign].d);
lib/msun/src/s_fminf.c
55
if (u[0].bits.sign != u[1].bits.sign)
lib/msun/src/s_fminf.c
56
return (u[u[1].bits.sign].f);
lib/msun/src/s_fminimum.c
56
if (u[0].bits.sign != u[1].bits.sign)
lib/msun/src/s_fminimum.c
57
return (u[u[1].bits.sign].d);
lib/msun/src/s_fminimumf.c
55
if (u[0].bits.sign != u[1].bits.sign)
lib/msun/src/s_fminimumf.c
56
return (u[u[1].bits.sign].f);
lib/msun/src/s_fminimuml.c
50
if (u[0].bits.sign != u[1].bits.sign)
lib/msun/src/s_fminimuml.c
51
return (u[1].bits.sign ? y : x);
lib/msun/src/s_fminl.c
50
if (u[0].bits.sign != u[1].bits.sign)
lib/msun/src/s_fminl.c
51
return (u[1].bits.sign ? y : x);
lib/msun/src/s_logbl.c
28
u.bits.sign = 1;
lib/msun/src/s_modfl.c
67
*iptr = zero[ux.bits.sign];
lib/msun/src/s_modfl.c
73
return (zero[ux.bits.sign]);
lib/msun/src/s_modfl.c
87
return (zero[ux.bits.sign]);
lib/msun/src/s_modfl.c
92
return (zero[ux.bits.sign]);
lib/msun/src/s_nextafterl.c
47
ux.bits.sign = uy.bits.sign;
lib/msun/src/s_nexttoward.c
46
INSERT_WORDS(x,uy.bits.sign<<31,1); /* return +-minsubnormal */
lib/msun/src/s_nexttowardf.c
37
SET_FLOAT_WORD(x,(uy.bits.sign<<31)|1);/* return +-minsubnormal */
lib/msun/src/s_remquol.c
164
ux.bits.sign ^= sx;
lib/msun/src/s_remquol.c
74
sx = ux.bits.sign;
lib/msun/src/s_remquol.c
75
sxy = sx ^ uy.bits.sign;
lib/msun/src/s_remquol.c
76
ux.bits.sign = 0; /* |x| */
lib/msun/src/s_remquol.c
77
uy.bits.sign = 0; /* |y| */
lib/msun/src/s_rintl.c
58
int ex, sign;
lib/msun/src/s_rintl.c
69
sign = expsign >> 15;
lib/msun/src/s_rintl.c
78
x += shift[sign];
lib/msun/src/s_rintl.c
79
x -= shift[sign];
lib/msun/src/s_rintl.c
86
return (zero[sign]);
lib/msun/src/s_signbit.c
39
return (u.bits.sign);
lib/msun/src/s_signbit.c
48
return (u.bits.sign);
lib/msun/src/s_signbit.c
57
return (u.bits.sign);
lib/msun/src/s_sincosl.c
54
z.bits.sign = 0;
lib/msun/src/s_sinl.c
53
s = z.bits.sign;
lib/msun/src/s_sinl.c
54
z.bits.sign = 0;
lib/msun/src/s_tanl.c
59
s = z.bits.sign;
lib/msun/src/s_tanl.c
60
z.bits.sign = 0;
lib/msun/src/s_truncl.c
45
u.e = zero[u.bits.sign];
libexec/rtld-elf/rtld_printf.c
128
int ch, n, sign;
libexec/rtld-elf/rtld_printf.c
154
sign = 0; dot = 0; dwidth = 0; upper = 0;
libexec/rtld-elf/rtld_printf.c
164
sign = '+';
libexec/rtld-elf/rtld_printf.c
285
sign = 0;
libexec/rtld-elf/rtld_printf.c
293
if (sign) {
libexec/rtld-elf/rtld_printf.c
294
sign = 0;
libexec/rtld-elf/rtld_printf.c
373
sign = '-';
libexec/rtld-elf/rtld_printf.c
385
if (sign)
libexec/rtld-elf/rtld_printf.c
395
if (sign)
libexec/rtld-elf/rtld_printf.c
396
PCHAR(sign);
sbin/growfs/growfs.c
493
frag_adjust(ufs2_daddr_t frag, int sign)
sbin/growfs/growfs.c
518
acg.cg_frsum[fragsize] += sign;
sbin/growfs/growfs.c
520
fragsize, sign);
sbin/growfs/growfs.c
529
acg.cg_frsum[fragsize] += sign;
sbin/growfs/growfs.c
530
DBG_PRINT2("frag_adjust [%d]+=%d\n", fragsize, sign);
sbin/growfs/growfs.c
532
DBG_PRINT2("frag_adjust [[%d]]+=%d\n", fragsize, sign);
sbin/sysctl/sysctl.c
1072
int i, hexlen, sign, ctltype;
sbin/sysctl/sysctl.c
1198
sign = ctl_sign[ctltype];
sbin/sysctl/sysctl.c
1265
else if (!sign)
stand/ficl/math64.c
171
int sign = 1;
stand/ficl/math64.c
175
sign = -sign;
stand/ficl/math64.c
181
sign = -sign;
stand/ficl/math64.c
186
if (sign > 0)
stand/ficl/vm.c
665
int sign = ((radix == 10) && (value < 0));
stand/ficl/vm.c
674
if (sign)
stand/ficl/vm.c
703
if (sign)
stand/ficl/words.c
4980
dictAppendWord(dp, "sign", sign, FW_DEFAULT);
stand/libsa/pkgfs.c
575
int digit, sign, base;
stand/libsa/pkgfs.c
584
sign = -1;
stand/libsa/pkgfs.c
587
sign = 1;
stand/libsa/pkgfs.c
599
return (sign < 0) ? -l : l;
stand/libsa/printf.c
258
int base, lflag, qflag, tmp, width, ladjust, sharpflag, neg, sign, dot;
stand/libsa/printf.c
289
sign = 0; dot = 0; dwidth = 0; upper = 0;
stand/libsa/printf.c
299
sign = 1;
stand/libsa/printf.c
379
sign = 1;
stand/libsa/printf.c
420
sign = 0;
stand/libsa/printf.c
428
if (sign)
stand/libsa/printf.c
469
sign = 1;
stand/libsa/printf.c
475
sign = 0;
stand/libsa/printf.c
511
if (sign && (intmax_t)num < 0) {
sys/arm64/arm64/identcpu.c
2491
mrs_field_cmp(uint64_t a, uint64_t b, u_int shift, int width, bool sign)
sys/arm64/arm64/identcpu.c
2503
if (sign) {
sys/arm64/arm64/identcpu.c
2549
fields[j].shift, fields[j].sign);
sys/arm64/arm64/identcpu.c
2579
u_int width, u_int shift, bool sign)
sys/arm64/arm64/identcpu.c
2589
if (mrs_field_cmp(new_val, cur, shift, width, sign) == 0)
sys/arm64/arm64/identcpu.c
2596
if (mrs_field_cmp(new_val, cur, shift, width, sign) < 0)
sys/arm64/arm64/identcpu.c
2606
if (mrs_field_cmp(new_val, cur, shift, width, sign) > 0)
sys/arm64/arm64/identcpu.c
2648
fields[j].sign);
sys/arm64/arm64/identcpu.c
2656
fields[j].sign);
sys/arm64/arm64/identcpu.c
2661
fields[j].shift, fields[j].sign);
sys/arm64/arm64/identcpu.c
2797
4, fields[j].sign) >= 0) {
sys/arm64/arm64/identcpu.c
420
bool sign;
sys/arm64/arm64/identcpu.c
428
.sign = false, \
sys/arm64/arm64/identcpu.c
439
.sign = (_sign), \
sys/arm64/arm64/identcpu.c
88
uint64_t value, u_int width, u_int shift, bool sign);
sys/cam/ata/ata_xpt.c
843
int sign = (done_ccb->ataio.res.lba_high << 8) +
sys/cam/ata/ata_xpt.c
846
("SIGNATURE: %04x\n", sign));
sys/cam/ata/ata_xpt.c
847
if (sign == 0x0000 &&
sys/cam/ata/ata_xpt.c
851
} else if (sign == 0x9669 &&
sys/cam/ata/ata_xpt.c
863
} else if (sign == 0xc33c &&
sys/cam/ata/ata_xpt.c
867
} else if (sign == 0xeb14 &&
sys/cam/ata/ata_xpt.c
874
"Unexpected signature 0x%04x\n", sign);
sys/cddl/dev/dtrace/dtrace_debug.c
235
int base, lflag, qflag, tmp, width, ladjust, sharpflag, neg, sign, dot;
sys/cddl/dev/dtrace/dtrace_debug.c
259
sign = 0; dot = 0; dwidth = 0; upper = 0;
sys/cddl/dev/dtrace/dtrace_debug.c
269
sign = 1;
sys/cddl/dev/dtrace/dtrace_debug.c
349
sign = 1;
sys/cddl/dev/dtrace/dtrace_debug.c
390
sign = 0;
sys/cddl/dev/dtrace/dtrace_debug.c
398
if (sign)
sys/cddl/dev/dtrace/dtrace_debug.c
435
sign = 1;
sys/cddl/dev/dtrace/dtrace_debug.c
441
sign = 0;
sys/cddl/dev/dtrace/dtrace_debug.c
477
if (sign && (intmax_t)num < 0) {
sys/ddb/db_pprint.c
65
boolean_t sign = !!(CTF_INT_ENCODING(data) & CTF_INT_SIGNED);
sys/ddb/db_pprint.c
75
(long)db_get_value(addr, (bits / 8) ? (bits / 8) : 1, sign));
sys/dev/bhnd/nvram/bhnd_nvram_subr.c
716
bool negative, sign, twos_compl;
sys/dev/bhnd/nvram/bhnd_nvram_subr.c
737
sign = false;
sys/dev/bhnd/nvram/bhnd_nvram_subr.c
756
sign = true;
sys/dev/bhnd/nvram/bhnd_nvram_subr.c
759
sign = true;
sys/dev/bhnd/nvram/bhnd_nvram_subr.c
793
if (!sign && base == 16)
sys/dev/cxgbe/firmware/t4fw_interface.h
9439
__u8 sign;
sys/dev/oce/oce_hw.h
2123
uint8_t sign[52];
sys/dev/smartpqi/smartpqi_defines.h
336
#define PRINT_PQI_SIGNATURE(sign) { int i = 0; \
sys/dev/smartpqi/smartpqi_defines.h
339
si[i] = *((char *)&(sign)+i); \
sys/dev/smartpqi/smartpqi_features.c
474
if (memcmp(conf_table->sign, PQI_CONF_TABLE_SIGNATURE,
sys/dev/smartpqi/smartpqi_features.c
475
sizeof(conf_table->sign)) != 0) {
sys/dev/smartpqi/smartpqi_structures.h
155
uint8_t sign[8]; /* "CFGTABLE" */
sys/fs/tarfs/tarfs_vfsops.c
127
int sign;
sys/fs/tarfs/tarfs_vfsops.c
131
sign = -1;
sys/fs/tarfs/tarfs_vfsops.c
134
sign = 1;
sys/fs/tarfs/tarfs_vfsops.c
147
*num = val * sign;
sys/kern/kern_sysctl.c
2716
int sign, ctltype, hexlen, xflag, error;
sys/kern/kern_sysctl.c
2736
sign = ctl_sign[ctltype];
sys/kern/kern_sysctl.c
2797
else if (!sign)
sys/kern/subr_prf.c
684
int ch, n, sign;
sys/kern/subr_prf.c
715
sign = 0; dot = 0; bconv = 0; dwidth = 0; upper = 0;
sys/kern/subr_prf.c
725
sign = '+';
sys/kern/subr_prf.c
839
sign = 0;
sys/kern/subr_prf.c
847
if (sign) {
sys/kern/subr_prf.c
848
sign = 0;
sys/kern/subr_prf.c
931
sign = '-';
sys/kern/subr_prf.c
943
if (sign)
sys/kern/subr_prf.c
953
if (sign)
sys/kern/subr_prf.c
954
PCHAR(sign);
sys/powerpc/fpu/fpu_implode.c
159
toinf(struct fpemu *fe, int sign)
sys/powerpc/fpu/fpu_implode.c
175
inf = sign == 0;
sys/powerpc/fpu/fpu_implode.c
179
inf = sign;
sys/powerpc/fpu/fpu_implode.c
197
int sign, exp;
sys/powerpc/fpu/fpu_implode.c
199
sign = fp->fp_sign;
sys/powerpc/fpu/fpu_implode.c
221
if (i >= ((u_int)0x80000000 + sign))
sys/powerpc/fpu/fpu_implode.c
223
return (sign ? -i : i);
sys/powerpc/fpu/fpu_implode.c
230
return (0x7fffffff + sign);
sys/powerpc/fpu/fpu_implode.c
243
int sign, exp;
sys/powerpc/fpu/fpu_implode.c
245
sign = fp->fp_sign;
sys/powerpc/fpu/fpu_implode.c
268
if (i >= ((u_int64_t)0x8000000000000000LL + sign))
sys/powerpc/fpu/fpu_implode.c
270
return (sign ? -i : i);
sys/powerpc/fpu/fpu_implode.c
277
return (0x7fffffffffffffffLL + sign);
sys/powerpc/fpu/fpu_implode.c
287
u_int sign = fp->fp_sign << 31;
sys/powerpc/fpu/fpu_implode.c
305
return (sign | SNG_EXP(SNG_EXP_INFNAN));
sys/powerpc/fpu/fpu_implode.c
307
return (sign);
sys/powerpc/fpu/fpu_implode.c
334
return (sign | SNG_EXP(1) | 0);
sys/powerpc/fpu/fpu_implode.c
338
return (sign | SNG_EXP(0) | fp->fp_mant[3]);
sys/powerpc/fpu/fpu_implode.c
350
if (toinf(fe, sign))
sys/powerpc/fpu/fpu_implode.c
351
return (sign | SNG_EXP(SNG_EXP_INFNAN));
sys/powerpc/fpu/fpu_implode.c
352
return (sign | SNG_EXP(SNG_EXP_INFNAN - 1) | SNG_MASK);
sys/powerpc/fpu/fpu_implode.c
356
return (sign | SNG_EXP(exp) | (fp->fp_mant[3] & SNG_MASK));
sys/powerpc/fpu/fpu_implode.c
368
u_int sign = fp->fp_sign << 31;
sys/powerpc/fpu/fpu_implode.c
380
sign |= DBL_EXP(DBL_EXP_INFNAN);
sys/powerpc/fpu/fpu_implode.c
385
return (sign);
sys/powerpc/fpu/fpu_implode.c
392
return (sign | DBL_EXP(1) | 0);
sys/powerpc/fpu/fpu_implode.c
405
if (toinf(fe, sign)) {
sys/powerpc/fpu/fpu_implode.c
407
return (sign | DBL_EXP(DBL_EXP_INFNAN) | 0);
sys/powerpc/fpu/fpu_implode.c
410
return (sign | DBL_EXP(DBL_EXP_INFNAN) | DBL_MASK);
sys/powerpc/fpu/fpu_implode.c
414
return (sign | DBL_EXP(exp) | (fp->fp_mant[2] & DBL_MASK));
sys/sys/assym.h
38
char name ## sign[((value) < 0 ? 1 : 0) + ASSYM_BIAS]; \
usr.bin/find/getdate.y
767
int sign;
usr.bin/find/getdate.y
775
sign = c == '-' ? -1 : 1;
usr.bin/find/getdate.y
781
sign = 0;
usr.bin/find/getdate.y
785
if (sign < 0)
usr.bin/find/getdate.y
787
return sign ? tSNUMBER : tUNUMBER;
usr.bin/jot/jot.c
403
int dot, hash, space, sign, numbers = 0;
usr.bin/jot/jot.c
434
dot = hash = space = sign = numbers = 0;
usr.bin/jot/jot.c
439
} else if ((*p == '#' && !(numbers|dot|sign|space|
usr.bin/jot/jot.c
442
((*p == '+' || *p == '-') && !(numbers|dot|sign++))
usr.bin/kdump/kdump.c
607
const char *sign;
usr.bin/kdump/kdump.c
625
sign = "-";
usr.bin/kdump/kdump.c
628
sign = "";
usr.bin/kdump/kdump.c
631
printf("%s%jd.%06ld ", sign, (intmax_t)temp.tv_sec,
usr.bin/kdump/kdump.c
641
const char *sign;
usr.bin/kdump/kdump.c
659
sign = "-";
usr.bin/kdump/kdump.c
662
sign = "";
usr.bin/kdump/kdump.c
665
printf("%s%jd.%09ld ", sign, (intmax_t)temp.tv_sec,
usr.bin/sort/coll.c
715
read_number(struct bwstring *s0, int *sign, wchar_t *smain, size_t *main_len, wchar_t *sfrac, size_t *frac_len, unsigned char *si)
usr.bin/sort/coll.c
728
*sign = -1;
usr.bin/sort/coll.c
770
*sign = 0;
usr.sbin/bhyve/amd64/pci_gvt-d-opregion.h
46
int8_t sign[0x10]; ///< Offset 0x00 OpRegion Signature
usr.sbin/bhyve/amd64/pci_gvt-d.c
447
if (memcmp(header->sign, IGD_OPREGION_HEADER_SIGN,
usr.sbin/bhyve/amd64/pci_gvt-d.c
448
sizeof(header->sign)) != 0) {
usr.sbin/fifolog/lib/getdate.y
770
int sign;
usr.sbin/fifolog/lib/getdate.y
778
sign = c == '-' ? -1 : 1;
usr.sbin/fifolog/lib/getdate.y
784
sign = 0;
usr.sbin/fifolog/lib/getdate.y
788
if (sign < 0)
usr.sbin/fifolog/lib/getdate.y
790
return sign ? tSNUMBER : tUNUMBER;
usr.sbin/syslogd/syslogd.c
1020
int sign, tz_hour, tz_min;
usr.sbin/syslogd/syslogd.c
1024
sign = *msg++ == '-' ? -1 : 1;
usr.sbin/syslogd/syslogd.c
1029
sign * (tz_hour * 3600 + tz_min * 60);
usr.sbin/uefisign/uefisign.c
237
PKCS7_set0_type_other(pkcs7->d.sign->contents, nid, t);
usr.sbin/uefisign/uefisign.c
433
sign(cert, key, pipefds[0]);