HomeSort by relevance Sort by last modified time
    Searched defs:Sign (Results 1 - 25 of 39) 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/chromium_org/crypto/
ec_signature_creator_openssl.cc 18 bool ECSignatureCreatorImpl::Sign(const uint8* data,
hmac_openssl.cc 43 bool HMAC::Sign(const base::StringPiece& data,
46 DCHECK(!plat_->key.empty()); // Init must be called before Sign.
ec_signature_creator_nss.cc 69 bool ECSignatureCreatorImpl::Sign(const uint8* data,
84 // Sign the secret data and save it to |result|.
hmac_nss.cc 76 bool HMAC::Sign(const base::StringPiece& data,
80 // Init has not been called before Sign.
signature_creator_nss.cc 47 bool SignatureCreator::Sign(RSAPrivateKey* key,
signature_creator_openssl.cc 29 bool SignatureCreator::Sign(RSAPrivateKey* key,
hmac_win.cc 169 bool HMAC::Sign(const base::StringPiece& data,
  /external/chromium/crypto/
hmac_openssl.cc 43 bool HMAC::Sign(const std::string& data,
47 DCHECK(!plat_->key.empty()); // Init must be called before Sign.
hmac_mac.cc 42 bool HMAC::Sign(const std::string& data,
hmac_nss.cc 76 bool HMAC::Sign(const std::string& data,
80 // Init has not been called before Sign.
hmac_win.cc 157 bool HMAC::Sign(const std::string& data,
  /external/chromium/chrome/browser/chromeos/login/
owner_manager.cc 81 void OwnerManager::Sign(const BrowserThread::ID thread_id,
101 if (!utils_->Sign(data, &signature, private_key_.get())) {
owner_key_utils.cc 49 bool Sign(const std::string& data,
149 bool OwnerKeyUtilsImpl::Sign(const std::string& data,
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
NormalizeAlgorithm.h 46 Sign,
  /external/llvm/lib/MC/
MCAsmInfo.cpp 112 int Sign = Value >> (8 * sizeof(Value) - 1);
118 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
  /external/chromium_org/third_party/WebKit/Source/core/platform/
DecimalTest.cpp 46 << ", " << (data.sign() == Decimal::Negative ? "Negative" : "Positive")
78 typedef Decimal::Sign Sign;
79 protected: static const Sign Positive = Decimal::Positive;
80 protected: static const Sign Negative = Decimal::Negative;
82 Decimal encode(uint64_t coefficient, int exponent, Sign sign)
84 return Decimal(sign, exponent, coefficient);
119 EXPECT_EQ(Decimal::expectedSign, (decimal).value().sign());
    [all...]
Decimal.h 52 enum Sign {
63 EncodedData(Sign, int exponent, uint64_t coefficient);
76 Sign sign() const { return m_sign; } function in class:WebCore::Decimal::EncodedData
77 void setSign(Sign sign) { m_sign = sign; }
87 EncodedData(Sign, FormatClass);
93 Sign m_sign;
97 Decimal(Sign, int exponent, uint64_t coefficient)
174 Sign sign() const { return m_data.sign(); } function in class:WebCore::Decimal
    [all...]
  /external/chromium_org/net/tools/testserver/
minica.py 48 def Sign(self, message):
245 asn1.BitString(privkey.Sign(tbsCert)),
294 asn1.BitString(issuer_key.Sign(basic_resp_data_der)),
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
MockWebCrypto.cpp 47 Sign,
92 } else if (m_algorithm.id() == WebKit::WebCryptoAlgorithmIdHmac && m_operation == Sign) {
142 void MockWebCrypto::sign(const WebKit::WebCryptoAlgorithm& algorithm, const WebKit::WebCryptoKey& key, WebKit::WebCryptoOperationResult& result) function in class:WebTestRunner::MockWebCrypto
144 result.initializationSucceeded(new MockCryptoOperation(algorithm, Sign, result));
  /external/llvm/include/llvm/CodeGen/
JITCodeEmitter.h 195 int32_t Sign = Value >> (8 * sizeof(Value) - 1);
201 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
MachineCodeEmitter.h 191 uint64_t Sign = Value >> (8 * sizeof(Value) - 1);
197 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
  /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 60 ASSERT(Sign() > 0);
90 if (Sign() < 0 && Significand() == 0) {
94 if (Sign() < 0) {
139 int Sign() const {
147 ASSERT(Sign() > 0);

Completed in 824 milliseconds

1 2