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

1 2 3 4 5 6 7 8 91011>>

  /external/curl/tests/unit/
unit1302.c 47 unsigned char *decoded; variable
101 rc = Curl_base64_decode("aWlpaQ==", &decoded, &size);
104 verify_memory(decoded, "iiii", 4);
105 Curl_safefree(decoded); variable
107 rc = Curl_base64_decode("aWlp", &decoded, &size);
110 verify_memory(decoded, "iii", 3);
111 Curl_safefree(decoded); variable
113 rc = Curl_base64_decode("aWk=", &decoded, &size);
116 verify_memory(decoded, "ii", 2);
117 Curl_safefree(decoded); variable
123 Curl_safefree(decoded); variable
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/cert/
SubjectAlternativeNameTest.java 41 String decoded = formatIpAddress(mappedAddress); local
42 assertTrue(decoded,
43 decoded.equals("127.0.0.1") || decoded.equalsIgnoreCase("::ffff:127.0.0.1"));
48 String decoded = formatIpAddress(ipAddress); local
49 assertTrue(decoded, decoded.equals("::1") || decoded.equals("0:0:0:0:0:0:0:1"));
  /external/valgrind/none/tests/tilegx/
gen_insn_test.c 100 encode_insn_tilegx_X (int p, struct tilegx_decoded_instruction decoded);
103 encode_insn_tilegx_Y (int p, struct tilegx_decoded_instruction decoded);
122 struct tilegx_decoded_instruction decoded; local
141 memset(&decoded, 0, sizeof(decoded));
143 decoded.opcode = opcode;
145 const char *op_name = decoded.opcode->name;
154 encode_insn_tilegx_X(0, decoded);
158 encode_insn_tilegx_X(1, decoded);
162 encode_insn_tilegx_Y(0, decoded);
    [all...]
  /external/webrtc/webrtc/base/
