Home
last modified time | relevance | path

Searched refs:pipe (Results 376 - 400 of 1113) sorted by relevance

1...<<11121314151617181920>>...45

/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
H A Dnv50_vbo.c23 #include "pipe/p_context.h"
24 #include "pipe/p_state.h"
38 nv50_vertex_state_delete(struct pipe_context *pipe, in nv50_vertex_state_delete() argument
49 nv50_vertex_state_create(struct pipe_context *pipe, in nv50_vertex_state_create() argument
80 so->element[i].pipe = elements[i]; in nv50_vertex_state_create()
96 util_debug_message(&nouveau_context(pipe)->debug, FALLBACK, in nv50_vertex_state_create()
241 struct pipe_vertex_element *ve = &nv50->vertex->element[i].pipe; in nv50_update_user_vbufs()
337 const unsigned b = vertex->element[i].pipe.vertex_buffer_index; in nv50_vertex_arrays_validate()
367 const unsigned b = vertex->element[i].pipe.vertex_buffer_index; in nv50_vertex_arrays_validate()
376 nv50_emit_vtxattr(nv50, vb, &ve->pipe, in nv50_vertex_arrays_validate()
760 nv50_draw_vbo(struct pipe_context *pipe, const struct pipe_draw_info *info, unsigned drawid_offset, const struct pipe_draw_indirect_info *indirect, const struct pipe_draw_start_count_bias *draws, unsigned num_draws) nv50_draw_vbo() argument
[all...]
H A Dnv50_query_hw_sm.c218 struct pipe_context *pipe = &nv50->base.pipe; in nv50_hw_sm_end_query() local
264 pipe->bind_compute_state(pipe, screen->pm.prog); in nv50_hw_sm_end_query()
274 pipe->launch_grid(pipe, &info); in nv50_hw_sm_end_query()
275 pipe->bind_compute_state(pipe, old); in nv50_hw_sm_end_query()
H A Dnv50_query.h4 #include "pipe/p_context.h"
26 nv50_query(struct pipe_query *pipe) in nv50_query() argument
28 return (struct nv50_query *)pipe; in nv50_query()
/third_party/node/benchmark/net/
H A Dnet-wrap-js-stream-passthrough.js1 // Test the speed of .pipe() with JSStream wrapping for PassThrough streams
45 reader.pipe(fakeSocket);
46 fakeSocket.pipe(writer);
93 Reader.prototype.pipe = function(dest) {
H A Dnet-c2s.js1 // Test the speed of .pipe() with sockets
41 socket.pipe(writer);
49 reader.pipe(socket);
98 Reader.prototype.pipe = function(dest) {
/third_party/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_context.h4 #include "pipe/p_context.h"
5 #include "pipe/p_state.h"
13 struct pipe_context pipe; member
60 nouveau_context(struct pipe_context *pipe) in nouveau_context() argument
62 return (struct nouveau_context *)pipe; in nouveau_context()
/third_party/typescript/tests/baselines/reference/
H A DnonInferrableTypePropagation2.js28 declare function pipe<A, B>(a: A, ab: (a: A) => B): B;
32 const x = pipe(es, filter(exists((n) => n > 0)))
38 var x = pipe(es, filter(exists(function (n) { return n > 0; })));
/third_party/mesa3d/src/gallium/frontends/va/
H A Dsubpicture.c219 if (!drv->pipe->screen->is_format_supported( in vlVaAssociateSubpicture()
220 drv->pipe->screen, tex_temp.format, tex_temp.target, in vlVaAssociateSubpicture()
226 tex = drv->pipe->screen->resource_create(drv->pipe->screen, &tex_temp); in vlVaAssociateSubpicture()
230 sub->sampler = drv->pipe->create_sampler_view(drv->pipe, tex, &sampler_templ); in vlVaAssociateSubpicture()
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_shader_buffer.c26 #include "pipe/p_defines.h"
86 svga_set_shader_buffers(struct pipe_context *pipe, in svga_set_shader_buffers() argument
92 struct svga_context *svga = svga_context(pipe); in svga_set_shader_buffers()
169 svga_set_hw_atomic_buffers(struct pipe_context *pipe, in svga_set_hw_atomic_buffers() argument
173 struct svga_context *svga = svga_context(pipe); in svga_set_hw_atomic_buffers()
253 svga->pipe.set_shader_buffers = svga_set_shader_buffers; in svga_init_shader_buffer_functions()
254 svga->pipe.set_hw_atomic_buffers = svga_set_hw_atomic_buffers; in svga_init_shader_buffer_functions()
/third_party/mesa3d/src/mesa/main/
H A Dcompute.c30 #include "pipe/p_state.h"
335 ctx->pipe->launch_grid(ctx->pipe, &info); in dispatch_compute()
380 ctx->pipe->launch_grid(ctx->pipe, &info); in dispatch_compute_indirect()
430 ctx->pipe->launch_grid(ctx->pipe, &info); in dispatch_compute_group_size()
/third_party/rust/crates/io-lifetimes/src/
H A Dimpls_mio.rs377 impl AsFd for mio::unix::pipe::Receiver {
385 impl IntoFd for mio::unix::pipe::Receiver {
393 impl From<mio::unix::pipe::Receiver> for OwnedFd {
395 fn from(owned: mio::unix::pipe::Receiver) -> Self { in from()
401 impl FromFd for mio::unix::pipe::Receiver {
409 impl From<OwnedFd> for mio::unix::pipe::Receiver {
417 impl AsFd for mio::unix::pipe::Sender {
425 impl IntoFd for mio::unix::pipe::Sender {
433 impl From<mio::unix::pipe::Sender> for OwnedFd {
435 fn from(owned: mio::unix::pipe
[all...]
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_draw_arrays.c34 #include "pipe/p_defines.h"
35 #include "pipe/p_context.h"
54 llvmpipe_draw_vbo(struct pipe_context *pipe, const struct pipe_draw_info *info, in llvmpipe_draw_vbo() argument
63 struct llvmpipe_context *lp = llvmpipe_context(pipe); in llvmpipe_draw_vbo()
72 util_draw_indirect(pipe, info, indirect); in llvmpipe_draw_vbo()
193 llvmpipe->pipe.draw_vbo = llvmpipe_draw_vbo; in llvmpipe_init_draw_funcs()
H A Dlp_clear.c35 #include "pipe/p_defines.h"
49 llvmpipe_clear(struct pipe_context *pipe, in llvmpipe_clear() argument
56 struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe); in llvmpipe_clear()
/third_party/python/Lib/asyncio/
H A Dwindows_utils.py17 __all__ = 'pipe', 'Popen', 'PIPE', 'PipeHandle'
29 # Replacement for os.pipe() using handles instead of fds
32 def pipe(*, duplex=False, overlapped=(True, True), bufsize=BUFSIZE): function
33 """Like os.pipe() but with overlapped support and using handles not fds."""
35 prefix=r'\\.\pipe\python-pipe-{:d}-{:d}-'.format(
78 # Wrapper for a pipe handle
82 """Wrapper for an overlapped pipe handle which is vaguely file-object like.
102 raise ValueError("I/O operation on closed pipe")
122 # Replacement for subprocess.Popen using overlapped pipe handle
[all...]
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/
H A Dnv30_miptree.c143 nv30_resource_copy_region(struct pipe_context *pipe, in nv30_resource_copy_region() argument
149 struct nv30_context *nv30 = nv30_context(pipe); in nv30_resource_copy_region()
218 nv30_blit(struct pipe_context *pipe, in nv30_blit() argument
221 struct nv30_context *nv30 = nv30_context(pipe); in nv30_blit()
232 if (util_try_blit_via_copy_region(pipe, &info, nv30->render_cond_query != NULL)) { in nv30_blit()
274 nv30_flush_resource(struct pipe_context *pipe, in nv30_flush_resource() argument
280 nv30_miptree_transfer_map(struct pipe_context *pipe, struct pipe_resource *pt, in nv30_miptree_transfer_map() argument
285 struct nv30_context *nv30 = nv30_context(pipe); in nv30_miptree_transfer_map()
374 nv30_miptree_transfer_unmap(struct pipe_context *pipe, in nv30_miptree_transfer_unmap() argument
377 struct nv30_context *nv30 = nv30_context(pipe); in nv30_miptree_transfer_unmap()
544 nv30_miptree_surface_new(struct pipe_context *pipe, struct pipe_resource *pt, const struct pipe_surface *tmpl) nv30_miptree_surface_new() argument
582 nv30_miptree_surface_del(struct pipe_context *pipe, struct pipe_surface *ps) nv30_miptree_surface_del() argument
[all...]
/third_party/mesa3d/src/gallium/auxiliary/driver_ddebug/
H A Ddd_screen.c177 struct pipe_context *pipe = _pipe ? dd_context(_pipe)->pipe : NULL; in dd_screen_flush_frontbuffer() local
179 screen->flush_frontbuffer(screen, pipe, resource, level, layer, context_private, in dd_screen_flush_frontbuffer()
311 struct pipe_context *pipe = _pipe ? dd_context(_pipe)->pipe : NULL; in dd_screen_resource_get_handle() local
313 return screen->resource_get_handle(screen, pipe, resource, handle, usage); in dd_screen_resource_get_handle()
328 struct pipe_context *pipe = _pipe ? dd_context(_pipe)->pipe : NULL; in dd_screen_resource_get_param() local
330 return screen->resource_get_param(screen, pipe, resource, plane, layer, in dd_screen_resource_get_param()
390 struct pipe_context *ctx = _ctx ? dd_context(_ctx)->pipe in dd_screen_fence_finish()
[all...]
/third_party/libuv/test/
H A Dtest-ping-pong.c48 uv_pipe_t pipe; member
290 r = uv_pipe_init(uv_default_loop(), &pinger->stream.pipe, 0); in pipe_pinger_new()
291 pinger->stream.pipe.data = pinger; in pipe_pinger_new()
296 uv_pipe_connect(&pinger->connect_req, &pinger->stream.pipe, TEST_PIPENAME, in pipe_pinger_new()
326 pinger->stream.pipe.data = pinger; in socketpair_pinger_new()
351 /* Try to make a pipe and do NUM_PINGS pings. */ in pipe2_pinger_new()
367 ASSERT_OK(uv_pipe_init(uv_default_loop(), &pinger->stream.pipe, 0)); in pipe2_pinger_new()
368 ASSERT_OK(uv_pipe_open(&pinger->stream.pipe, fds[1])); in pipe2_pinger_new()
369 pinger->stream.pipe.data = pinger; /* record for close_cb */ in pipe2_pinger_new()
/third_party/mesa3d/src/gallium/frontends/xa/
H A Dxa_composite.c453 struct pipe_context *pipe = ctx->pipe; in bind_samplers() local
477 src_view = pipe->create_sampler_view(pipe, src_pic->srf->tex, in bind_samplers()
499 src_view = pipe->create_sampler_view(pipe, mask_pic->srf->tex, in bind_samplers()
507 pipe->set_sampler_views(pipe, PIPE_SHADER_FRAGMENT, 0, num_samplers, 0, in bind_samplers()
/third_party/mesa3d/src/gallium/frontends/wgl/
H A Dstw_framebuffer.c30 #include "pipe/p_screen.h"
31 #include "pipe/p_state.h"
116 fb->winsys_framebuffer->destroy(fb->winsys_framebuffer, stctx ? stctx->pipe : NULL); in stw_framebuffer_release_locked()
541 struct pipe_context *pipe; in DrvPresentBuffers() local
553 pipe = ctx ? ctx->st->pipe : NULL; in DrvPresentBuffers()
582 stw_dev->stw_winsys->present( screen, pipe, res, hdc ); in DrvPresentBuffers()
634 struct pipe_context *pipe = ctx ? ctx->st->pipe : NULL; in stw_framebuffer_present_locked() local
636 stw_dev->stw_winsys->present( screen, pipe, re in stw_framebuffer_present_locked()
[all...]
/third_party/mesa3d/src/gallium/drivers/lima/
H A Dlima_job.c206 bool lima_job_add_bo(struct lima_job *job, int pipe, in lima_job_add_bo() argument
209 util_dynarray_foreach(job->gem_bos + pipe, struct drm_lima_gem_submit_bo, gem_bo) { in lima_job_add_bo()
217 util_dynarray_grow(job->gem_bos + pipe, struct drm_lima_gem_submit_bo, 1); in lima_job_add_bo()
221 struct lima_bo **jbo = util_dynarray_grow(job->bos + pipe, struct lima_bo *, 1); in lima_job_add_bo()
231 lima_job_start(struct lima_job *job, int pipe, void *frame, uint32_t size) in lima_job_start() argument
236 .pipe = pipe, in lima_job_start()
237 .nr_bos = job->gem_bos[pipe].size / sizeof(struct drm_lima_gem_submit_bo), in lima_job_start()
238 .bos = VOID2U64(util_dynarray_begin(job->gem_bos + pipe)), in lima_job_start()
241 .out_sync = ctx->out_sync[pipe], in lima_job_start()
265 lima_job_wait(struct lima_job *job, int pipe, uint64_t timeout_ns) lima_job_wait() argument
293 lima_job_create_stream_bo(struct lima_job *job, int pipe, unsigned size, uint32_t *va) lima_job_create_stream_bo() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/
H A Dnvc0_vbo.c25 #include "pipe/p_context.h"
26 #include "pipe/p_state.h"
39 nvc0_vertex_state_delete(struct pipe_context *pipe, in nvc0_vertex_state_delete() argument
50 nvc0_vertex_state_create(struct pipe_context *pipe, in nvc0_vertex_state_create() argument
83 so->element[i].pipe = elements[i]; in nvc0_vertex_state_create()
99 util_debug_message(&nouveau_context(pipe)->debug, FALLBACK, in nvc0_vertex_state_create()
175 struct pipe_vertex_element *ve = &nvc0->vertex->element[a].pipe; in nvc0_set_constant_vertex_attrib()
239 struct pipe_vertex_element *ve = &nvc0->vertex->element[i].pipe; in nvc0_update_user_vbufs()
333 b = ve->pipe.vertex_buffer_index; in nvc0_validate_vertex_buffers()
338 if (ve->pipe in nvc0_validate_vertex_buffers()
927 nvc0_draw_vbo(struct pipe_context *pipe, const struct pipe_draw_info *info, unsigned drawid_offset, const struct pipe_draw_indirect_info *indirect, const struct pipe_draw_start_count_bias *draws, unsigned num_draws) nvc0_draw_vbo() argument
[all...]
H A Dnvc0_state_validate.c177 nvc0->base.pipe.get_sample_position(&nvc0->base.pipe, ms, i, xy); in nvc0_validate_sample_locations()
365 nvc0->rast->pipe.scissor == nvc0->state.scissor) in nvc0_validate_scissor()
368 if (nvc0->state.scissor != nvc0->rast->pipe.scissor) in nvc0_validate_scissor()
371 nvc0->state.scissor = nvc0->rast->pipe.scissor; in nvc0_validate_scissor()
379 if (nvc0->rast->pipe.scissor) { in nvc0_validate_scissor()
430 util_viewport_zmin_zmax(vp, nvc0->rast->pipe.clip_halfz, &zmin, &zmax); in nvc0_validate_viewport()
512 uint8_t clip_enable = nvc0->rast->pipe.clip_plane_enable; in nvc0_validate_clip()
732 if (nvc0->rast && nvc0->rast->pipe.rasterizer_discard) { in nvc0_validate_fp_zsa_rast()
736 (nvc0->zsa->pipe in nvc0_validate_fp_zsa_rast()
805 struct pipe_context *pipe = &nvc0->base.pipe; nvc0_validate_fbread() local
[all...]
/third_party/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_screen.h34 #include "pipe/p_screen.h"
35 #include "pipe/p_defines.h"
53 softpipe_screen( struct pipe_screen *pipe ) in softpipe_screen()
55 return (struct softpipe_screen *)pipe; in softpipe_screen()
/third_party/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_median_filter.h33 #include "pipe/p_state.h"
46 struct pipe_context *pipe; member
57 vl_median_filter_init(struct vl_median_filter *filter, struct pipe_context *pipe,
H A Dvl_matrix_filter.h34 #include "pipe/p_state.h"
38 struct pipe_context *pipe; member
49 vl_matrix_filter_init(struct vl_matrix_filter *filter, struct pipe_context *pipe,

Completed in 14 milliseconds

1...<<11121314151617181920>>...45