/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_fs_builder.h | 77 annotation.str = inst->annotation; in fs_builder() 166 annotate(const char *str, const void *ir = NULL) const in annotate() argument 169 bld.annotation.str = str; in annotate() 371 inst->annotation = annotation.str; in emit() 880 const char *str; member
|
/third_party/libdrm/tests/amdgpu/ |
H A D | ras_tests.c | 505 char str[128]; in amdgpu_ras_lookup_id() local 511 memset(str, 0, sizeof(str)); in amdgpu_ras_lookup_id() 514 if (get_file_contents(path, str, sizeof(str)) <= 0) in amdgpu_ras_lookup_id() 517 ret = sscanf(str, "amdgpu dev=%04hx:%02hhx:%02hhx.%01hhx", in amdgpu_ras_lookup_id()
|
/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | phonenumber.pb.cc | 274 auto str = _internal_mutable_extension(); in _InternalParse() local 275 ptr = ::PROTOBUF_NAMESPACE_ID::internal::InlineGreedyStringParser(str, ptr, ctx); in _InternalParse() 290 auto str = _internal_mutable_raw_input(); in _InternalParse() local 291 ptr = ::PROTOBUF_NAMESPACE_ID::internal::InlineGreedyStringParser(str, ptr, ctx); in _InternalParse() 310 auto str = _internal_mutable_preferred_domestic_carrier_code(); in _InternalParse() local 311 ptr = ::PROTOBUF_NAMESPACE_ID::internal::InlineGreedyStringParser(str, ptr, ctx); in _InternalParse()
|
/third_party/node/deps/v8/src/flags/ |
H A D | flags.cc | 479 const char* str = flag.string_value(); in operator <<() local 480 os << std::quoted(str ? str : ""); in operator <<() 513 std::string args(modified_args_as_string.str()); in ComputeFlagListHash() 752 int FlagList::SetFlagsFromString(const char* str, size_t len) { in SetFlagsFromString() argument 753 // make a 0-terminated copy of str in SetFlagsFromString() 755 MemCopy(copy0.get(), str, len); in SetFlagsFromString()
|
/third_party/node/deps/v8/src/torque/ |
H A D | cc-generator.cc | 46 out() << out_buffer.str(); in EmitGraph() 116 args.push_back(s.str()); in ProcessArgumentsCommon() 365 const std::string str = "static_cast<" + in EmitInstruction() local 368 stack->Poke(stack->AboveTop() - 1, str); in EmitInstruction() 369 SetDefinitionVariable(instruction.GetValueDefinition(), str); in EmitInstruction() 435 return stream.str(); in GetBitFieldSpecialization()
|
/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | v3_ncons.c | 77 # define ia5memchr(str, start, c) memchr(start, c, IA5_OFFSET_LEN(str, start)) 80 static char *ia5memrchr(ASN1_IA5STRING *str, int c) 84 for (i = str->length; i > 0 && str->data[i - 1] != c; i--); 89 return (char *)&str->data[i - 1];
|
/third_party/python/Lib/distutils/ |
H A D | ccompiler.py | 154 if isinstance(value, str): 175 (isinstance (defn[1], str) or defn[1] is None)) and 176 isinstance (defn[0], str)): 315 elif not isinstance(outdir, str): 374 elif not isinstance(output_dir, str): 422 elif not isinstance(output_dir, str):
|
/third_party/python/Lib/ |
H A D | tempfile.py | 9 The default path names are returned as str. If you supply bytes as 96 if return_type is str: 104 return_type = str 106 if tempdir is None or isinstance(tempdir, str): 107 return str # tempfile APIs return a str by default. 120 if output_type is str: 125 if output_type is str: 314 """Returns tempfile.tempdir as str.""" 339 same type. If they are bytes, the returned name will be bytes; str [all...] |
H A D | modulefinder.py | 128 def msg(self, level, str, *args): 132 print(str, end=' ') 338 self.msgout(2, "raise ImportError: " + str(exc), pathname) 369 self.msg(2, "ImportError:", str(msg)) 372 self.msg(2, "SyntaxError:", str(msg)) 384 self.msg(2, "ImportError:", str(msg))
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/compute/ |
H A D | vktComputeShaderBuiltinVarTests.cpp | 103 static inline std::ostream& operator<< (std::ostream& str, const LogComps& c) in operator <<() argument 106 return c.numComps == 3 ? str << c.v : str << c.v.x(); in operator <<() 209 programCollection.glslSources.add(name.str()) << glu::ComputeSource(genBuiltinVarSource(m_varName, m_varType, subCase.localSize(), m_readByComponent).c_str()); in initPrograms() 260 return src.str(); in genBuiltinVarSource() 474 ComputePipelineWrapper pipeline(m_vki, m_device, m_computePipelineConstructionType, m_context.getBinaryCollection().get(program_name.str())); in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/ |
H A D | vktRayTracingNonUniformArgsTests.cpp | 151 const auto descriptorsStr = descriptors.str(); in initPrograms() 207 programCollection.glslSources.add("rgen") << glu::RaygenSource(rgen.str()) << buildOptions; in initPrograms() 208 programCollection.glslSources.add("chit") << glu::ClosestHitSource(chit.str()) << buildOptions; in initPrograms() 209 programCollection.glslSources.add("miss") << glu::MissSource(miss.str()) << buildOptions; in initPrograms() 494 return tcu::TestStatus::fail(msg.str()); in iterate() 497 log << tcu::TestLog::Message << msg.str() << tcu::TestLog::EndMessage; in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shader_object/ |
H A D | vktShaderObjectCreateUtil.cpp | 205 programCollection.glslSources.add("vert") << glu::VertexSource(vert.str()); in addBasicShaderObjectShaders() 206 programCollection.glslSources.add("tesc") << glu::TessellationControlSource(tesc.str()); in addBasicShaderObjectShaders() 207 programCollection.glslSources.add("tese") << glu::TessellationEvaluationSource(tese.str()); in addBasicShaderObjectShaders() 208 programCollection.glslSources.add("geom") << glu::GeometrySource(geom.str()); in addBasicShaderObjectShaders() 209 programCollection.glslSources.add("frag") << glu::FragmentSource(frag.str()); in addBasicShaderObjectShaders() 210 programCollection.glslSources.add("comp") << glu::ComputeSource(comp.str()); in addBasicShaderObjectShaders()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sparse_resources/ |
H A D | vktSparseResourcesShaderIntrinsicsSampled.cpp | 170 programCollection.glslSources.add("vertex_shader") << glu::VertexSource(vs.str()); in initPrograms() 208 programCollection.glslSources.add("geometry_shader") << glu::GeometrySource(gs.str()); in initPrograms() 402 programCollection.spirvAsmSources.add("fragment_shader") << fs.str() in initPrograms() 418 return src.str(); in sparseImageOpString() 433 return src.str(); in sparseImageOpString() 502 return src.str(); in sparseImageOpString()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/ |
H A D | vktTessellationUtil.cpp | 464 std::ostringstream str; in getTessellationLevelsString() local 468 str << "inner: { }, " in getTessellationLevelsString() 473 str << "inner: { " << tessLevels.inner[0] << " }, " in getTessellationLevelsString() 478 str << "inner: { " << tessLevels.inner[0] << ", " << tessLevels.inner[1] << " }, " in getTessellationLevelsString() 486 return str.str(); in getTessellationLevelsString()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/compute/ |
H A D | vktComputeShaderBuiltinVarTests.cpp | 101 static inline std::ostream& operator<< (std::ostream& str, const LogComps& c) in operator <<() argument 104 return c.numComps == 3 ? str << c.v : str << c.v.x(); in operator <<() 199 programCollection.glslSources.add(name.str()) << glu::ComputeSource(genBuiltinVarSource(m_varName, m_varType, subCase.localSize(), m_readByComponent).c_str()); in initPrograms() 250 return src.str(); in genBuiltinVarSource() 462 const Unique<VkShaderModule> shaderModule(createShaderModule(m_vki, m_device, m_context.getBinaryCollection().get(program_name.str()), 0u)); in iterate()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/Symbolize/ |
H A D | Symbolize.cpp | 187 return ResourceName.str(); in getDarwinDWARFResourceForPath() 208 Result = DebugPath.str(); in findDebugBinary() 215 Result = DebugPath.str(); in findDebugBinary() 237 Result = DebugPath.str(); in findDebugBinary() 344 Result = Path.str(); in findDebugBinary() 352 Result = Path.str(); in findDebugBinary()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
H A D | COFFImportFile.cpp | 123 "' with '" + To + "' failed").str()), object_error::parse_failed); in replace() 126 return (Twine(S.substr(0, Pos)) + To + S.substr(Pos + From.size())).str(); in replace() 150 ImportDescriptorSymbolName(("__IMPORT_DESCRIPTOR_" + Library).str()), in ObjectFactory() 151 NullThunkSymbolName(("\x7f" + Library + "_NULL_THUNK_DATA").str()) {} in ObjectFactory() 562 writeStringTable(Buffer, {(Prefix + Sym).str(), in createWeakExternal() 563 (Prefix + Weak).str()}); in createWeakExternal()
|
/third_party/vk-gl-cts/external/openglcts/modules/common/subgroups/ |
H A D | glcSubgroupsVoteTests.cpp | 187 programCollection.add("vert") << glu::VertexSource(vertexSrc.str()); in initFrameBufferPrograms() 213 programCollection.add("geometry") << glu::GeometrySource(geometry.str()); in initFrameBufferPrograms() 240 programCollection.add("tesc") << glu::TessellationControlSource(controlSource.str()); in initFrameBufferPrograms() 266 programCollection.add("tese") << glu::TessellationEvaluationSource(evaluationSource.str()); in initFrameBufferPrograms() 325 programCollection.add("fragment") << glu::FragmentSource(fragmentSource.str()); in initFrameBufferPrograms() 397 programCollection.add("comp") << glu::ComputeSource(src.str()); in initPrograms()
|
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
H A D | validate_type.cpp | 309 bool ContainsOpaqueType(ValidationState_t& _, const Instruction* str) { in ContainsOpaqueType() argument 314 if (spvOpcodeIsBaseOpaqueType(str->opcode())) { in ContainsOpaqueType() 318 switch (str->opcode()) { in ContainsOpaqueType() 321 elem_type_id = str->GetOperandAs<uint32_t>(elem_type_index); in ContainsOpaqueType() 326 member_type_index < str->operands().size(); ++member_type_index) { in ContainsOpaqueType() 327 auto member_type_id = str->GetOperandAs<uint32_t>(member_type_index); in ContainsOpaqueType()
|
/third_party/openssl/crypto/x509/ |
H A D | v3_ncons.c | 77 # define ia5memchr(str, start, c) memchr(start, c, IA5_OFFSET_LEN(str, start)) 80 static char *ia5memrchr(ASN1_IA5STRING *str, int c) 84 for (i = str->length; i > 0 && str->data[i - 1] != c; i--); 89 return (char *)&str->data[i - 1];
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
H A D | validate_type.cpp | 309 bool ContainsOpaqueType(ValidationState_t& _, const Instruction* str) { in ContainsOpaqueType() argument 314 if (spvOpcodeIsBaseOpaqueType(str->opcode())) { in ContainsOpaqueType() 318 switch (str->opcode()) { in ContainsOpaqueType() 321 elem_type_id = str->GetOperandAs<uint32_t>(elem_type_index); in ContainsOpaqueType() 326 member_type_index < str->operands().size(); ++member_type_index) { in ContainsOpaqueType() 327 auto member_type_id = str->GetOperandAs<uint32_t>(member_type_index); in ContainsOpaqueType()
|
/third_party/python/Lib/lib2to3/ |
H A D | pytree.py | 103 assert self.parent is not None, str(self) 205 return str(self).encode("ascii") 248 return "".join(map(str, self.children)) 357 return self.prefix + str(self.value) 517 assert isinstance(content, str), repr(content) 567 assert not isinstance(content, str), repr(content)
|
/third_party/python/Lib/lib2to3/tests/ |
H A D | test_util.py | 25 self.assertEqual(str(node), string) 554 self.assertEqual(str(node), '"""foo"""\nimport foo\nbar()\n\n') 559 self.assertEqual(str(node), '"""foo"""\nimport bar\nimport foo\nbar()\n\n') 564 self.assertEqual(str(node), 'import foo\nbar()\n\n') 569 self.assertEqual(str(node), 'from html import escape\nbar()\n\n') 574 self.assertEqual(str(node), 'import cgi\nbar()\n\n')
|
/third_party/python/Lib/test/ |
H A D | test_dictviews.py | 77 self.assertIsInstance(repr(d), str) 79 self.assertIsInstance(r, str) 83 self.assertIsInstance(r, str) 87 self.assertIsInstance(r, str) 255 # want a str result, not an exception of any sort. 256 self.assertIsInstance(r, str) 260 self.assertIsInstance(r, str)
|
/third_party/python/Lib/xmlrpc/ |
H A D | server.py | 514 self.send_header("X-exception", str(e)) 516 trace = str(trace.encode('ASCII', 'backslashreplace'), 'ASCII') 533 self.send_header("Content-length", str(len(response))) 559 self.send_header("Content-length", str(len(response))) 760 argspec = str(signature(object)) 935 self.send_header("Content-length", str(len(response)))
|