Home
last modified time | relevance | path

Searched refs:output_streams (Results 1 – 7 of 7) sorted by relevance

/external/libchrome/mojo/public/cpp/bindings/tests/
Dsample_service_unittest.cc56 std::vector<mojo::ScopedDataPipeProducerHandle> output_streams(2); in MakeFoo() local
67 output_streams[i] = std::move(producer); in MakeFoo()
82 std::move(output_streams), std::move(array_of_array_of_bools), in MakeFoo()
126 EXPECT_TRUE(foo.output_streams); in CheckFoo()
127 EXPECT_EQ(2u, foo.output_streams->size()); in CheckFoo()
223 Print(depth, "output_streams", foo->output_streams); in Print()
/external/sonivox/jet_tools/JetCreator/
Deas.py578 self.output_streams = []
626 output_streams = self.output_streams
627 for s in output_streams:
723 self.output_streams.append(stream)
734 self.output_streams.remove(stream)
800 for s in self.output_streams:
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_shader_nir.c362 info->output_streams[i] |= streamx; in si_nir_scan_shader()
366 info->output_streams[i] |= streamy << 2; in si_nir_scan_shader()
370 info->output_streams[i] |= streamz << 4; in si_nir_scan_shader()
374 info->output_streams[i] |= streamw << 6; in si_nir_scan_shader()
Dsi_shader.c3670 (info->output_streams[i] >> (2 * j)) & 3; in si_llvm_emit_vs_epilogue()
4344 ((info->output_streams[i] >> (2 * chan)) & 3) != stream) in si_llvm_emit_vertex()
5696 (gsinfo->output_streams[i] >> (2 * chan)) & 3; in si_generate_gs_copy_shader()
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_scan.h58 ubyte output_streams[PIPE_MAX_SHADER_OUTPUTS]; member
Dtgsi_scan.c692 info->output_streams[reg] |= (ubyte)fulldecl->Semantic.StreamX; in scan_declaration()
696 info->output_streams[reg] |= (ubyte)fulldecl->Semantic.StreamY << 2; in scan_declaration()
700 info->output_streams[reg] |= (ubyte)fulldecl->Semantic.StreamZ << 4; in scan_declaration()
704 info->output_streams[reg] |= (ubyte)fulldecl->Semantic.StreamW << 6; in scan_declaration()
/external/libchrome/mojo/public/interfaces/bindings/tests/
Dsample_service.mojom40 array<handle<data_pipe_producer>>? output_streams@11;