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

1 2 3 4 5

  /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/chromium_org/third_party/WebKit/Source/platform/
Decimal.h 53 enum Sign {
64 EncodedData(Sign, int exponent, uint64_t coefficient);
77 Sign sign() const { return m_sign; } function in class:blink::Decimal::EncodedData
78 void setSign(Sign sign) { m_sign = sign; }
88 EncodedData(Sign, FormatClass);
94 Sign m_sign;
98 Decimal(Sign, int exponent, uint64_t coefficient)
175 Sign sign() const { return m_data.sign(); } function in class:blink::Decimal
    [all...]
Decimal.cpp 233 Decimal::EncodedData::EncodedData(Sign sign, FormatClass formatClass)
237 , m_sign(sign)
241 Decimal::EncodedData::EncodedData(Sign sign, int exponent, uint64_t coefficient)
243 , m_sign(sign)
283 Decimal::Decimal(Sign sign, int exponent, uint64_t coefficient)
284 : m_data(sign, exponent, coefficient)
334 result.m_data.setSign(invertSign(m_data.sign()));
    [all...]
  /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
  /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/chromium_org/crypto/
ec_signature_creator.h 51 virtual bool Sign(const uint8* data,
56 // by Sign) to a `raw' ECDSA signature which consists of a pair of
ec_signature_creator_impl.h 18 virtual bool Sign(const uint8* data,
hmac.cc 50 if (!Sign(data, computed_digest.get(), digest_length))
hmac.h 65 bool Sign(const base::StringPiece& data, unsigned char* digest,
71 // over using Sign() with a manual comparison (such as memcmp), as such
signature_creator.h 27 // Currently can only sign data using SHA-1 or SHA-256 with RSA PKCS#1v1.5.
46 static bool Sign(RSAPrivateKey* key,
hmac_unittest.cc 81 EXPECT_TRUE(hmac.Sign(message_data, calculated_hmac, kSHA1DigestSize));
151 EXPECT_TRUE(hmac.Sign(data_string, digest, kSHA1DigestSize));
177 EXPECT_TRUE(hmac.Sign(data, calculated_hmac, kSHA256DigestSize));
218 EXPECT_TRUE(hmac.Sign(message_data, calculated_hmac, kSHA1DigestSize));
233 EXPECT_TRUE(hmac2.Sign(message_data, calculated_hmac2, kSHA256DigestSize));
246 EXPECT_TRUE(hmac.Sign(data_string, digest, kSHA1DigestSize));
290 EXPECT_TRUE(hmac.Sign(data, digest, kSHA1DigestSize));
hkdf.cc 39 result = prk_hmac.Sign(secret, prk, sizeof(prk));
69 result = hmac.Sign(base::StringPiece(buf.get(), j), digest, sizeof(digest));
ec_signature_creator_unittest.cc 42 ASSERT_TRUE(signer->Sign(reinterpret_cast<const uint8*>(data.c_str()),
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
double.h 60 ASSERT(Sign() > 0);
90 if (Sign() < 0 && Significand() == 0) {
94 if (Sign() < 0) {
145 int Sign() const {
153 ASSERT(Sign() > 0);
  /external/chromium_org/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);
  /external/chromium_org/chrome/browser/profile_resetter/
jtl_foundation.cc 24 if (!hmac_.Sign(input, digest, arraysize(digest))) {
  /external/chromium_org/net/quic/crypto/
channel_id.h 23 // Sign signs |signed_data| using the ChannelID private key and puts the
25 virtual bool Sign(base::StringPiece signed_data,
channel_id_chromium.h 26 virtual bool Sign(base::StringPiece signed_data,
  /external/chromium_org/v8/test/cctest/
test-double.cc 141 TEST(Sign) {
142 CHECK_EQ(1, Double(1.0).Sign());
143 CHECK_EQ(1, Double(V8_INFINITY).Sign());
144 CHECK_EQ(-1, Double(-V8_INFINITY).Sign());
145 CHECK_EQ(1, Double(0.0).Sign());
146 CHECK_EQ(-1, Double(-0.0).Sign());
148 CHECK_EQ(1, Double(min_double64).Sign());
  /external/chromium_org/base/numerics/
safe_conversions_impl.h 17 // we can compute one by adding one to the number of non-sign bits. This allows
57 // Same sign: Dst is guaranteed to contain Src only if its range is equal or
59 template <typename Dst, typename Src, IntegerRepresentation Sign>
60 struct StaticDstRangeRelationToSrcRange<Dst, Src, Sign, Sign> {
  /external/chromium_org/v8/src/base/
safe_conversions_impl.h 21 // we can compute one by adding one to the number of non-sign bits. This allows
61 // Same sign: Dst is guaranteed to contain Src only if its range is equal or
63 template <typename Dst, typename Src, IntegerRepresentation Sign>
64 struct StaticDstRangeRelationToSrcRange<Dst, Src, Sign, Sign> {
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h 431 // This is used for sign-extending loads, and load/store-pair instructions.
590 uint8_t Sign = (Imm >> 7) & 0x1;
600 FPUnion.I |= Sign << 31;
612 uint32_t Sign = Imm.lshr(31).getZExtValue() & 1;
629 return ((int)Sign << 7) | (Exp << 4) | Mantissa;
640 uint64_t Sign = Imm.lshr(63).getZExtValue() & 1;
657 return ((int)Sign << 7) | (Exp << 4) | Mantissa;
  /external/chromium_org/content/public/browser/
media_device_id.cc 25 hmac.Sign(raw_unique_id + salt, &digest[0], digest.size());

Completed in 2172 milliseconds

1 2 3 4 5