HomeSort by relevance Sort by last modified time
    Searched full:encoded (Results 101 - 125 of 4017) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
entropy_coding.h 32 * - streamdata : pointer to a stucture containg the encoded
68 * - streamdata : pointer to a stucture containg the encoded
111 * - streamdata : pointer to a structure containing the encoded
122 * are encoded and inserted after this function is
144 * - streamdata : pointer to a stucture containg the encoded
155 * are encoded and inserted after this function is
211 * LP gains to be encoded. The input values are
213 * - streamdata : pointer to a stucture containg the encoded
231 * LP gains to be encoded.
233 * - streamdata : pointer to a stucture containg the encoded
    [all...]
  /external/chromium_org/chrome/browser/chromeos/extensions/
wallpaper_api.h 14 // After this API being called, a jpeg encoded wallpaper will be saved to
18 // Note: For security reason, the original encoded wallpaper image is not saved
19 // directly. It is decoded and re-encoded to jpeg format before saved to file
  /external/chromium_org/chrome/browser/extensions/api/networking_private/
networking_private_crypto.h 22 // 2) The certificate is a valid PEM encoded certificate signed by trusted CA.
30 // Encrypt |data| with |public_key|. |public_key| is a DER-encoded
44 // PKCS8 PEM-encoded private key. |encrypted_data| is data encrypted with
  /external/chromium_org/chrome/common/safe_browsing/
safebrowsing_messages.h 37 std::string /* encoded ClientPhishingRequest proto */)
47 // The string is an encoded safe_browsing::ClientSideModel protocol buffer, or
50 std::string /* encoded ClientSideModel proto */)
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1ValueCollection.java 50 * Provides an object's values to be encoded
55 * @param - an object to be encoded
56 * @return - a collection of object's values to be encoded
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
ExtensionValue.java 27 /** Encoded form of the extension. */
33 /** Creates the object on the base of its encoded form. */
38 /** Returns encoded form of the object. */
  /packages/apps/Nfc/etc/
sample_nfcee_access.xml 14 SIGNATURE is a hex encoded X.509 certificate
15 See Debug section to generate hex encoded certificates.
42 hex encoded signature of applications that are denied NFCEE
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
EncodedKeySpecTest.java 54 /* Get encoded key */
82 /* Get encoded key */
99 /* Get encoded key */
103 /* Get encoded key again */
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERT61String.java 72 * basic constructor - string encoded as a sequence of bytes.
90 * Decode the encoded string and return it, 8 bit encoding assumed.
121 * Return the encoded string as a byte array.
122 * @return the actual bytes making up the encoded body of the T61 string.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509NameEntryConverter.java 13 * encoded into their ASN.1 counterparts is rapidly approaching the
52 * Convert an inline encoded hex string rendition of an ASN.1
55 * @param str the hex encoded object
106 * encoded object.
  /external/chromium/base/i18n/
icu_string_conversions.h 49 std::string* encoded);
50 bool CodepageToUTF16(const std::string& encoded,
61 std::string* encoded);
62 bool CodepageToWide(const std::string& encoded,
  /external/chromium/crypto/
signature_verifier.h 39 // The signature algorithm is specified as a DER encoded ASN.1
45 // The signature is encoded according to the signature algorithm, but it
46 // must not be further encoded in an ASN.1 BIT STRING.
50 // The public key is specified as a DER encoded ASN.1 SubjectPublicKeyInfo
  /external/chromium/third_party/libjingle/source/talk/base/
urlencode.h 33 // Decode all encoded characters. Also decode + as space.
36 // Decode all encoded characters.
51 std::string UrlDecodeString(const std::string & encoded);
53 const std::string & encoded);
  /external/chromium_org/chrome/browser/signin/
local_auth.cc 64 std::string encoded; local
65 const bool success = Encryptor::EncryptString(record, &encoded);
70 base::Base64Encode(encoded, &encoded64);
78 bool DecodePasswordHashRecord(const std::string& encoded,
82 if (encoded.length() < 1)
84 *encoding = encoded[0];
90 if (!base::Base64Decode(encoded.substr(1), &unbase64))
129 std::string encoded = EncodePasswordHashRecord(record, kHash1Encoding); local
132 info.SetLocalAuthCredentialsOfProfileAtIndex(info_index, encoded);
  /external/chromium_org/chrome/common/importer/
imported_favicon_usage.h 21 // The raw png-encoded data.
  /external/chromium_org/components/policy/core/common/cloud/
policy_header_service.cc 53 // Generate a Base64-encoded header of the form:
68 std::string encoded; local
69 base::Base64Encode(json, &encoded);
70 return encoded;
  /external/chromium_org/courgette/
encode_decode_unittest.cc 28 courgette::EncodedProgram* encoded = NULL; local
30 const courgette::Status encode_status = Encode(program, &encoded);
36 const courgette::Status write_status = WriteEncodedProgram(encoded, &sinks);
39 DeleteEncodedProgram(encoded);
  /external/chromium_org/mojo/apps/js/bindings/gl/
context.cc 20 gin::Handle<Context> Context::Create(v8::Isolate* isolate, uint64_t encoded,
22 return gin::CreateHandle(isolate, new Context(encoded, width, height));
71 Context::Context(uint64_t encoded, int width, int height)
72 : encoded_(encoded) {
  /external/chromium_org/mojo/gles2/
gles2_impl.h 25 virtual void MakeCurrent(uint64_t encoded) OVERRIDE;
  /external/chromium_org/mojo/public/gles2/
gles2_private.h 23 virtual void MakeCurrent(uint64_t encoded) = 0;
  /external/chromium_org/third_party/icu/source/tools/genrb/
rle.h 32 * Since an encoded run occupies 3 bytes, we only encode runs of 4 or
49 * Since an encoded run occupies 3 characters, we only encode runs of 4 or
60 * Construct an array of bytes from a run-length encoded string.
65 * Construct an array of shorts from a run-length encoded string.
  /external/chromium_org/third_party/libjingle/source/talk/base/
urlencode.h 33 // Decode all encoded characters. Also decode + as space.
36 // Decode all encoded characters.
51 std::string UrlDecodeString(const std::string & encoded);
53 const std::string & encoded);
  /external/chromium_org/third_party/sfntly/cpp/src/test/
test_utils_test.cc 41 int32_t encoded = TestUtils::EncodeOneChar(conv, (int16_t)from[i]); local
42 for (; encoded; encoded <<= 8) {
43 byte_t b = (encoded & 0xff000000) >> 24;
  /external/chromium_org/third_party/tlslite/tlslite/
X509.py 12 @ivar bytes: The DER-encoded ASN.1 certificate
18 @ivar subject: The DER-encoded ASN.1 subject distinguished name.
27 """Parse a PEM-encoded X.509 certificate.
30 @param s: A PEM-encoded X.509 certificate (i.e. a base64-encoded
48 """Parse a DER-encoded X.509 certificate.
51 @param bytes: A DER-encoded X.509 certificate.
105 """Get the hex-encoded fingerprint of this certificate.
108 @return: A hex-encoded fingerprint.
  /external/chromium_org/tools/grit/grit/
constants.py 11 # input files are in the correct encoding. The middle character gets encoded

Completed in 507 milliseconds

1 2 3 45 6 7 8 91011>>