HomeSort by relevance Sort by last modified time
    Searched full:encode (Results 576 - 600 of 1967) sorted by null

<<21222324252627282930>>

  /external/dropbear/libtomcrypt/testprof/
der_tests.c 27 /* make structure and encode it */
32 /* encode it */
170 /* encode it */
194 fprintf(stderr, "Decode len of %lu does not match encode len of %lu \n", decode_len, encode_buf_len);
487 /* encode */
577 /* encode with normal */
583 /* encode with short */
651 fprintf(stderr, "rsa_oid_der encode failed to match, %lu, ", x);
682 /* encode it */
711 fprintf(stderr, "IA5 encode failed: %lu, %lu\n", x, (unsigned long)sizeof(rsa_ia5_der))
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 191 * Convert to a formatted string for pretty printing. Note that the encode method converts
432 * Encode the SIP Request as a string.
437 public String encode() { method in class:SIPRequest
441 retval = requestLine.encode() + super.encode();
445 retval = super.encode();
451 * Encode only the headers and not the content.
457 retval = requestLine.encode() + super.encodeSIPHeaders();
467 * ALias for encode above.
470 return this.encode();
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
SipUri.java 237 public String encode() { method in class:SipUri
238 return encode(new StringBuffer()).toString();
241 public StringBuffer encode(StringBuffer buffer) { method in class:SipUri
244 authority.encode(buffer);
247 uriParms.encode(buffer);
251 qheaders.encode(buffer);
262 return this.encode();
276 String host = authority.getHost().encode();
295 String host = authority.getHost().encode();
426 else return authority.getHost().encode();
    [all...]
  /frameworks/media/libvideoeditor/vss/src/
M4VSS3GPP_EditAudio.c 452 * If we were reading the clip, we must jump a few AU backward to decode/encode
502 * Decode/encode up to the wanted position */
535 M4OSA_TRACE2_0("E **** pre-encode");
540 * So PCM buffer sizes might be 0. In this case donot call encode Step*/
546 * Encode the PCM audio */
649 * BZZZ bug fix (decode-encode case):
650 * (Yes, the Bzz bug may also occur when we re-encode. It doesn't
651 * occur at the decode before the encode, but at the playback!)
673 * Encode the filtered PCM audio directly into the output AU */
694 M4OSA_TRACE2_0("H ++++ encode AU")
    [all...]
  /external/apache-harmony/nio_char/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
CharsetTest.java 177 // cs1.encode(in);
179 // cs2.encode(in);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
GeneralizedTimeTest.java 139 long new_date = ((Date) gtime.decode(gtime.encode(new Date(old_date))))
147 long new_date = ((Date) gtime.decode(gtime.encode(new Date(old_date))))
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOMOutputImpl.java 101 * application must encode the stream using UTF-16 (defined in [Unicode] and
113 * application must encode the stream using UTF-16 (defined in [Unicode] and
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1Set.java 284 throw new IllegalArgumentException("cannot encode object added to SET");
338 abstract void encode(DEROutputStream out) method
DERApplicationSpecific.java 153 * @see org.bouncycastle.asn1.DERObject#encode(org.bouncycastle.asn1.DEROutputStream)
155 void encode(DEROutputStream out) throws IOException method in class:DERApplicationSpecific
DERExternal.java 119 * @see org.bouncycastle.asn1.DERObject#encode(org.bouncycastle.asn1.DEROutputStream)
121 void encode(DEROutputStream out) method in class:DERExternal
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/asymmetric/ec/
Signature.java 255 public byte[] encode( method in class:Signature.StdDSAEncoder
285 public byte[] encode( method in class:Signature.CVCDSAEncoder
  /external/chromium/chrome/browser/safe_browsing/
prefix_set.h 8 // cases where 16 bits cannot encode a delta.
98 // Maximum number of consecutive deltas to encode before generating
  /external/icu4c/i18n/
bocsu.c 25 * encode one difference value -0x10ffff..+0x10ffff in 1..3 bytes,
104 * Encode the code points of a string as
  /external/llvm/include/llvm/MC/
MCObjectWriter.h 188 /// Utility function to encode a SLEB128 value.
190 /// Utility function to encode a ULEB128 value.
  /external/nist-sip/java/gov/nist/javax/sip/header/
AcceptLanguage.java 71 /** Encode the value of this header to a string.
80 encoding.append(SEMICOLON).append(parameters.encode());
RetryAfter.java 71 /** Encode body of this into cannonical form.
84 s.append(SEMICOLON + parameters.encode());
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
MessageMicro.java 43 * Get the number of bytes required to encode this message.
52 * Computes the number of bytes required to encode this message.
  /external/skia/samplecode/
SampleEncode.cpp 88 // types to encode into. Can be at most these 3. Must match up with gExt[]
133 SkDebugf("------ failed to encode %s\n", path.c_str());
  /external/v8/src/
code-stubs.cc 185 return OpField::encode(op_ - Token::EQ) | StateField::encode(state_);
  /external/webkit/Source/JavaScriptCore/runtime/
Error.cpp 179 return JSValue::encode(jsNull());
191 return JSValue::encode(jsNull());
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestMediaQueryListListener.cpp 176 return JSValue::encode(jsUndefined());
179 return JSValue::encode(jsUndefined());
  /external/webkit/Source/WebCore/platform/image-encoders/skia/
JPEGImageEncoder.cpp 153 bool JPEGImageEncoder::encode(const SkBitmap& bitmap, int quality, Vector<unsigned char>* output) function in class:WebCore::JPEGImageEncoder
165 bool JPEGImageEncoder::encode(const ImageData& imageData, int quality, Vector<unsigned char>* output) function in class:WebCore::JPEGImageEncoder
PNGImageEncoder.cpp 118 bool PNGImageEncoder::encode(const SkBitmap& bitmap, Vector<unsigned char>* output) function in class:WebCore::PNGImageEncoder
128 bool PNGImageEncoder::encode(const ImageData& bitmap, Vector<unsigned char>* output) function in class:WebCore::PNGImageEncoder
  /external/webkit/Source/WebCore/platform/text/
TextCodecUTF16.cpp 120 CString TextCodecUTF16::encode(const UChar* characters, size_t length, UnencodableHandling) function in class:WebCore::TextCodecUTF16
134 // null characters inside it. Perhaps the result of encode should not be a CString.
  /external/webkit/Source/WebKit2/Platform/mac/
SharedMemoryMac.cpp 57 void SharedMemory::Handle::encode(CoreIPC::ArgumentEncoder* encoder) const function in class:WebKit::SharedMemory::Handle
60 encoder->encode(CoreIPC::MachPort(m_port, MACH_MSG_TYPE_MOVE_SEND));

Completed in 513 milliseconds

<<21222324252627282930>>