Home
last modified time | relevance | path

Searched refs:encode (Results 526 - 550 of 992) sorted by relevance

1...<<21222324252627282930>>...40

/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/
H A DHdmxEncoder.java37 public WritableFontData encode(Font sourceFont) { in encode() method in HdmxEncoder
/third_party/skia/third_party/externals/jinja2/
H A Dexceptions.py15 message = text_type(message).encode("utf-8")
/third_party/skia/third_party/externals/brotli/c/enc/
H A Dquality.h14 #include <brotli/encode.h>
/third_party/openssl/test/
H A Dcms-examples.pl36 [ "3.2.bin" => "encode, dataout" ],
37 [ "4.1.bin" => "encode, verifyder, cont, dss" ],
38 [ "4.2.bin" => "encode, verifyder, cont, rsa" ],
39 [ "4.3.bin" => "encode, verifyder, cont_extern, dss" ],
40 [ "4.4.bin" => "encode, verifyder, cont, dss" ],
42 [ "4.6.bin" => "encode, verifyder, cont, dss" ],
43 [ "4.7.bin" => "encode, verifyder, cont, dss" ],
46 [ "4.10.bin" => "encode, verifyder, cont, dss" ],
47 [ "4.11.bin" => "encode, certsout" ],
48 [ "5.1.bin" => "encode, envelopede
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-name.cc91 typename out_utf_t::codepoint_t *dst_next = out_utf_t::encode (dst, dst_end, unicode); in hb_ot_name_convert_utf()
/third_party/skia/third_party/externals/harfbuzz/test/shape/
H A Drun-tests.py8 process.stdin.write ((';'.join (command) + '\n').encode ("utf-8"))
/third_party/skia/third_party/externals/harfbuzz/test/subset/
H A Drun-repack-tests.py28 process.stdin.write ((';'.join (command) + '\n').encode ("utf-8"))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/GSYM/
H A DFunctionInfo.h113 /// tables that do not encode symbol sizes. In that case only the
143 llvm::Expected<uint64_t> encode(FileWriter &O) const;
/third_party/skia/tools/skqp/
H A Dfind_commit_with_best_gold_results.py34 return s.encode('utf-8') if s is not None else ''
/third_party/vixl/tools/
H A Dgenerate_tests.py773 out, _ = proc.communicate(generated_file.encode())
/third_party/protobuf/python/google/protobuf/
H A Dmessage.py394 serialized = serialized.encode('latin1')
H A Dmessage_factory.py81 descriptor_name = descriptor.name.encode('ascii', 'ignore')
/third_party/protobuf/python/google/protobuf/internal/
H A Dwire_format.py65 # "struct" format strings that will encode/decode the specified formats.
184 return BytesByteSize(field_number, string.encode('utf-8'))
/third_party/python/Lib/wsgiref/
H A Dheaders.py142 return str(self).encode('iso-8859-1')
/third_party/qrcodegen/python/
H A Dqrcodegen-demo.py103 QrSegment.make_bytes(golden0.encode("UTF-8")),
/third_party/skia/buildtools/reclient_cfgs/
H A Dfetch_reclient_cfgs.py40 input=('%s %s' % (pkg_name, ref)).encode('utf-8'))
/third_party/node/deps/v8/src/compiler/
H A Djs-operator.h119 : bit_field_(ArityField::encode(arity) | in ConstructForwardVarargsParameters()
120 StartIndexField::encode(start_index)) {} in ConstructForwardVarargsParameters()
199 : bit_field_(ArityField::encode(arity) | in CallForwardVarargsParameters()
200 StartIndexField::encode(start_index)) {} in CallForwardVarargsParameters()
242 : bit_field_(ArityField::encode(arity) | in CallParameters()
243 CallFeedbackRelationField::encode(feedback_relation) | in CallParameters()
244 SpeculationModeField::encode(speculation_mode) | in CallParameters()
245 ConvertReceiverModeField::encode(convert_mode)), in CallParameters()
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-internal-gen.cc1095 SmiConstant(Smi::FromInt(AllocateDoubleAlignFlag::encode(false) | in TF_BUILTIN()
1096 AllowLargeObjectAllocationFlag::encode(true))); in TF_BUILTIN()
1106 SmiConstant(Smi::FromInt(AllocateDoubleAlignFlag::encode(false) | in TF_BUILTIN()
1107 AllowLargeObjectAllocationFlag::encode(false))); in TF_BUILTIN()
1117 SmiConstant(Smi::FromInt(AllocateDoubleAlignFlag::encode(false) | in TF_BUILTIN()
1118 AllowLargeObjectAllocationFlag::encode(true))); in TF_BUILTIN()
1128 SmiConstant(Smi::FromInt(AllocateDoubleAlignFlag::encode(false) | in TF_BUILTIN()
1129 AllowLargeObjectAllocationFlag::encode(false))); in TF_BUILTIN()
/third_party/python/Lib/test/
H A Dtest_ftplib.py94 super(DummyDTPHandler, self).push(what.encode(self.encoding))
150 asynchat.async_chat.push(self, data.encode(self.encoding) + b'\r\n')
615 f = io.BytesIO(RETR_DATA.encode(self.client.encoding))
625 data = RETR_DATA.replace('\r\n', '\n').encode(self.client.encoding)
633 data = RETR_DATA.replace('\r\n', '\n').encode(self.client.encoding)
949 LIST_DATA.encode(self.client.encoding))
959 LIST_DATA.encode(self.client.encoding))
967 LIST_DATA.encode(self.client.encoding))
H A Dtest_re.py1199 literal_chars = self.LITERAL_CHARS.encode('ascii')
1211 b = 'y\u2620y\u2620y'.encode('utf-8')
1215 res = re.findall(re.escape('\u2620'.encode('utf-8')), b)
1312 self.assertTrue(re.match((r"\%03o" % i).encode(), bytes([i])))
1313 self.assertTrue(re.match((r"\%03o0" % i).encode(), bytes([i])+b"0"))
1314 self.assertTrue(re.match((r"\%03o8" % i).encode(), bytes([i])+b"8"))
1315 self.assertTrue(re.match((r"\x%02x" % i).encode(), bytes([i])))
1316 self.assertTrue(re.match((r"\x%02x0" % i).encode(), bytes([i])+b"0"))
1317 self.assertTrue(re.match((r"\x%02xz" % i).encode(), bytes([i])+b"z"))
1333 self.assertTrue(re.match((r"[\%o]" % i).encode(), byte
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gt/
H A Dintel_ggtt.c233 gen8_set_pte(gte++, vm->scratch[0]->encode); in gen8_ggtt_insert_entries()
284 iowrite32(vm->scratch[0]->encode, gte++); in gen6_ggtt_insert_entries()
304 const gen8_pte_t scratch_pte = vm->scratch[0]->encode; in gen8_ggtt_clear_range()
402 scratch_pte = vm->scratch[0]->encode; in gen6_ggtt_clear_range()
817 ggtt->vm.scratch[0]->encode = in ggtt_probe_common()
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/amdgpu/
H A Dsoc15.c174 static int soc15_query_video_codecs(struct amdgpu_device *adev, bool encode, in soc15_query_video_codecs() argument
181 if (encode) in soc15_query_video_codecs()
193 if (encode) in soc15_query_video_codecs()
201 if (encode) in soc15_query_video_codecs()
207 if (encode) in soc15_query_video_codecs()
/third_party/node/deps/v8/src/ast/
H A Dast.cc170 bit_field_ |= IsAssignedField::encode(false) | in VariableProxy()
171 IsResolvedField::encode(false) | in VariableProxy()
172 HoleCheckModeField::encode(HoleCheckMode::kElided); in VariableProxy()
195 bit_field_ |= TokenField::encode(op); in Assignment()
943 bit_field_ |= SpreadPositionField::encode(position); in ComputeSpreadPosition()
/third_party/node/deps/v8/src/heap/
H A Dsetup-heap-internal.cc180 Map::Bits3::EnumLengthBits::encode(kInvalidEnumCacheSentinel) | in AllocatePartialMap()
181 Map::Bits3::OwnsDescriptorsBit::encode(true) | in AllocatePartialMap()
182 Map::Bits3::ConstructionCounterBits::encode(Map::kNoSlackTracking); in AllocatePartialMap()
553 int flags = ScopeInfo::IsEmptyBit::encode(true); in CreateInitialMaps()
937 Code::IsPromiseRejectionField::encode(true), in CreateInitialObjects()
/third_party/python/Lib/
H A Dimaplib.py629 pwd = (self.password.encode('utf-8') if isinstance(self.password, str)
1411 return self.encode(ret)
1413 def encode(self, inp): member in _Authenticator
1424 inp = inp.encode('utf-8')
1443 Mon2num = {s.encode():n+1 for n, s in enumerate(Months[1:])}

Completed in 25 milliseconds

1...<<21222324252627282930>>...40