/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | vecintrin.h | 45 static inline __ATTRS_o_ai signed char 46 vec_extract(__vector signed char __vec, int __index) { in vec_extract() 60 static inline __ATTRS_o_ai signed short 61 vec_extract(__vector signed short __vec, int __index) { in vec_extract() 75 static inline __ATTRS_o_ai signed int 76 vec_extract(__vector signed int __vec, int __index) { in vec_extract() 90 static inline __ATTRS_o_ai signed long long 91 vec_extract(__vector signed long long __vec, int __index) { in vec_extract() 119 static inline __ATTRS_o_ai __vector signed char 120 vec_insert(signed char __scalar, __vector signed char __vec, int __index) { in vec_insert() [all …]
|
H A D | avxvnniintrin.h | 47 /// corresponding signed 8-bit integers in \a __B, producing 4 intermediate signed 55 /// tmp1.word := Signed(ZeroExtend16(__A.byte[4*j]) * SignExtend16(__B.byte[4*j])) 56 /// tmp2.word := Signed(ZeroExtend16(__A.byte[4*j+1]) * SignExtend16(__B.byte[4*j+1])) 57 /// tmp3.word := Signed(ZeroExtend16(__A.byte[4*j+2]) * SignExtend16(__B.byte[4*j+2])) 58 /// tmp4.word := Signed(ZeroExtend16(__A.byte[4*j+3]) * SignExtend16(__B.byte[4*j+3])) 70 /// corresponding signed 8-bit integers in \a __B, producing 4 intermediate signed 72 /// in \a __S using signed saturation, and store the packed 32-bit results in DST. 78 /// tmp1.word := Signed(ZeroExtend16(__A.byte[4*j]) * SignExtend16(__B.byte[4*j])) 79 /// tmp2.word := Signed(ZeroExtend16(__A.byte[4*j+1]) * SignExtend16(__B.byte[4*j+1])) 80 /// tmp3.word := Signed(ZeroExtend16(__A.byte[4*j+2]) * SignExtend16(__B.byte[4*j+2])) [all …]
|
H A D | avxvnniint8intrin.h | 25 /// Multiply groups of 4 adjacent pairs of signed 8-bit integers in \a __A with 26 /// corresponding signed 8-bit integers in \a __B, producing 4 intermediate 27 /// signed 16-bit results. Sum these 4 results with the corresponding 62 /// Multiply groups of 4 adjacent pairs of signed 8-bit integers in \a __A with 63 /// corresponding signed 8-bit integers in \a __B, producing 4 intermediate 64 /// signed 16-bit results. Sum these 4 results with the corresponding 98 /// Multiply groups of 4 adjacent pairs of signed 8-bit integers in \a __A with 99 /// corresponding signed 8-bit integers in \a __B, producing 4 intermediate 100 /// signed 16-bit results. Sum these 4 results with the corresponding 101 /// 32-bit integer in \a __W with signed saturation, and store the packed [all …]
|
H A D | hexagon_types.h | 195 signed char b[8]; \ 204 signed char b[8]; \ 213 signed char b[8]; \ 222 signed char b[8]; \ 231 signed char b[8]; \ 240 signed char b[8]; \ 249 signed char b[8]; \ 258 signed char b[8]; \ 633 HEXAGON_Vect64C(signed char b7, signed char b6, signed char b5, signed char b4, in HEXAGON_Vect64C() 634 signed char b3, signed char b2, signed char b1, signed char b0) in HEXAGON_Vect64C() [all …]
|
H A D | avxvnniint16intrin.h | 26 /// Multiply groups of 2 adjacent pairs of signed 16-bit integers in \a __A with 28 /// signed 16-bit results. Sum these 2 results with the corresponding 63 /// Multiply groups of 2 adjacent pairs of signed 16-bit integers in \a __A with 65 /// signed 16-bit results. Sum these 2 results with the corresponding 99 /// Multiply groups of 2 adjacent pairs of signed 16-bit integers in \a __A with 101 /// signed 16-bit results. Sum these 2 results with the corresponding 102 /// 32-bit integer in \a __W with signed saturation, and store the packed 137 /// Multiply groups of 2 adjacent pairs of signed 16-bit integers in \a __A with 139 /// signed 16-bit results. Sum these 2 results with the corresponding 140 /// 32-bit integer in \a __W with signed saturation, and store the packed [all …]
|
/freebsd/contrib/netbsd-tests/include/sys/ |
H A D | t_cdefs.c | 47 { "signed char", SCHAR_MIN, SCHAR_MAX }, 48 { "signed short", SHRT_MIN, SHRT_MAX }, 49 { "signed int", INT_MIN, INT_MAX }, 50 { "signed long", LONG_MIN, LONG_MAX }, 51 { "signed long long", LLONG_MIN, LLONG_MAX }, 69 atf_tc_set_md_var(tc, "descr", "Checks signed type min/max macros"); in ATF_TC_HEAD() 78 CHECK(signed char, 0); in ATF_TC_BODY() 79 CHECK(signed short, 1); in ATF_TC_BODY() 80 CHECK(signed int, 2); in ATF_TC_BODY() 81 CHECK(signed long, 3); in ATF_TC_BODY() [all …]
|
/freebsd/crypto/heimdal/doc/doxyout/hx509/man/man3/ |
H A D | hx509_ca.3 | 92 Sign a to-be-signed certificate object with a issuer certificate. 94 The caller needs to at least have called the following functions on the to-be-signed certificate ob… 103 When done the to-be-signed certificate object should be freed with \fBhx509_ca_tbs_free()\fP. 105 When creating self-signed certificate use \fBhx509_ca_sign_self()\fP instead. 111 \fItbs\fP object to be signed. 132 \fItbs\fP object to be signed. 147 Add CRL distribution point URI to the to-be-signed certificate object. 153 \fItbs\fP object to be signed. 170 An an extended key usage to the to-be-signed certificate object. Duplicates will detected and not a… 176 \fItbs\fP object to be signed. [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | IntegralAP.h | 31 template <unsigned Bits, bool Signed> class Integral; 33 template <bool Signed> class IntegralAP final { 35 friend IntegralAP<!Signed>; 60 : V(APInt(BitWidth, static_cast<uint64_t>(Value), Signed)) {} in IntegralAP() 71 if constexpr (Signed) 76 if constexpr (Signed) 81 if constexpr (Signed) 86 if constexpr (Signed) 93 return truncateCast<Ty, Signed>(V); in Ty() 98 APInt Copy = APInt(NumBits, static_cast<uint64_t>(Value), Signed); [all …]
|
H A D | Integral.h | 32 template <bool Signed> class IntegralAP; 35 template <unsigned Bits, bool Signed> struct Repr; 50 template <unsigned Bits, bool Signed> class Integral final { 55 using ReprT = typename Repr<Bits, Signed>::Type; 107 return APSInt(APInt(Bits, static_cast<uint64_t>(V), Signed), !Signed); 110 if constexpr (Signed) 111 return APSInt(toAPSInt().sextOrTrunc(NumBits), !Signed); 113 return APSInt(toAPSInt().zextOrTrunc(NumBits), !Signed); 127 bool isMinusOne() const { return Signed && V == ReprT(-1); } 129 constexpr static bool isSigned() { return Signed; } [all …]
|
/freebsd/crypto/heimdal/lib/hx509/ |
H A D | test_cms.in | 54 echo "create signed data (ec)" 60 echo "verify signed data (ec)" 68 echo "create signed data" 74 echo "verify signed data" 81 echo "create signed data (no signer)" 88 echo "verify signed data (no signer)" 97 echo "verify signed data (no signer) (test failure)" 104 echo "create signed data (id-by-name)" 111 echo "verify signed data" 118 echo "verify signed data (EE cert as anchor)" [all …]
|
H A D | ca.c | 68 * Allocate an to-be-signed certificate object that will be converted 72 * @param tbs returned to-be-signed certicate object, free with 91 * Free an To Be Signed object. 123 * @param tbs object to be signed. 144 * @param tbs object to be signed. 165 * @param tbs object to be signed. 208 * Initialize the to-be-signed certificate object from a template certifiate. 211 * @param tbs object to be signed. 286 * Make the to-be-signed certificate object a CA certificate. If the 290 * @param tbs object to be signed. [all …]
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | CMS_signed_get_attr.pod | 17 - CMS signed and unsigned attribute functions 66 CMS_signerInfo contains separate attribute lists for signed and unsigned 67 attributes. Each CMS_signed_XXX() function is used for signed attributes, and 74 I<obj> in the SignerInfo's I<si> signed attribute list. The search starts at the 79 the signed attribute list. 86 I<si> signed attribute list. I<loc> should be in the range from 0 to 90 the I<si> signed attribute list. An error occurs if the I<si> attribute list 94 to the I<si> signed attribute list. A new signed attribute list is created if 97 CMS_signed_add1_attr_by_OBJ() creates a new signed B<X509_ATTRIBUTE> using 110 CMS_signed_get0_data_by_OBJ() finds the first attribute in a I<si> signed [all …]
|
H A D | CMS_get1_ReceiptRequest.pod | 7 - CMS signed receipt request functions 29 CMS_ReceiptRequest_create0_ex() creates a signed receipt request 42 The CMS_add1_ReceiptRequest() function adds a signed receipt request B<rr> 45 int CMS_get1_ReceiptRequest() looks for a signed receipt request in B<si>, if 58 The contents of a signed receipt should only be considered meaningful if the 65 a signed receipt request structure or NULL if an error occurred. 69 CMS_get1_ReceiptRequest() returns 1 is a signed receipt request is found and 70 decoded. It returns 0 if a signed receipt request is not present and -1 if
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/ |
H A D | mmintrin.h | 49 signed char as_signed_char[8]; 149 values of the result, all with signed saturation. */ 153 __vector signed short __vm1; in _mm_packs_pi16() 154 __vector signed char __vresult; in _mm_packs_pi16() 156 __vm1 = (__vector signed short)(__vector unsigned long long) in _mm_packs_pi16() 174 values of the result, all with signed saturation. */ 178 __vector signed int __vm1; in _mm_packs_pi32() 179 __vector signed short __vresult; in _mm_packs_pi32() 181 __vm1 = (__vector signed int)(__vector unsigned long long) in _mm_packs_pi32() 204 __vector signed short __vm1 = (__vector signed short)(__vector long long) in _mm_packs_pu16() [all …]
|
/freebsd/share/man/man4/ |
H A D | rtnetlink.4 | 47 unsigned char rtm_family; /* address family */ 48 unsigned char rtm_dst_len; /* Prefix length */ 49 unsigned char rtm_src_len; /* Deprecated, set to 0 */ 50 unsigned char rtm_tos; /* Type of service (not used) */ 51 unsigned char rtm_table; /* deprecated, set to 0 */ 52 unsigned char rtm_protocol; /* Routing protocol id (RTPROT_) */ 53 unsigned char rtm_scope; /* Route distance (RT_SCOPE_) */ 54 unsigned char rtm_type; /* Route type (RTN_) */ 55 unsigned rtm_flags; /* Route flags (not supported) */ 144 unsigned short rtnh_len; [all …]
|
/freebsd/secure/usr.bin/openssl/man/ |
H A D | openssl-cms.1 | 313 The input message to be encrypted or signed or the message to be decrypted 318 format message that has been signed or verified. 340 the message to be signed. The signed data in \s-1MIME\s0 format is written 344 Verify signed data. Expects a signed data on input and outputs 345 the signed data. Both clear text and opaque signing is supported. 351 Generate and output a signed receipt for the supplied message. The input 352 message \fBmust\fR contain a signed receipt request. Functionality is otherwise 356 Verify a signed receipt in filename \fBreceipt\fR. The input message \fBmust\fR 405 The signed receipt format for use with the \fB\-receipt_verify\fR; the default 561 add an \s-1ESS\s0 signingCertificate or \s-1ESS\s0 signingCertificateV2 signed-attribute [all …]
|
H A D | openssl-smime.1 | 251 the message to be signed. The signed message in \s-1MIME\s0 format is written 255 Verify signed mail. Expects a signed mail message on input and outputs 256 the signed data. Both clear text and opaque signing is supported. 265 The input message to be encrypted or signed or the \s-1MIME\s0 message to 270 format message that has been signed or verified. 304 is S/MIME and it uses the multipart/signed \s-1MIME\s0 content type. 332 Do not verify the signers certificate of a signed message. 336 use the certificates in the signed message as untrusted CAs. 344 signed message but the verifier must have a copy of the signers certificate 348 Normally when a message is signed a set of attributes are included which [all …]
|
/freebsd/crypto/openssl/doc/man1/ |
H A D | openssl-cms.pod.in | 152 The input message to be encrypted or signed or the message to be decrypted 158 format message that has been signed or verified. 186 the message to be signed. The signed data in MIME format is written 191 Verify signed data. Expects a signed data on input and outputs 192 the signed data. Both clear text and opaque signing is supported. 204 Generate and output a signed receipt for the supplied message. The input 205 message B<must> contain a signed receipt request. Functionality is otherwise 210 Verify a signed receipt in filename B<receipt>. The input message B<must> 275 The signed receipt format for use with the B<-receipt_verify>; the default 457 add an ESS signingCertificate or ESS signingCertificateV2 signed-attribute [all …]
|
H A D | openssl-smime.pod.in | 88 the message to be signed. The signed message in MIME format is written 93 Verify signed mail. Expects a signed mail message on input and outputs 94 the signed data. Both clear text and opaque signing is supported. 106 The input message to be encrypted or signed or the MIME message to 112 format message that has been signed or verified. 152 is S/MIME and it uses the multipart/signed MIME content type. 185 Do not verify the signers certificate of a signed message. 190 use the certificates in the signed message as untrusted CAs. 200 signed message, but the verifier must have a copy of the signers certificate 205 Normally, when a message is signed, a set of attributes are included which [all …]
|
/freebsd/contrib/bc/tests/bc/ |
H A D | lib2_results.txt | 442 Error: 128 cannot fit into 1 signed byte(s). 468 Error: 129 cannot fit into 1 signed byte(s). 469 Error: -129 cannot fit into 1 signed byte(s). 493 Error: 255 cannot fit into 1 signed byte(s). 494 Error: -255 cannot fit into 1 signed byte(s). 517 Error: 256 cannot fit into 1 signed byte(s). 518 Error: -256 cannot fit into 1 signed byte(s). 563 Error: 32768 cannot fit into 2 signed byte(s). 583 Error: 32769 cannot fit into 2 signed byte(s). 584 Error: -32769 cannot fit into 2 signed byte(s). [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | CheckedArithmetic.h | 29 checkedOp(T LHS, T RHS, F Op, bool Signed = true) { 30 llvm::APInt ALHS(sizeof(T) * 8, LHS, Signed); 31 llvm::APInt ARHS(sizeof(T) * 8, RHS, Signed); 36 return Signed ? Out.getSExtValue() : Out.getZExtValue(); 42 /// Add two signed integers \p LHS and \p RHS. 43 /// \return Optional of sum if no signed overflow occurred, 51 /// Subtract two signed integers \p LHS and \p RHS. 52 /// \return Optional of sum if no signed overflow occurred, 60 /// Multiply two signed integers \p LHS and \p RHS. 61 /// \return Optional of product if no signed overflow occurred, [all …]
|
H A D | SwapByteOrder.h | 32 inline signed char getSwappedBytes( signed char C) { return llvm::byteswap(C); } 36 inline signed short getSwappedBytes( signed short C) { return llvm::byteswap(C); } 39 inline signed int getSwappedBytes( signed int C) { return llvm::byteswap(C); } 42 inline signed long getSwappedBytes( signed long C) { return llvm::byteswap(C); } 45 inline signed long long getSwappedBytes( signed lon [all...] |
/freebsd/crypto/openssh/regress/unittests/sshsig/ |
H A D | mktestdata.sh | 19 rm -f signed-data namespace 23 printf "This is a test, this is only a test" > signed-data 35 ssh-keygen -Y sign -f rsa -n $NAMESPACE - < signed-data > rsa.sig 36 ssh-keygen -Y sign -f dsa -n $NAMESPACE - < signed-data > dsa.sig 37 ssh-keygen -Y sign -f ecdsa -n $NAMESPACE - < signed-data > ecdsa.sig 38 ssh-keygen -Y sign -f ed25519 -n $NAMESPACE - < signed-data > ed25519.sig 40 -Y sign -f ecdsa_sk -n $NAMESPACE - < signed-data > ecdsa_sk.sig 42 -Y sign -f ed25519_sk -n $NAMESPACE - < signed-data > ed25519_sk.sig
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/ |
H A D | tst.basics.d | 43 printf("sizeof (signed char) = %u\n", sizeof (signed char)); 46 printf("sizeof (signed short) = %u\n", sizeof (signed short)); 49 printf("sizeof (signed int) = %u\n", sizeof (signed int)); 52 printf("sizeof (signed long long) = %u\n", sizeof (signed long long));
|
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/ |
H A D | make_signed.h | 33 typedef __type_list<signed char, 34 __type_list<signed short, 35 __type_list<signed int, 36 __type_list<signed long, 37 __type_list<signed long long, 58 template <> struct __make_signed< signed short, true> {typedef short type;}; 60 template <> struct __make_signed< signed int, true> {typedef int type;}; 62 template <> struct __make_signed< signed long, true> {typedef long type;}; 64 template <> struct __make_signed< signed long long, true> {typedef long long type;};
|