HomeSort by relevance Sort by last modified time
    Searched defs:decoded (Results 26 - 50 of 275) sorted by null

12 3 4 5 6 7 8 91011

  /external/tensorflow/tensorflow/core/framework/
variant.h 271 Variant decoded = T(); local
272 if (!TryDecode(&decoded)) return false;
273 T* decoded_ret = decoded.get<T>();
variant_op_registry.cc 118 bool decoded = (*decode_fn)(variant); local
119 if (!decoded) return false;
variant_op_registry_test.cc 166 VariantValue* decoded = encoded.get<VariantValue>(); local
167 EXPECT_NE(decoded, nullptr);
168 EXPECT_EQ(decoded->early_exit, true);
  /external/v8/src/
source-position-table.cc 82 T decoded = 0; local
86 decoded |= static_cast<typename std::make_unsigned<T>::type>(
92 DCHECK_GE(decoded, 0);
93 decoded = (decoded >> 1) ^ (-(decoded & 1));
94 return decoded;
uri.cc 74 void AddToBuffer(uc16 decoded, String::FlatContent* uri_content, int index,
76 if (is_uri && IsReservedPredicate(decoded)) {
86 buffer->Add(decoded);
102 uc16 decoded = static_cast<uc16>(two_digits); local
103 if (decoded > unibrow::Utf8::kMaxOneByteChar) {
105 octets[0] = decoded;
108 while ((decoded << ++number_of_continuation_bytes) & 0x80) {
126 AddToBuffer(decoded, uri_content, k - 2, is_uri, buffer);
152 uc16 decoded = static_cast<uc16>(two_digits); local
153 if (decoded > unibrow::Utf8::kMaxOneByteChar)
    [all...]
  /external/webrtc/webrtc/base/
stringencode_unittest.cc 23 unsigned long decoded; member in struct:rtc::Utf8Test
43 unsigned long result = (kTests[i].enclen == 0) ? 0 : kTests[i].decoded;
46 if (kTests[i].decoded == 0) {
55 kTests[i].decoded));
base64_unittest.cc 409 // Is it the expected decoded value?
924 << "\\" -> \\"" << decoded local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/g711/test/
testG711.cc 52 int16_t decoded[480]; local
136 WebRtcG711_DecodeA(streamdata, stream_len, decoded, speechType);
147 WebRtcG711_DecodeU(streamdata, stream_len, decoded, speechType);
153 if (fwrite(decoded, sizeof(short), framelength, outp) != framelength) {
  /external/webrtc/webrtc/modules/audio_coding/codecs/g722/test/
testG722.cc 59 int16_t decoded[960]; local
127 WebRtcG722_Decode(G722dec_inst, streamdata, stream_len, decoded,
139 if (fwrite(decoded, sizeof(short), framelength, outp) !=
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
DecodeJob.java 26 * @param <A> The type of the source data the resource can be decoded from.
27 * @param <T> The type of resource that will be decoded.
28 * @param <Z> The type of resource that will be transcoded from the decoded and transformed resource.
73 * Returns a transcoded resource decoded from transformed resource data in the disk cache, or null if no such
86 logWithTimeAndKey("Decoded transformed from cache", startTime);
97 * Returns a transformed and transcoded resource decoded from source data in the disk cache, or null if no such
108 Resource<T> decoded = loadFromCache(resultKey.getOriginalKey()); local
110 logWithTimeAndKey("Decoded source from cache", startTime);
112 return transformEncodeAndTranscode(decoded);
116 * Returns a transformed and transcoded resource decoded from source data, or null if no source data could b
127 Resource<T> decoded = decodeSource(); local
166 Resource<T> decoded = null; local
184 final Resource<T> decoded; local
    [all...]
  /external/wycheproof/java/com/google/security/wycheproof/testcases/
EcKeyTest.java 154 ECPrivateKey decoded = (ECPrivateKey) kf.generatePrivate(spec); local
155 assertEquals(priv.getS(), decoded.getS());
156 assertEquals(priv.getParams().getCofactor(), decoded.getParams().getCofactor());
157 assertEquals(priv.getParams().getCurve(), decoded.getParams().getCurve());
158 assertEquals(priv.getParams().getGenerator(), decoded.getParams().getGenerator());
159 assertEquals(priv.getParams().getOrder(), decoded.getParams().getOrder());
  /external/protobuf/src/google/protobuf/util/internal/
datapiece.cc 251 string decoded; local
252 if (!DecodeBase64(str_, &decoded)) {
255 return decoded;
  /external/python/cpython3/Modules/cjkcodecs/
_codecs_kr.c 111 Py_UCS4 decoded; local
155 else if (TRYMAP_DEC(ksx1001, decoded, c ^ 0x80, INBYTE2 ^ 0x80)) {
156 OUTCHAR(decoded);
208 Py_UCS4 decoded; local
217 if (TRYMAP_DEC(ksx1001, decoded, c ^ 0x80, INBYTE2 ^ 0x80))
218 OUTCHAR(decoded);
219 else if (TRYMAP_DEC(cp949ext, decoded, c, INBYTE2))
220 OUTCHAR(decoded);
365 Py_UCS4 decoded; local
439 if (TRYMAP_DEC(ksx1001, decoded, t1, t2))
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
DecoderUtil.java 46 * @return the decoded bytes.
75 * @return the decoded bytes.
106 * @return the decoded string.
122 * @return the decoded string.
154 * @return the decoded string.
194 String decoded = decodeEncodedWord(body, begin, end); local
195 if (decoded == null) {
202 sb.append(decoded);
206 previousWasEncoded = decoded != null;
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
HardwareBitmapTests.java 286 Bitmap decoded = BitmapFactory.decodeStream( local
293 canvas.drawBitmap(decoded, 0, 0, null);
  /external/guava/guava-gwt/test-super/com/google/common/io/super/com/google/common/io/
BaseEncodingTest.java 244 BaseEncoding encoding, String decoded, String encoded) {
245 testEncodingWithSeparators(encoding, decoded, encoded);
246 testEncodingWithSeparators(encoding.upperCase(), decoded, Ascii.toUpperCase(encoded)); local
247 testEncodingWithSeparators(encoding.lowerCase(), decoded, Ascii.toLowerCase(encoded)); local
251 BaseEncoding encoding, String decoded, String encoded) {
252 testEncoding(encoding, decoded, encoded);
257 testEncoding(encoding.withSeparator(separator, sepLength), decoded, local
263 private static void testEncoding(BaseEncoding encoding, String decoded, String encoded) {
264 testEncodes(encoding, decoded, encoded);
265 testDecodes(encoding, encoded, decoded);
    [all...]
  /external/libevent/sample/
http-server.c 164 struct evhttp_uri *decoded = NULL; local
180 decoded = evhttp_uri_parse(uri);
181 if (!decoded) {
188 path = evhttp_uri_get_path(decoded);
313 if (decoded)
314 evhttp_uri_free(decoded);
  /external/nanopb-c/tests/alltypes_callback/
decode_alltypes_callback.c 147 SubMessage decoded = {""}; local
148 if (!pb_decode(stream, SubMessage_fields, &decoded))
151 TEST(memcmp((*expected)++, &decoded, sizeof(decoded)) == 0);
157 Limits decoded = {0}; local
158 if (!pb_decode(stream, Limits_fields, &decoded))
161 TEST(decoded.int32_min == INT32_MIN);
162 TEST(decoded.int32_max == INT32_MAX);
163 TEST(decoded.uint32_min == 0);
164 TEST(decoded.uint32_max == UINT32_MAX)
    [all...]
  /external/tensorflow/tensorflow/contrib/coder/kernels/
range_coder_ops_test.cc 142 Tensor decoded; local
143 TF_ASSERT_OK(RunDecodeOp(precision, {encoded, shape, cdf}, &decoded));
145 EXPECT_EQ(decoded.dtype(), data.dtype());
146 EXPECT_EQ(decoded.shape(), data.shape());
147 EXPECT_EQ(decoded.tensor_data(), data.tensor_data());
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/
test_iSACfixfloat.c 106 int16_t decoded[MAX_FRAMESAMPLES]; local
475 decoded, speechType);
497 decoded, speechType);
503 (int)WebRtcIsacfix_DecodePlc(ISACFIX_main_inst, decoded, 1);
506 (int)WebRtcIsacfix_DecodePlcNb(ISACFIX_main_inst, decoded, 1);
511 stream_len, decoded, speechType);
514 stream_len, decoded, speechType);
540 decoded, speechType);
563 (int)WebRtcIsacfix_DecodePlc(ISACFIX_main_inst, decoded, 1);
566 (int)WebRtcIsacfix_DecodePlcNb(ISACFIX_main_inst, decoded, 1)
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
audio_decoder_unittest.cc 185 std::vector<int16_t> decoded; local
196 decoded.resize((processed_samples + frame_size_) * channels_, 0);
201 &decoded[processed_samples * channels_], &speech_type);
213 input, decoded, processed_samples, channels_, tolerance, delay);
216 decoded, processed_samples, channels_, channel_diff_tolerance);
218 MseInputOutput(input, decoded, processed_samples, channels_, delay),
223 // decode. Verifies that the decoded result is the same.
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
NativeUtil.java 71 * @return the string decoded from UTF_8 byte values in byteArrayList.
103 * @return the string decoded from UTF_8 byte values in byteArray.
257 CharBuffer decoded = decoder.decode(ByteBuffer.wrap(byteArray)); local
258 return "\"" + decoded.toString() + "\"";
  /libcore/luni/src/test/java/libcore/javax/security/auth/x500/
X500PrincipalTest.java 182 X500Principal decoded = new X500Principal(actualEncoded); local
183 assertEquals(original, decoded);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
BitmapUtil.java 45 * @return a decoded Bitmap that is not exactly sized to the hinted dimensions.
72 * @return an exactly-sized decoded Bitmap that is center-cropped.
76 final Bitmap decoded = decodeByteArray(src, w, h); local
77 return centerCrop(decoded, w, h);
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/util/
bit_stream.cpp 194 const int64_t decoded = DecodeZigZag(encoded, zigzag_exponent); local
196 *val = static_cast<T>(decoded);
197 assert(*val == decoded);

Completed in 1133 milliseconds

12 3 4 5 6 7 8 91011