Searched refs:encoded (Results 226 - 250 of 362) sorted by relevance

1234567891011>>

/external/llvm/lib/Support/Windows/
H A DProcess.inc130 /// Returns the environment variable \arg Name's value as a string encoded in
138 // Environment variable can be encoded in non-UTF8 encoding, and there's no
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DServerLog.java375 String encoded = (logContent ? message.encode() : message.encodeMessage());
379 logMessage(encoded, from, to, sender, callId, firstLine, status, tid, time, tsval);
/external/okhttp/okio/okio/src/test/java/okio/
H A DUtf8Test.java74 Buffer encoded = new Buffer().writeUtf8(a);
76 assertEquals(expected, encoded);
/external/pdfium/fpdfsdk/
H A Dfpdfattachment.cpp201 ByteString encoded = PDF_EncodeString(stringValue->GetString(), true); local
202 value = CPDF_String(nullptr, encoded, false).GetUnicodeText();
/external/python/cpython2/Lib/test/
H A Dtest_unicode_file.py14 # cannot be encoded in the file system encoding.
116 def _do_directory(self, make_name, chdir_name, encoded):
122 if not encoded:
179 # Make dir with encoded, chdir with unicode, checkdir with encoded
180 # (or unicode/encoded/unicode, etc
/external/v8/src/
H A Deh-frame.h256 static uint32_t DecodeULeb128(const byte* encoded, int* encoded_size);
257 static int32_t DecodeSLeb128(const byte* encoded, int* encoded_size);
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/
H A Daudio_encoder_isac_t_impl.h120 uint8_t* encoded) {
130 int r = T::Encode(isac_state_, audio.data(), encoded);
116 EncodeInternal( uint32_t rtp_timestamp, rtc::ArrayView<const int16_t> audio, size_t max_encoded_bytes, uint8_t* encoded) argument
/external/webrtc/webrtc/modules/audio_coding/codecs/opus/
H A Daudio_encoder_opus.cc137 uint8_t* encoded) {
151 rtc::saturated_cast<int16_t>(max_encoded_bytes), encoded);
133 EncodeInternal( uint32_t rtp_timestamp, rtc::ArrayView<const int16_t> audio, size_t max_encoded_bytes, uint8_t* encoded) argument
/external/skqp/third_party/etc1/
H A Detc1.cpp509 // Return the size of the encoded image data (does not include size of PKM header).
518 // pOut - pointer to encoded data. Must be large enough to store entire encoded image.
529 etc1_byte encoded[ETC1_ENCODED_BLOCK_SIZE]; local
561 etc1_encode_block(block, mask, encoded);
562 memcpy(pOut, encoded, sizeof(encoded));
563 pOut += sizeof(encoded);
570 // pIn - pointer to encoded data.
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DDFA.java333 List encoded = new ArrayList(transition.size());
337 encoded.add(getRunLengthEncoding(transitionsForState));
339 return encoded;
343 * encoded as number,value pair sequences. 3 -1 -1 -1 28 is encoded
361 List encoded = new ArrayList(size); // guess at size
384 encoded.add(generator.target.encodeIntAsCharEscape((char)n));
385 encoded.add(generator.target.encodeIntAsCharEscape((char)I.intValue()));
388 return encoded;
473 List encoded
[all...]
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DOpenSSLCipher.java404 byte[] encoded = key.getEncoded();
405 return engineDoFinal(encoded, 0, encoded.length);
417 byte[] encoded = engineDoFinal(wrappedKey, 0, wrappedKey.length);
420 return keyFactory.generatePublic(new X509EncodedKeySpec(encoded));
423 return keyFactory.generatePrivate(new PKCS8EncodedKeySpec(encoded));
425 return new SecretKeySpec(encoded, wrappedKeyAlgorithm);
H A DSSLUtils.java299 byte[] encoded = certificates[i].getEncoded();
300 chain[i] = javax.security.cert.X509Certificate.getInstance(encoded);
360 * @param protocols the encoded protocol list
398 * Requires that all strings be encoded with US-ASCII.
400 * @param protocols the list of protocols to be encoded
401 * @return the encoded form of the protocol list.
414 // Calculate the encoded length.
/external/tensorflow/tensorflow/core/lib/strings/
H A Dordered_code_test.cc126 string encoded; local
127 OCWriteToString<T>(&encoded, first);
128 string encoded_first_only = encoded;
129 OCWriteToString<U>(&encoded, second);
130 EXPECT_NE(encoded, encoded_first_only);
131 EXPECT_TRUE(StringPiece(encoded).starts_with(encoded_first_only));
472 string encoded; local
473 OrderedCode::WriteString(&encoded, value);
474 return encoded;
/external/python/cpython2/Objects/
H A Dbytearrayobject.c783 PyObject *new, *encoded; local
785 encoded = _PyCodec_EncodeText(arg, encoding, errors);
786 if (encoded == NULL)
788 assert(PyBytes_Check(encoded));
791 encoded = arg;
795 Py_DECREF(encoded);
805 PyObject *encoded, *new; local
811 encoded = _PyCodec_EncodeText(arg, encoding, errors);
812 if (encoded == NULL)
814 assert(PyBytes_Check(encoded));
[all...]
/external/tensorflow/tensorflow/core/framework/
H A Dvariant_op_registry_test.cc164 Variant encoded = proto; local
165 EXPECT_TRUE((*decode_fn)(&encoded));
166 VariantValue* decoded = encoded.get<VariantValue>();
/external/tensorflow/tensorflow/python/lib/core/
H A Dndarray_tensor.cc197 char* dst = data_start; // Where next string is encoded.
230 " bytes of encoded strings for the tensor containing ", nelems,
231 " strings, but the tensor is encoded in ", tensor_size, " bytes");
396 // is allocated into which the strings are encoded.
411 void* encoded = nullptr; local
412 TF_RETURN_IF_ERROR(EncodePyBytesArray(array, nelems, &size, &encoded));
414 make_safe(TF_NewTensor(dtype, dims.data(), dims.size(), encoded, size,
/external/flatbuffers/php/
H A DTable.php67 * fetch utf8 encoded string.
/external/llvm/test/MC/PowerPC/
H A Dppc64-localentry.s57 # Verify that .localentry is encoded in the Other field.
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
H A DDexWriterSleb128Test.java242 byte encoded = encodedValue[i];
245 encoded = (byte)(encoded & 0x0F);
248 Assert.assertEquals(String.format("Values not equal at index %d", i), encoded, written);
/external/webrtc/webrtc/base/
H A Dstringencode_unittest.cc21 const char* encoded; member in struct:rtc::Utf8Test
38 for (size_t i = 0; kTests[i].encoded; ++i) {
40 ASSERT_EQ(kTests[i].enclen, utf8_decode(kTests[i].encoded,
56 ASSERT_TRUE(memcmp(buffer, kTests[i].encoded, kTests[i].enclen) == 0);
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Daudio_decoder_impl.cc68 int AudioDecoderCng::DecodeInternal(const uint8_t* encoded, argument
/external/autotest/server/site_tests/enterprise_LongevityTrackerServer/
H A Denterprise_LongevityTrackerServer.py127 encoded = urllib.urlencode(data_obj)
128 req = urllib2.Request(DASHBOARD_UPLOAD_URL, encoded)
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
H A DAnalyseJavaSymbolSolver060Test.java77 byte[] encoded = Files.readAllBytes(Paths.get(file.getAbsolutePath()));
78 return new String(encoded, StandardCharsets.UTF_8);
/external/protobuf/csharp/src/Google.Protobuf.Test/
H A DJsonFormatterTest.cs199 public void SimpleNonAscii(string text, string encoded) argument
202 AssertJson("{ 'singleString': '" + encoded + "' }", JsonFormatter.Default.Format(message));
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
H A DProcess.inc118 /// Returns the environment variable \arg Name's value as a string encoded in
126 // Environment variable can be encoded in non-UTF8 encoding, and there's no

Completed in 1498 milliseconds

1234567891011>>