/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
H A D | tgsi_ureg.c | 29 #include "pipe/p_screen.h" 30 #include "pipe/p_context.h" 31 #include "pipe/p_state.h" 2172 struct pipe_context *pipe, in ureg_create_shader() 2186 return pipe->create_vs_state(pipe, &state); in ureg_create_shader() 2188 return pipe->create_tcs_state(pipe, &state); in ureg_create_shader() 2190 return pipe->create_tes_state(pipe, in ureg_create_shader() 2171 ureg_create_shader( struct ureg_program *ureg, struct pipe_context *pipe, const struct pipe_stream_output_info *so ) ureg_create_shader() argument [all...] |
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_unix_events.py | 660 self.pipe = mock.Mock(spec_set=io.RawIOBase) 661 self.pipe.fileno.return_value = 5 675 transport = unix_events._UnixReadPipeTransport(self.loop, self.pipe, 734 'Fatal read error on pipe transport' 786 self.pipe.close.assert_called_with() 799 self.pipe.close.assert_called_with() 826 # the pipe is not paused 837 self.pipe = mock.Mock(spec_set=io.RawIOBase) 838 self.pipe.fileno.return_value = 5 852 transport = unix_events._UnixWritePipeTransport(self.loop, self.pipe, [all...] |
/third_party/mesa3d/src/gallium/frontends/vdpau/ |
H A D | decode.c | 49 struct pipe_context *pipe; in vlVdpDecoderCreate() local 72 pipe = dev->context; in vlVdpDecoderCreate() 121 vldecoder->decoder = pipe->create_video_codec(pipe, &templat); in vlVdpDecoderCreate()
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_resource_buffer_upload.c | 28 #include "pipe/p_state.h" 29 #include "pipe/p_defines.h" 74 struct svga_screen *svgascreen = svga_screen(svga->pipe.screen); in svga_winsys_buffer_create() 282 ret = svga_buffer_create_host_surface(svga_screen(svga->pipe.screen), in svga_buffer_recreate_host_surface() 994 struct pipe_screen *screen = svga->pipe.screen; in svga_buffer_upload_ranges() 1052 struct pipe_screen *screen = svga->pipe.screen; in svga_buffer_handle()
|
/third_party/mesa3d/src/mesa/main/ |
H A D | transformfeedback.c | 424 struct pipe_context *pipe = ctx->pipe; in begin_transform_feedback() local 447 pipe->create_stream_output_target(pipe, bo->buffer, in begin_transform_feedback()
|
H A D | version.c | 692 struct pipe_screen *screen = ctx->pipe->screen; in _mesa_get_driver_uuid() 701 struct pipe_screen *screen = ctx->pipe->screen; in _mesa_get_device_uuid() 710 struct pipe_screen *screen = ctx->pipe->screen; in _mesa_get_device_luid()
|
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_screen.c | 100 if (screen->pipe) in etna_screen_destroy() 101 etna_pipe_del(screen->pipe); in etna_screen_destroy() 618 /* don't advertise split tiled formats on single pipe/buffer GPUs */ in modifier_num_supported() 1001 screen->pipe = etna_pipe_new(gpu, ETNA_PIPE_3D); in etna_screen_create() 1002 if (!screen->pipe) { in etna_screen_create() 1003 DBG("could not create 3d pipe"); in etna_screen_create()
|
/third_party/mesa3d/src/gallium/frontends/va/ |
H A D | picture.c | 29 #include "pipe/p_video_codec.h" 89 if (drv->pipe->screen->get_video_param(drv->pipe->screen, in vlVaBeginPicture() 170 context->decoder = drv->pipe->create_video_codec(drv->pipe, in handlePictureParameterBuffer()
|
/third_party/toybox/toys/pending/ |
H A D | sh.c | 330 // If fd2 < 0 it's a here document (parent process writes to a pipe later). in run_command() 397 // fd<0 means HERE document. Canned input stored earlier, becomes pipe later in run_command() 494 int pipe[2]; in run_command() local 496 pipe[0] = 0; in run_command() 497 pipe[1] = 1; in run_command() 498 // TODO: redirect and pipe in run_command() 500 if (-1 == (pp->pid = xpopen_both(pp->arg.v, pipe))) in run_command()
|
/third_party/node/lib/ |
H A D | child_process.js | 166 options.silent ? 'pipe' : 'inherit', 849 options.stdio = getValidStdio(options.stdio || 'pipe', true).stdio; 860 const pipe = options.stdio[i] = { ...options.stdio[i] }; 862 pipe.input = input; 864 pipe.input = Buffer.from(input, options.encoding);
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a6xx/ |
H A D | fd6_gmem.c | 30 #include "pipe/p_state.h" 450 const struct fd_vsc_pipe *pipe = &gmem->vsc_pipe[i]; in update_vsc_pipe() local 451 OUT_RING(ring, A6XX_VSC_PIPE_CONFIG_REG_X(pipe->x) | in update_vsc_pipe() 452 A6XX_VSC_PIPE_CONFIG_REG_Y(pipe->y) | in update_vsc_pipe() 453 A6XX_VSC_PIPE_CONFIG_REG_W(pipe->w) | in update_vsc_pipe() 454 A6XX_VSC_PIPE_CONFIG_REG_H(pipe->h)); in update_vsc_pipe() 925 const struct fd_vsc_pipe *pipe = &gmem->vsc_pipe[tile->p]; in fd6_emit_tile_prep() local 933 OUT_RING(ring, CP_SET_BIN_DATA5_0_VSC_SIZE(pipe->w * pipe->h) | in fd6_emit_tile_prep() 935 OUT_RELOC(ring, fd6_ctx->vsc_draw_strm, /* per-pipe dra in fd6_emit_tile_prep() [all...] |
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
H A D | nvc0_query_hw_sm.c | 2538 struct pipe_context *pipe = &nvc0->base.pipe; in nvc0_hw_sm_end_query() local 2584 pipe->bind_compute_state(pipe, screen->pm.prog); in nvc0_hw_sm_end_query() 2591 pipe->launch_grid(pipe, &info); in nvc0_hw_sm_end_query() 2592 pipe->bind_compute_state(pipe, old); in nvc0_hw_sm_end_query()
|
/third_party/python/Lib/asyncio/ |
H A D | base_events.py | 81 return '<pipe>' 488 def _make_read_pipe_transport(self, pipe, protocol, waiter=None, 490 """Create read pipe transport.""" 493 def _make_write_pipe_transport(self, pipe, protocol, waiter=None, 495 """Create write pipe transport.""" 505 """Write a byte to self-pipe, to wake up the event loop. 509 The subclass is responsible for implementing the self-pipe. 1586 async def connect_read_pipe(self, protocol_factory, pipe): 1589 transport = self._make_read_pipe_transport(pipe, protocol, waiter) 1598 logger.debug('Read pipe [all...] |
/device/board/hisilicon/hispark_taurus/uboot/secureboot_release/ddr_init/drv/cmd_bin/ |
H A D | Makefile | 40 CFLAGS := -Os -pipe \
|
/device/soc/rockchip/common/hardware/display/src/display_device/ |
H A D | drm_device.h | 68 std::vector<std::shared_ptr<DrmPlane>> GetDrmPlane(uint32_t pipe, uint32_t type);
|
H A D | hdi_display.h | 34 VsyncCallBack(VBlankCallback cb, void *data, uint32_t pipe);
|
/device/soc/rockchip/rk3399/hardware/display/src/display_device/ |
H A D | drm_device.h | 65 std::vector<std::shared_ptr<DrmPlane>> GetDrmPlane(uint32_t pipe, uint32_t type);
|
H A D | hdi_display.h | 34 VsyncCallBack(VBlankCallback cb, void *data, uint32_t pipe);
|
/device/soc/rockchip/rk3566/hardware/display/src/display_device/ |
H A D | drm_device.h | 65 std::vector<std::shared_ptr<DrmPlane>> GetDrmPlane(uint32_t pipe, uint32_t type);
|
H A D | hdi_display.h | 34 VsyncCallBack(VBlankCallback cb, void *data, uint32_t pipe);
|
/device/soc/rockchip/rk3568/hardware/display/src/display_device/ |
H A D | drm_device.h | 65 std::vector<std::shared_ptr<DrmPlane>> GetDrmPlane(uint32_t pipe, uint32_t type);
|
H A D | hdi_display.h | 34 VsyncCallBack(VBlankCallback cb, void *data, uint32_t pipe);
|
/device/soc/rockchip/rk3588/hardware/display/src/display_device/ |
H A D | drm_device.h | 65 std::vector<std::shared_ptr<DrmPlane>> GetDrmPlane(uint32_t pipe, uint32_t type);
|
H A D | hdi_display.h | 34 VsyncCallBack(VBlankCallback cb, void *data, uint32_t pipe);
|
/third_party/backends/backend/ |
H A D | coolscan.h | 125 int pipe; member
|