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

1 2

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_QuantInvInter_I.c 64 OMX_INT coeffCount, Sign;
73 /* check sign */
74 Sign = armSignCheck (pSrcDst[coeffCount]);
80 pSrcDst[coeffCount] *= Sign;
86 pSrcDst[coeffCount] *= Sign;
omxVCM4P2_QuantInvIntra_I.c 66 OMX_INT dcScaler = 0, coeffCount, Sign;
129 /* check sign */
130 Sign = armSignCheck (pSrcDst[coeffCount]);
135 pSrcDst[coeffCount] *= Sign;
141 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
  /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/crypto/
hmac.h 47 bool Sign(const std::string& data, unsigned char* digest, int digest_length);
hmac_unittest.cc 59 EXPECT_TRUE(hmac.Sign(message_data, calculated_hmac, kSHA1DigestSize));
129 EXPECT_TRUE(hmac.Sign(data_string, digest, kSHA1DigestSize));
154 EXPECT_TRUE(hmac.Sign(data, calculated_hmac, kSHA256DigestSize));
194 EXPECT_TRUE(hmac.Sign(message_data, calculated_hmac, kSHA1DigestSize));
201 EXPECT_TRUE(hmac2.Sign(message_data, calculated_hmac2, kSHA256DigestSize));
233 EXPECT_TRUE(hmac.Sign(data_string, digest, kSHA1DigestSize));
hmac_mac.cc 42 bool HMAC::Sign(const std::string& data,
hmac_openssl.cc 43 bool HMAC::Sign(const std::string& data,
47 DCHECK(!plat_->key.empty()); // Init must be called before Sign.
hmac_nss.cc 76 bool HMAC::Sign(const std::string& data,
80 // Init has not been called before Sign.
  /external/v8/src/
double.h 60 ASSERT(Sign() > 0);
90 if (Sign() < 0 && Significand() == 0) {
94 if (Sign() < 0) {
145 int Sign() const {
153 ASSERT(Sign() > 0);
dtoa.cc 57 Vector<char> buffer, int* sign, int* length, int* point) {
61 if (Double(v).Sign() < 0) {
62 *sign = 1;
65 *sign = 0;
  /external/llvm/lib/MC/
MCAsmInfo.cpp 117 int Sign = Value >> (8 * sizeof(Value) - 1);
123 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
  /external/chromium/chrome/browser/chromeos/login/
mock_owner_key_utils.h 30 MOCK_METHOD3(Sign, bool(const std::string& data,
owner_key_utils.h 59 // Sign |data| with |key| using Sha1 with RSA. If successful, return true
61 virtual bool Sign(const std::string& data,
owner_manager.h 74 void Sign(const BrowserThread::ID thread_id,
owner_key_utils.cc 49 bool Sign(const std::string& data,
149 bool OwnerKeyUtilsImpl::Sign(const std::string& data,
owner_manager.cc 81 void OwnerManager::Sign(const BrowserThread::ID thread_id,
101 if (!utils_->Sign(data, &signature, private_key_.get())) {
  /external/v8/test/cctest/
test-double.cc 130 TEST(Sign) {
131 CHECK_EQ(1, Double(1.0).Sign());
132 CHECK_EQ(1, Double(V8_INFINITY).Sign());
133 CHECK_EQ(-1, Double(-V8_INFINITY).Sign());
134 CHECK_EQ(1, Double(0.0).Sign());
135 CHECK_EQ(-1, Double(-0.0).Sign());
137 CHECK_EQ(1, Double(min_double64).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/clang/include/clang/Basic/
Specifiers.h 71 /*DeclSpec::TSS*/ unsigned Sign : 2;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM.c 246 * Checks the sign of a variable:
267 OMX_INT Sign;
271 Sign = -1;
275 Sign = 1;
279 Sign = 0;
282 return Sign;
508 /*Same sign*/
561 /*Same sign*/
613 /*Opposite sign*/
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
armCOMM.c 246 * Checks the sign of a variable:
267 OMX_INT Sign;
271 Sign = -1;
275 Sign = 1;
279 Sign = 0;
282 return Sign;
508 /*Same sign*/
561 /*Same sign*/
613 /*Opposite sign*/
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
armCOMM.c 246 * Checks the sign of a variable:
267 OMX_INT Sign;
271 Sign = -1;
275 Sign = 1;
279 Sign = 0;
282 return Sign;
508 /*Same sign*/
561 /*Same sign*/
613 /*Opposite sign*/
  /external/chromium/chrome/browser/sync/util/
nigori.cc 151 if (!hmac.Sign(ciphertext, &hash[0], hash.size()))
192 if (!hmac.Sign(ciphertext, &hash[0], hash.size()))
229 if (!hmac.Sign(ciphertext, &expected[0], expected.size()))
  /external/llvm/include/llvm/CodeGen/
JITCodeEmitter.h 195 int32_t Sign = Value >> (8 * sizeof(Value) - 1);
201 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;

Completed in 388 milliseconds

1 2