urlencode.h 39 std::string UrlEncodeString(const std::string & decoded);
41 const std::string & decoded);
42 std::string UrlEncodeStringForOnlyUnsafeChars(const std::string & decoded);
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
audio_decoder_ilbc.cc 34 int16_t* decoded,
38 int ret = WebRtcIlbcfix_Decode(dec_state_, encoded, encoded_len, decoded,
44 size_t AudioDecoderIlbc::DecodePlc(size_t num_frames, int16_t* decoded) {
45 return WebRtcIlbcfix_NetEqPlc(dec_state_, decoded, num_frames);
audio_decoder_ilbc.h 25 size_t DecodePlc(size_t num_frames, int16_t* decoded) override;
33 int16_t* decoded,
ilbc.h 178 * - decoded : The decoded vector
181 * Return value : >0 - Samples in decoded vector
188 int16_t* decoded,
193 int16_t* decoded,
198 int16_t* decoded,
213 * - decoded : The "decoded" vector
215 * Return value : Samples in decoded PLC vector
219 int16_t *decoded,
    [all...]
  /external/webrtc/webrtc/test/fuzzers/
audio_decoder_fuzzer.h 27 int16_t* decoded);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/tsp/
TSTInfoTest.java 64 TSTInfo decoded = (TSTInfo) TSTInfo.ASN1.decode(encoding); local
66 assertEquals("Decoded version is incorrect", info.getVersion(), decoded
68 assertEquals("Decoded policy is incorrect", policy, decoded.getPolicy());
69 assertTrue("Decoded messageImprint is incorrect", Arrays.equals(
71 .encode(decoded.getMessageImprint())));
72 assertEquals("Decoded serialNumber is incorrect", BigInteger.TEN,
73 decoded.getSerialNumber());
74 assertEquals("Decoded genTime is incorrect", genTime, decode
    [all...]
TimeStampReqTest.java 53 TimeStampReq decoded = (TimeStampReq) TimeStampReq.ASN1 local
55 assertEquals("Decoded version is incorrect", req.getVersion(), decoded
57 assertTrue("Decoded messageImprint is incorrect", Arrays.equals(
59 .encode(decoded.getMessageImprint())));
60 assertEquals("Decoded reqPolicy is incorrect", reqPolicy, decoded
62 assertEquals("Decoded nonce is incorrect", nonce, decoded.getNonce());
63 assertFalse("Decoded certReq is incorrect", decoded.getCertReq(
    [all...]
PKIStatusInfoTest.java 43 PKIStatusInfo decoded = (PKIStatusInfo) PKIStatusInfo.ASN1 local
46 assertEquals(info.getStatus(), decoded.getStatus());
47 List decodedStString = decoded.getStatusString();
51 assertEquals(info.getFailInfo(), decoded.getFailInfo());
  /external/boringssl/src/crypto/base64/
base64_test.cc 24 const char *decoded; member in struct:TestVector
45 size_t len = EVP_EncodeBlock(out, (const uint8_t*)t->decoded,
46 strlen(t->decoded));
50 t->decoded, (int)len, (const char*)out, t->encoded);
64 size_t expected_len = strlen(t->decoded);
70 if (len != strlen(t->decoded) ||
71 memcmp(out, t->decoded, len) != 0) {
73 t->encoded, (int)len, (const char*)out, t->decoded);
91 if (static_cast<size_t>(ret) != strlen(t->decoded) ||
92 memcmp(out, t->decoded, ret) != 0)
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
tilepro-dis.c 42 decoded[TILEPRO_MAX_INSTRUCTIONS_PER_BUNDLE]; local
53 num_instructions = parse_insn_tilepro (bfd_getl64 (opbuf), memaddr, decoded);
57 const struct tilepro_opcode *opcode = decoded[i].opcode;
63 && decoded[i].operand_values[0] != expected_first_operand)
67 && decoded[i].operand_values[1] != expected_second_operand)
70 *last_operand_ret = decoded[i].operand_values[opcode->num_operands - 1];
83 decoded[TILEPRO_MAX_INSTRUCTIONS_PER_BUNDLE]; local
102 num_instructions = parse_insn_tilepro (bfd_getl64 (opbuf), memaddr, decoded);
112 if (!decoded[i].opcode->can_bundle)
123 const struct tilepro_opcode *opcode = decoded[i].opcode
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/
audio_decoder.cc 22 int16_t* decoded, SpeechType* speech_type) {
29 return DecodeInternal(encoded, encoded_len, sample_rate_hz, decoded,
35 int16_t* decoded, SpeechType* speech_type) {
42 return DecodeRedundantInternal(encoded, encoded_len, sample_rate_hz, decoded,
48 int sample_rate_hz, int16_t* decoded,
50 return DecodeInternal(encoded, encoded_len, sample_rate_hz, decoded,
56 size_t AudioDecoder::DecodePlc(size_t num_frames, int16_t* decoded) {
audio_decoder.h 38 // |decoded|. The maximum bytes allowed to be written into |decoded| is
48 int16_t* decoded,
57 int16_t* decoded,
65 // memory allocated in |decoded| should accommodate |num_frames| frames.
66 virtual size_t DecodePlc(size_t num_frames, int16_t* decoded);
109 int16_t* decoded,
115 int16_t* decoded,
  /external/webrtc/webrtc/modules/audio_coding/codecs/g722/
audio_decoder_g722.cc 36 int16_t* decoded,
41 WebRtcG722_Decode(dec_state_, encoded, encoded_len, decoded, &temp_type);
75 int16_t* decoded,
84 encoded_len / 2, decoded, &temp_type);
87 encoded_len / 2, &decoded[decoded_len], &temp_type);
92 int16_t temp = decoded[k];
93 memmove(&decoded[2 * k - ret + 2], &decoded[2 * k - ret + 1],
95 decoded[2 * k - ret + 1] = temp;
  /external/libchrome/base/
base64_unittest.cc 16 std::string decoded; local
22 ok = Base64Decode(encoded, &decoded);
24 EXPECT_EQ(kText, decoded);
  /art/runtime/
leb128_test.cc 26 uint32_t decoded; member in struct:art::DecodeUnsignedLeb128TestCase
45 int32_t decoded; member in struct:art::DecodeSignedLeb128TestCase
98 builder.PushBackUnsigned(uleb128_tests[i].decoded);
99 EXPECT_EQ(UnsignedLeb128Size(uleb128_tests[i].decoded), builder.GetData().size());
109 EXPECT_EQ(DecodeUnsignedLeb128(&data_ptr), uleb128_tests[i].decoded) << " i = " << i;
117 uint8_t* end = EncodeUnsignedLeb128(encoded_data, uleb128_tests[i].decoded);
119 EXPECT_EQ(UnsignedLeb128Size(uleb128_tests[i].decoded), data_size);
128 EXPECT_EQ(DecodeUnsignedLeb128(&data_ptr), uleb128_tests[i].decoded) << " i = " << i;
136 builder.PushBackUnsigned(uleb128_tests[i].decoded);
141 for (size_t j = 0; j < UnsignedLeb128Size(uleb128_tests[i].decoded); ++j)
    [all...]
  /external/google-tv-pairing-protocol/cpp/src/polo/encoding/
hexadecimalencoder.cc 36 std::vector<uint8_t> decoded(bytes, bytes + length);
39 return decoded;
  /external/webrtc/webrtc/modules/audio_coding/codecs/g711/
g711_interface.h 76 * - decoded : The decoded vector
81 * Return value : >0 - Samples in decoded vector
87 int16_t* decoded,
100 * - decoded : The decoded vector
105 * Return value : >0 - Samples in decoded vector
111 int16_t* decoded,
audio_decoder_pcm.cc 26 int16_t* decoded,
30 size_t ret = WebRtcG711_DecodeU(encoded, encoded_len, decoded, &temp_type);
50 int16_t* decoded,
54 size_t ret = WebRtcG711_DecodeA(encoded, encoded_len, decoded, &temp_type);
g711_interface.c 35 int16_t* decoded,
39 decoded[n] = alaw_to_linear(encoded[n]);
46 int16_t* decoded,
50 decoded[n] = ulaw_to_linear(encoded[n]);
  /external/webrtc/webrtc/modules/audio_coding/codecs/pcm16b/
audio_decoder_pcm16b.cc 32 int16_t* decoded,
37 size_t ret = WebRtcPcm16b_Decode(encoded, encoded_len, decoded);
  /external/guava/guava-tests/test/com/google/common/io/
BaseEncodingTest.java 310 BaseEncoding encoding, String decoded, String encoded) {
311 testEncodingWithSeparators(encoding, decoded, encoded);
312 testEncodingWithSeparators(encoding.upperCase(), decoded, Ascii.toUpperCase(encoded)); local
313 testEncodingWithSeparators(encoding.lowerCase(), decoded, Ascii.toLowerCase(encoded)); local
317 BaseEncoding encoding, String decoded, String encoded) {
318 testEncoding(encoding, decoded, encoded);
323 testEncoding(encoding.withSeparator(separator, sepLength), decoded, local
329 private static void testEncoding(BaseEncoding encoding, String decoded, String encoded) {
330 testEncodes(encoding, decoded, encoded);
331 testDecodes(encoding, encoded, decoded);
375 testStreamingEncodingWithSeparators(encoding.upperCase(), decoded, Ascii.toUpperCase(encoded)); local
376 testStreamingEncodingWithSeparators(encoding.lowerCase(), decoded, Ascii.toLowerCase(encoded)); local
387 testStreamingEncoding(encoding.withSeparator(separator, sepLength), decoded, local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/opus/
audio_decoder_opus.cc 31 int16_t* decoded,
36 WebRtcOpus_Decode(dec_state_, encoded, encoded_len, decoded, &temp_type);
46 int16_t* decoded,
50 return DecodeInternal(encoded, encoded_len, sample_rate_hz, decoded,
56 int ret = WebRtcOpus_DecodeFec(dec_state_, encoded, encoded_len, decoded,

Completed in 609 milliseconds

1 2 3 4 5 6 7 8 91011>>