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

1 2

  /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/Support/
LEB128.cpp 32 int Sign = Value >> (8 * sizeof(Value) - 1);
38 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
  /external/chromium_org/crypto/
hmac_openssl.cc 51 bool HMAC::Sign(const base::StringPiece& data,
54 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|.
ec_signature_creator_openssl.cc 33 bool ECSignatureCreatorImpl::Sign(const uint8* data,
hmac_nss.cc 76 bool HMAC::Sign(const base::StringPiece& data,
80 // Init has not been called before Sign.
signature_creator_nss.cc 71 bool SignatureCreator::Sign(RSAPrivateKey* key,
signature_creator_openssl.cc 60 bool SignatureCreator::Sign(RSAPrivateKey* key,
hmac_win.cc 169 bool HMAC::Sign(const base::StringPiece& data,
  /external/chromium_org/chrome/browser/chromeos/platform_keys/
platform_keys_service.cc 45 // Callback used by |PlatformKeysService::Sign|.
62 platform_keys::subtle::Sign(token_id,
100 void PlatformKeysService::Sign(const std::string& token_id,
platform_keys_nss.cc 402 LOG(ERROR) << "Couldn't sign.";
412 // Continues signing with the obtained NSSCertDatabase. Used by Sign().
578 void Sign(const std::string& token_id,
  /external/chromium_org/content/child/webcrypto/
algorithm_dispatch.cc 188 Status Sign(const blink::WebCryptoAlgorithm& algorithm,
202 return impl->Sign(algorithm, key, data, buffer);
algorithm_implementation.cc 32 Status AlgorithmImplementation::Sign(const blink::WebCryptoAlgorithm& algorithm,
  /external/chromium_org/third_party/WebKit/Source/platform/
DecimalTest.cpp 47 << ", " << (data.sign() == Decimal::Negative ? "Negative" : "Positive")
79 typedef Decimal::Sign Sign;
80 protected: static const Sign Positive = Decimal::Positive;
81 protected: static const Sign Negative = Decimal::Negative;
83 Decimal encode(uint64_t coefficient, int exponent, Sign sign)
85 return Decimal(sign, exponent, coefficient);
120 EXPECT_EQ(Decimal::expectedSign, (decimal).value().sign());
    [all...]
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...]
  /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/net/quic/crypto/
channel_id_chromium.cc 25 bool ChannelIDKeyChromium::Sign(base::StringPiece signed_data,
39 if (!sig_creator->Sign(&data[0], data.size(), &der_signature)) {
  /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/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);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM.c 261 * Checks the sign of a variable:
282 OMX_INT Sign;
286 Sign = -1;
290 Sign = 1;
294 Sign = 0;
297 return Sign;
523 /*Same sign*/
576 /*Same sign*/
628 /*Opposite sign*/
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
armCOMM.c 261 * Checks the sign of a variable:
282 OMX_INT Sign;
286 Sign = -1;
290 Sign = 1;
294 Sign = 0;
297 return Sign;
523 /*Same sign*/
576 /*Same sign*/
628 /*Opposite sign*/
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
armCOMM.c 261 * Checks the sign of a variable:
282 OMX_INT Sign;
286 Sign = -1;
290 Sign = 1;
294 Sign = 0;
297 return Sign;
523 /*Same sign*/
576 /*Same sign*/
628 /*Opposite sign*/

Completed in 601 milliseconds

1 2