/third_party/mesa3d/src/gallium/drivers/r600/sfn/tests/ |
H A D | sfn_optimizer_test.cpp | 22 auto sh = from_string(red_triangle_fs_expect_from_nir); in TEST_F() 31 auto sh = from_string(add_add_1_expect_from_nir); in TEST_F() 38 auto sh = from_string(add_add_1_expect_from_nir); in TEST_F() 46 auto sh = from_string(add_add_1_expect_from_nir_copy_prop_fwd_dce); in TEST_F() 55 auto sh = from_string(basic_interpolation_orig); in TEST_F() 72 auto sh = from_string(shader_group_chan_pin_to_combine); in TEST_F() 90 auto sh = from_string(vs_nexted_loop_from_nir_expect); in TEST_F() 98 auto sh = from_string(shader_with_dest_array); in TEST_F() 107 auto sh = from_string(shader_with_dest_array_opt_expect); in TEST_F() 113 auto sh = from_string(shader_with_dest_array in TEST_F() [all...] |
H A D | sfn_value_test.cpp | 227 auto fs = Register::from_string("R1000.x"); in TEST_F() 230 EXPECT_EQ(*Register::from_string("R1001.y"), Register(1001, 1, pin_none)); in TEST_F() 231 EXPECT_EQ(*Register::from_string("R1.z@fully"), Register(1, 2, pin_fully)); in TEST_F() 232 EXPECT_EQ(*Register::from_string("R1000.y@chan"), Register(1000, 1, pin_chan)); in TEST_F() 233 EXPECT_EQ(*Register::from_string("R1000.y@free"), Register(1000, 1, pin_free)); in TEST_F() 236 EXPECT_EQ(*VirtualValue::from_string("L[0x1]"), LiteralConstant(1)); in TEST_F() 237 EXPECT_EQ(*VirtualValue::from_string("L[0x2]"), LiteralConstant(2)); in TEST_F() 238 EXPECT_EQ(*VirtualValue::from_string("L[0xA]"), LiteralConstant(10)); in TEST_F() 240 EXPECT_EQ(*VirtualValue::from_string("I[0]"), InlineConstant(ALU_SRC_0)); in TEST_F() 241 EXPECT_EQ(*VirtualValue::from_string(" in TEST_F() [all...] |
H A D | sfn_shaderfromstring_test.cpp | 31 std::vector<PInst> from_string(const std::string& s); 56 auto shader = from_string(init_str); in TEST_F() 96 std::vector<PInst> TestShaderFromString::from_string(const std::string& s) in from_string() function in TestShaderFromString 109 shader.push_back(m_instr_factory->from_string(line, 0)); in from_string()
|
H A D | sfn_instrfromstring_test.cpp | 25 PInst from_string(const std::string& s); 469 auto instr = from_string(init); in TEST_F() 694 PInst TestInstrFromString::from_string(const std::string& s) in from_string() function in r600::TestInstrFromString 696 return m_instr_factory.from_string(s, 0); in from_string() 706 auto instr = from_string(init); in check()
|
H A D | sfn_test_shaders.h | 108 Shader *from_string(const std::string& s);
|
H A D | sfn_test_shaders.cpp | 3061 Shader *TestShader::from_string(const std::string& s) in from_string() function in r600::TestShader
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_instrfactory.cpp | 57 PInst InstrFactory::from_string(const std::string& s, int nesting_depth) in from_string() function in r600::InstrFactory 77 result = AluInstr::from_string(is, m_value_factory, group); in from_string() 79 result = TexInstr::from_string(is, m_value_factory); in from_string() 81 result = ExportInstr::from_string(is, m_value_factory); in from_string() 85 result = FetchInstr::from_string(is, m_value_factory); in from_string() 87 result = QueryBufferSizeInstr::from_string(is, m_value_factory); in from_string() 89 result = LoadFromBuffer::from_string(is, m_value_factory); in from_string() 91 result = LoadFromScratch::from_string(is, m_value_factory); in from_string() 93 result = IfInstr::from_string(is, m_value_factory); in from_string() 95 result = ScratchIOInstr::from_string(i in from_string() [all...] |
H A D | sfn_instr_export.h | 79 static Instr::Pointer from_string(std::istream& is, ValueFactory &vf); 113 static auto from_string(std::istream& is, ValueFactory &vf) -> Pointer; 187 static auto from_string(std::istream& is, ValueFactory &vf) -> Pointer; 212 static auto from_string(std::istream& is, bool cut) -> Pointer; 231 static auto from_string(std::istream& is, ValueFactory &vf) -> Pointer;
|
H A D | sfn_instr_fetch.h | 103 static Instr::Pointer from_string(std::istream& is, ValueFactory &vf); 160 static Instr::Pointer from_string(std::istream& is, ValueFactory& vf); 168 static Instr::Pointer from_string(std::istream& is, ValueFactory& vf); 174 static Instr::Pointer from_string(std::istream& is, ValueFactory& vf);
|
H A D | sfn_instr_controlflow.cpp | 75 Instr::Pointer ControlFlowInstr::from_string(std::string type_str) in from_string() function in r600::ControlFlowInstr 174 Instr::Pointer IfInstr::from_string(std::istream &is, ValueFactory& value_factory) in from_string() function in r600::IfInstr 198 auto pred = AluInstr::from_string(bufstr, value_factory, nullptr); in from_string()
|
H A D | sfn_virtualvalues.cpp | 120 VirtualValue::Pointer VirtualValue::from_string(const std::string& s) 124 case 'R': return Register::from_string(s); 125 case 'L': return LiteralConstant::from_string(s); 126 case 'K': return UniformValue::from_string(s); 128 case 'I': return InlineConstant::from_string(s); 266 Register::Pointer Register::from_string(const std::string &s) 502 LiteralConstant::Pointer LiteralConstant::from_string(const std::string& s) 563 InlineConstant::Pointer InlineConstant::from_string(const std::string& s) 697 UniformValue::Pointer UniformValue::from_string(const std::string& s)
|
H A D | sfn_instr_controlflow.h | 61 static Instr::Pointer from_string(std::string type_str); 91 static Instr::Pointer from_string(std::istream &is, ValueFactory& value_factory);
|
H A D | sfn_virtualvalues.h | 102 static Pointer from_string(const std::string& s); 157 static Pointer from_string(const std::string& s); 221 static Pointer from_string(const std::string& s); 315 static Pointer from_string(const std::string& s); 340 static Pointer from_string(const std::string& s);
|
H A D | sfn_instr_export.cpp | 114 Instr::Pointer ExportInstr::from_string(std::istream& is, ValueFactory& vf) in from_string() function in r600::ExportInstr 246 auto ScratchIOInstr::from_string(std::istream& is, ValueFactory &vf) -> Pointer 458 auto MemRingOutInstr::from_string(std::istream& is, ValueFactory &vf) -> Pointer 531 auto EmitVertexInstr::from_string(std::istream& is, bool cut) -> Pointer 558 auto WriteTFInstr::from_string(std::istream& is, ValueFactory &vf) -> Pointer
|
H A D | sfn_instr_lds.h | 53 static auto from_string(std::istream& is, ValueFactory& value_factory) -> Pointer; 91 static auto from_string(std::istream& is, ValueFactory& value_factory) -> Pointer;
|
H A D | sfn_instrfactory.h | 43 PInst from_string(const std::string &s, int nesting_depth);
|
H A D | sfn_instr_fetch.cpp | 268 Instr::Pointer FetchInstr::from_string(std::istream& is, ValueFactory& vf) in from_string() function in r600::FetchInstr 526 Instr::Pointer QueryBufferSizeInstr::from_string(std::istream& is, ValueFactory& vf) in from_string() function in r600::QueryBufferSizeInstr 558 Instr::Pointer LoadFromBuffer::from_string(std::istream& is, ValueFactory& vf) in from_string() function in r600::LoadFromBuffer 660 Instr::Pointer LoadFromScratch::from_string(std::istream& is, ValueFactory &vf) in from_string() function in r600::LoadFromScratch
|
H A D | sfn_instr_lds.cpp | 185 auto LDSReadInstr::from_string(istream& is, ValueFactory& value_factory) -> Pointer 385 auto LDSAtomicInstr::from_string(istream& is, ValueFactory& value_factory) -> Pointer
|
H A D | sfn_instr_mem.h | 60 static auto from_string(std::istream& is, ValueFactory& value_factory) -> Pointer;
|
/third_party/rust/crates/clap/src/builder/ |
H A D | str.rs | 12 pub(crate) fn from_string(name: std::string::String) -> Self { 14 name: Inner::from_string(name), 50 Self::from_string(name) in from() 229 pub(crate) fn from_string(name: std::string::String) -> Self {
|
H A D | os_str.rs | 14 pub(crate) fn from_string(name: std::ffi::OsString) -> Self { 16 name: Inner::from_string(name), 86 Self::from_string(name) in from() 100 Self::from_string(name.into()) in from() 258 pub(crate) fn from_string(name: std::ffi::OsString) -> Self {
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | conventions.py | 40 def from_string(cls, s): member in ProseListFormats 146 fmt = ProseListFormats.from_string(fmt)
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
H A D | conventions.py | 50 def from_string(cls, s): member in ProseListFormats 218 fmt = ProseListFormats.from_string(fmt)
|
/third_party/vulkan-headers/registry/spec_tools/ |
H A D | conventions.py | 50 def from_string(cls, s): member in ProseListFormats 218 fmt = ProseListFormats.from_string(fmt)
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | environment.py | 681 template = self.from_string(nodes.Template(body, lineno=1)) 935 def from_string(self, source, globals=None, template_class=None): member in Environment 1031 return env.from_string(source, template_class=cls)
|