HomeSort by relevance Sort by last modified time
    Searched refs:Sign (Results 1 - 25 of 231) sorted by null

1 2 3 4 5 6 7 8 910

  /external/llvm/lib/Support/
LEB128.cpp 32 int Sign = Value >> (8 * sizeof(Value) - 1);
38 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_QuantInvInter_I.c 79 OMX_INT coeffCount, Sign;
88 /* check sign */
89 Sign = armSignCheck (pSrcDst[coeffCount]);
95 pSrcDst[coeffCount] *= Sign;
101 pSrcDst[coeffCount] *= Sign;
omxVCM4P2_QuantInvIntra_I.c 81 OMX_INT dcScaler = 0, coeffCount, Sign;
144 /* check sign */
145 Sign = armSignCheck (pSrcDst[coeffCount]);
150 pSrcDst[coeffCount] *= Sign;
156 pSrcDst[coeffCount] *= Sign;
  /external/llvm/lib/Transforms/Utils/
CmpInstAnalysis.cpp 27 /// same sign. Is illegal to do: (A u< B) | (A s> B)
67 /// predicate for a new ICmp instruction. The sign is passed in to determine
72 Value *llvm::getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS,
78 case 1: NewICmpPred = Sign ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT; break;
80 case 3: NewICmpPred = Sign ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE; break;
81 case 4: NewICmpPred = Sign ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT; break;
83 case 6: NewICmpPred = Sign ? ICmpInst::ICMP_SLE : ICmpInst::ICMP_ULE; break;
90 /// PredicatesFoldable - Return true if both predicates match sign or if at
  /system/keymaster/
