Home
last modified time | relevance | path

Searched refs:sstr (Results 1 – 15 of 15) sorted by relevance

/external/deqp-deps/SPIRV-Tools/test/val/
Dval_modes_test.cpp465 std::ostringstream sstr; in TEST_P() local
466 sstr << "OpCapability Geometry\n"; in TEST_P()
467 sstr << "OpMemoryModel Logical GLSL450\n"; in TEST_P()
468 sstr << "OpEntryPoint Geometry %main \"main\"\n"; in TEST_P()
473 sstr << "OpExecutionMode %main " << input << "\n"; in TEST_P()
480 sstr << "OpExecutionMode %main " << output << "\n"; in TEST_P()
483 sstr << "%void = OpTypeVoid\n"; in TEST_P()
484 sstr << "%void_fn = OpTypeFunction %void\n"; in TEST_P()
485 sstr << "%int = OpTypeInt 32 0\n"; in TEST_P()
486 sstr << "%int1 = OpConstant %int 1\n"; in TEST_P()
[all …]
Dval_non_uniform_test.cpp130 std::ostringstream sstr; in TEST_P() local
131 sstr << "%result = " << opcode << " "; in TEST_P()
132 sstr << type << " "; in TEST_P()
133 sstr << ConvertScope(execution_scope) << " "; in TEST_P()
134 sstr << args << "\n"; in TEST_P()
136 CompileSuccessfully(GenerateShaderCode(sstr.str()), SPV_ENV_VULKAN_1_1); in TEST_P()
161 std::ostringstream sstr; in TEST_P() local
162 sstr << "%result = " << opcode << " "; in TEST_P()
163 sstr << type << " "; in TEST_P()
164 sstr << ConvertScope(execution_scope) << " "; in TEST_P()
[all …]
/external/swiftshader/third_party/SPIRV-Tools/test/val/
Dval_modes_test.cpp465 std::ostringstream sstr; in TEST_P() local
466 sstr << "OpCapability Geometry\n"; in TEST_P()
467 sstr << "OpMemoryModel Logical GLSL450\n"; in TEST_P()
468 sstr << "OpEntryPoint Geometry %main \"main\"\n"; in TEST_P()
473 sstr << "OpExecutionMode %main " << input << "\n"; in TEST_P()
480 sstr << "OpExecutionMode %main " << output << "\n"; in TEST_P()
483 sstr << "%void = OpTypeVoid\n"; in TEST_P()
484 sstr << "%void_fn = OpTypeFunction %void\n"; in TEST_P()
485 sstr << "%int = OpTypeInt 32 0\n"; in TEST_P()
486 sstr << "%int1 = OpConstant %int 1\n"; in TEST_P()
[all …]
Dval_non_uniform_test.cpp130 std::ostringstream sstr; in TEST_P() local
131 sstr << "%result = " << opcode << " "; in TEST_P()
132 sstr << type << " "; in TEST_P()
133 sstr << ConvertScope(execution_scope) << " "; in TEST_P()
134 sstr << args << "\n"; in TEST_P()
136 CompileSuccessfully(GenerateShaderCode(sstr.str()), SPV_ENV_VULKAN_1_1); in TEST_P()
161 std::ostringstream sstr; in TEST_P() local
162 sstr << "%result = " << opcode << " "; in TEST_P()
163 sstr << type << " "; in TEST_P()
164 sstr << ConvertScope(execution_scope) << " "; in TEST_P()
[all …]
/external/antlr/runtime/Cpp/tests/
Dt051.cpp95 stringstream sstr; in slurp() local
96 sstr << ifs.rdbuf(); in slurp()
97 return sstr.str(); in slurp()
Dt012.cpp184 stringstream sstr; in slurp() local
185 sstr << ifs.rdbuf(); in slurp()
186 return sstr.str(); in slurp()
/external/eigen/Eigen/src/Core/
DIO.h173 std::stringstream sstr; in print_matrix() local
174 sstr.copyfmt(s); in print_matrix()
175 sstr << m.coeff(i,j); in print_matrix()
176 width = std::max<Index>(width, Index(sstr.str().length())); in print_matrix()
/external/catch2/include/internal/
Dcatch_output_redirect.cpp103 std::stringstream sstr; in getContents() local
107 sstr << buffer; in getContents()
109 return sstr.str(); in getContents()
/external/webrtc/webrtc/base/
Dlinux.cc242 std::ostringstream sstr; in ReadLinuxUname() local
243 sstr << buf.sysname << " " in ReadLinuxUname()
247 return sstr.str(); in ReadLinuxUname()
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DFormatVariadic.h128 template <unsigned N> SmallString<N> sstr() const { in sstr() function
135 template <unsigned N> operator SmallString<N>() const { return sstr<N>(); }
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DFormatVariadic.h137 template <unsigned N> SmallString<N> sstr() const { in sstr() function
144 template <unsigned N> operator SmallString<N>() const { return sstr<N>(); }
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
DRecordName.cpp138 Name = formatv("{0} {1}", Ret, Params).sstr<256>(); in visitKnownRecord()
147 Name = formatv("{0} {1}::{2}", Ret, Class, Params).sstr<256>(); in visitKnownRecord()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DWindowsResource.cpp564 auto RelocationName = formatv("$R{0:X-6}", i & 0xffffff).sstr<COFF::NameSize>(); in writeSymbolTable()
/external/catch2/single_include/catch2/
Dcatch.hpp9852 std::stringstream sstr; in getContents() local
9856 sstr << buffer; in getContents()
9858 return sstr.str(); in getContents()
/external/python/cpython3/Objects/
Dunicodeobject.c10414 anylib_count(int kind, PyObject *sstr, void* sbuf, Py_ssize_t slen, in anylib_count() argument
10419 if (PyUnicode_IS_ASCII(sstr) && PyUnicode_IS_ASCII(str1)) in anylib_count()