hmac.h 37 // Sign calculates the HMAC of |data| with the key supplied to the Init
40 bool Sign(const Buffer& data, uint8_t* digest, size_t digest_len) const;
41 bool Sign(const uint8_t* data, size_t data_len, uint8_t* digest, size_t digest_len) const;
45 // Use of this method is strongly recommended over using Sign() with a manual
hmac.cpp 50 bool HmacSha256::Sign(const Buffer& data, uint8_t* out_digest, size_t digest_len) const {
51 return Sign(data.peek_read(), data.available_read(), out_digest, digest_len);
54 bool HmacSha256::Sign(const uint8_t* data, size_t data_len, uint8_t* out_digest,
83 if (!Sign(data, data_len, computed_digest, sizeof(computed_digest)))
hkdf.cpp 54 prk_hmac.Sign(secret_key_.get(), secret_key_len_, pseudo_random_key.get(), digest_size_);
85 result = hmac.Sign(buf.get(), block_input_len, digest.get(), digest_size_);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/
sign-extension.d 3 #name: Sign-extended immediate
  /external/llvm/include/llvm/Transforms/Utils/
CmpInstAnalysis.h 30 /// same sign. Is illegal to do: (A u< B) | (A s> B)
51 /// predicate for a new ICmp instruction. The sign is passed in to determine
56 Value *getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS,
59 /// PredicatesFoldable - Return true if both predicates match sign or if at
  /external/pdfium/xfa/fxfa/parser/
cscript_signaturepseudomodel.h 19 void Sign(CFXJSE_Arguments* pArguments);
cscript_signaturepseudomodel.cpp 38 void CScript_SignaturePseudoModel::Sign(CFXJSE_Arguments* pArguments) {
41 ThrowParamCountMismatchException(L"sign");
  /external/libchrome/crypto/
ec_signature_creator_impl.h 21 bool Sign(const uint8_t* data,
hmac.cc 52 if (!Sign(data, computed_digest.get(), digest_length))
hmac.h 68 bool Sign(const base::StringPiece& data, unsigned char* digest,
74 // over using Sign() with a manual comparison (such as memcmp), as such
signature_creator.h 30 // Currently can only sign data using SHA-1 or SHA-256 with RSA PKCS#1v1.5.
49 static bool Sign(RSAPrivateKey* key,
  /external/pdfium/third_party/bigint/
BigInteger.hh 16 * A BigInteger is just an aggregate of a BigUnsigned and a sign. (It is no
29 // Enumeration for the sign of a BigInteger.
30 enum Sign { negative = -1, zero = 0, positive = 1 };
33 Sign sign; member in class:BigInteger
38 BigInteger() : sign(zero), mag() {}
41 BigInteger(const BigInteger &x) : sign(x.sign), mag(x.mag) {};
46 // Constructor that copies from a given array of blocks with a sign.
47 BigInteger(const Blk *b, Index blen, Sign s)
    [all...]
BigIntegerUtils.hh 26 BigInteger dataToBigInteger(const T* data, BigInteger::Index length, BigInteger::Sign sign);
32 // My somewhat arbitrary policy: a negative sign comes before a base indicator (like -0xFF).
39 * Pass an array `data', its length, and the desired sign.
51 BigInteger dataToBigInteger(const T* data, BigInteger::Index length, BigInteger::Sign sign) {
72 BigInteger x(blocks, numBlocks, sign);
  /system/tpm/attestation/common/
mock_attestation_interface.h 52 MOCK_METHOD2(Sign, void(const SignRequest&, const SignCallback&));
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
ieee754.h 33 RAPIDJSON_ASSERT(!Sign());
37 bool Sign() const { return (u_ & kSignMask) != 0; }
  /external/v8/src/
double.h 37 DCHECK(Sign() > 0);
67 if (Sign() < 0 && Significand() == 0) {
71 if (Sign() < 0) {
116 int Sign() const {
124 DCHECK(Sign() > 0);
  /prebuilts/go/darwin-x86/src/crypto/dsa/
dsa.go 165 if x.Sign() != 0 && x.Cmp(priv.Q) < 0 {
186 // Sign signs an arbitrary length hash (which should be the result of hashing a
195 // Be aware that calling Sign with an attacker-controlled PrivateKey may
197 func Sign(rand io.Reader, priv *PrivateKey, hash []byte) (r, s *big.Int, err error) {
201 if priv.Q.Sign() <= 0 || priv.P.Sign() <= 0 || priv.G.Sign() <= 0 || priv.X.Sign() <= 0 || n&7 != 0 {
221 if k.Sign() > 0 && k.Cmp(priv.Q) < 0 {
231 if r.Sign() == 0
    [all...]
  /prebuilts/go/linux-x86/src/crypto/dsa/
dsa.go 165 if x.Sign() != 0 && x.Cmp(priv.Q) < 0 {
186 // Sign signs an arbitrary length hash (which should be the result of hashing a
195 // Be aware that calling Sign with an attacker-controlled PrivateKey may
197 func Sign(rand io.Reader, priv *PrivateKey, hash []byte) (r, s *big.Int, err error) {
201 if priv.Q.Sign() <= 0 || priv.P.Sign() <= 0 || priv.G.Sign() <= 0 || priv.X.Sign() <= 0 || n&7 != 0 {
221 if k.Sign() > 0 && k.Cmp(priv.Q) < 0 {
231 if r.Sign() == 0
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCAsmInfo.cpp 115 int Sign = Value >> (8 * sizeof(Value) - 1);
121 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
  /prebuilts/go/darwin-x86/src/crypto/ecdsa/
ecdsa.go 67 // Sign signs msg with priv, reading randomness from rand. This method is
69 // hardware module. Common uses should use the Sign function in this package
71 func (priv *PrivateKey) Sign(rand io.Reader, msg []byte, opts crypto.SignerOpts) ([]byte, error) {
72 r, s, err := Sign(rand, priv, msg)
146 // Sign signs a hash (which should be the result of hashing a larger message)
151 func Sign(rand io.Reader, priv *PrivateKey, hash []byte) (r, s *big.Int, err error) {
187 if N.Sign() == 0 {
207 if r.Sign() != 0 {
217 if s.Sign() != 0 {
232 if r.Sign() <= 0 || s.Sign() <= 0
    [all...]
  /prebuilts/go/linux-x86/src/crypto/ecdsa/
ecdsa.go 67 // Sign signs msg with priv, reading randomness from rand. This method is
69 // hardware module. Common uses should use the Sign function in this package
71 func (priv *PrivateKey) Sign(rand io.Reader, msg []byte, opts crypto.SignerOpts) ([]byte, error) {
72 r, s, err := Sign(rand, priv, msg)
146 // Sign signs a hash (which should be the result of hashing a larger message)
151 func Sign(rand io.Reader, priv *PrivateKey, hash []byte) (r, s *big.Int, err error) {
187 if N.Sign() == 0 {
207 if r.Sign() != 0 {
217 if s.Sign() != 0 {
232 if r.Sign() <= 0 || s.Sign() <= 0
    [all...]

Completed in 529 milliseconds

1 2 3 4 5 6 7 8 910