Home
last modified time | relevance | path

Searched refs:pipe (Results 326 - 350 of 1162) sorted by relevance

1...<<11121314151617181920>>...47

/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_cb_drawpixels.c68 #include "pipe/p_context.h"
69 #include "pipe/p_defines.h"
614 struct pipe_context *pipe = st->pipe; in make_texture() local
668 dest = pipe_texture_map(pipe, pt, 0, 0, in make_texture()
714 pipe_texture_unmap(pipe, transfer); in make_texture()
744 struct pipe_context *pipe = st->pipe; in draw_textured_quad() local
883 pipe->set_sampler_views(pipe, PIPE_SHADER_FRAGMEN in draw_textured_quad()
964 struct pipe_context *pipe = st->pipe; draw_stencil_pixels() local
1419 struct pipe_context *pipe = st_context(ctx)->pipe; copy_stencil_pixels() local
1523 struct pipe_context *pipe = st->pipe; blit_copy_pixels() local
1672 struct pipe_context *pipe = st->pipe; st_CopyPixels() local
[all...]
H A Dst_cb_drawtex.c30 #include "pipe/p_context.h"
31 #include "pipe/p_defines.h"
33 #include "pipe/p_shader_tokens.h"
98 struct pipe_context *pipe = st->pipe; in lookup_shader() local
149 util_make_vertex_passthrough_shader(pipe, in lookup_shader()
166 struct pipe_context *pipe = st->pipe; in st_DrawTex() local
215 u_upload_alloc(pipe->stream_uploader, 0, in st_DrawTex()
287 u_upload_unmap(pipe in st_DrawTex()
[all...]
H A Dst_atom_msaa.c30 #include "pipe/p_screen.h"
31 #include "pipe/p_context.h"
98 st->pipe->set_sample_locations( st->pipe, size, locations); in update_sample_locations()
104 st->pipe->set_sample_locations(st->pipe, 0, NULL); in update_sample_locations()
/third_party/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_clear.c35 #include "pipe/p_defines.h"
50 softpipe_clear(struct pipe_context *pipe, unsigned buffers, in softpipe_clear() argument
55 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_clear()
82 util_clear_depth_stencil(pipe, zsbuf, zs_buffers, depth, stencil, in softpipe_clear()
H A Dsp_context.h34 #include "pipe/p_context.h"
54 struct pipe_context pipe; /**< base class */ member
197 softpipe_context( struct pipe_context *pipe ) in softpipe_context()
199 return (struct softpipe_context *)pipe; in softpipe_context()
217 softpipe_is_resource_referenced( struct pipe_context *pipe,
/third_party/mesa3d/src/gallium/drivers/lima/
H A Dlima_job.h32 #include <pipe/p_state.h>
102 bool lima_job_add_bo(struct lima_job *job, int pipe,
104 void *lima_job_create_stream_bo(struct lima_job *job, int pipe,
/third_party/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_idct.h31 #include "pipe/p_state.h"
40 struct pipe_context *pipe; member
78 /* upload the idct matrix, which can be shared by all idct instances of a pipe */
80 vl_idct_upload_matrix(struct pipe_context *pipe, float scale);
92 vl_idct_init(struct vl_idct *idct, struct pipe_context *pipe,
H A Dvl_compositor.h31 #include "pipe/p_state.h"
32 #include "pipe/p_video_codec.h"
33 #include "pipe/p_video_state.h"
92 struct pipe_context *pipe; member
107 struct pipe_context *pipe; member
169 vl_compositor_init(struct vl_compositor *compositor, struct pipe_context *pipe);
175 vl_compositor_init_state(struct vl_compositor_state *state, struct pipe_context *pipe);
/third_party/musl/libc-test/src/functionalext/supplement/linux/
H A Dtee.c26 * @tc.desc : Copy data between two pipe file descriptors
37 result = pipe(pipefd1); in tee_0100()
39 t_error("%s pipe stdout failed\n", __func__); in tee_0100()
46 result = pipe(pipefd2); in tee_0100()
48 t_error("%s pipe file failed\n", __func__); in tee_0100()
70 * @tc.desc : Input argument is not a pipe descriptor
87 result = pipe(pipefd2); in tee_0200()
89 t_error("%s pipe file failed\n", __func__); in tee_0200()
/third_party/mesa3d/src/gallium/auxiliary/postprocess/
H A Dpp_private.h42 struct pipe_context *pipe; member
97 struct pp_program *pp_init_prog(struct pp_queue_t *, struct pipe_context *pipe,
100 void pp_blit(struct pipe_context *pipe,
/third_party/mesa3d/src/gallium/frontends/dri/
H A Ddri2.c45 #include "pipe-loader/pipe_loader.h"
412 struct pipe_context *pipe = ctx->st->pipe; in handle_in_fence() local
423 pipe->create_fence_fd(pipe, &fence, fd, PIPE_FD_TYPE_NATIVE_SYNC); in handle_in_fence()
424 pipe->fence_server_sync(pipe, fence); in handle_in_fence()
425 pipe->screen->fence_reference(pipe->screen, &fence, NULL); in handle_in_fence()
492 struct pipe_context *pipe in dri2_allocate_textures() local
743 struct pipe_context *pipe = ctx->st->pipe; dri2_flush_frontbuffer() local
1748 struct pipe_context *pipe = ctx->st->pipe; dri2_blit_image() local
1796 struct pipe_context *pipe = ctx->st->pipe; dri2_map_image() local
1833 struct pipe_context *pipe = ctx->st->pipe; dri2_unmap_image() local
[all...]
/third_party/mesa3d/src/gallium/frontends/va/
H A Dcontext.c29 #include "pipe/p_screen.h"
30 #include "pipe/p_video_codec.h"
167 drv->pipe = pipe_create_multimedia_context(drv->vscreen->pscreen); in VA_DRIVER_INIT_FUNC()
168 if (!drv->pipe) in VA_DRIVER_INIT_FUNC()
175 if (!vl_compositor_init(&drv->compositor, drv->pipe)) in VA_DRIVER_INIT_FUNC()
177 if (!vl_compositor_init_state(&drv->cstate, drv->pipe)) in VA_DRIVER_INIT_FUNC()
214 drv->pipe->destroy(drv->pipe); in VA_DRIVER_INIT_FUNC()
398 drv->pipe->delete_compute_state(drv->pipe, contex in vlVaDestroyContext()
[all...]
/third_party/mesa3d/src/gallium/drivers/r300/
H A Dr300_context.c265 static void r300_init_states(struct pipe_context *pipe) in r300_init_states() argument
267 struct r300_context *r300 = r300_context(pipe); in r300_init_states()
280 pipe->set_blend_color(pipe, &bc); in r300_init_states()
281 pipe->set_clip_state(pipe, &cs); in r300_init_states()
282 pipe->set_scissor_states(pipe, 0, 1, &ss); in r300_init_states()
283 pipe->set_sample_mask(pipe, ~ in r300_init_states()
[all...]
H A Dr300_flush.c74 void r300_flush(struct pipe_context *pipe, in r300_flush() argument
78 struct r300_context *r300 = r300_context(pipe); in r300_flush()
127 static void r300_flush_wrapped(struct pipe_context *pipe, in r300_flush_wrapped() argument
134 r300_flush(pipe, flags, fence); in r300_flush_wrapped()
/third_party/typescript/tests/baselines/reference/
H A DrestTuplesFromContextualTypes.js68 declare function pipe<A extends any[], B, C>(f: (...args: A) => B, g: (x: B) => C): (...args: A) => C;
70 let g5 = pipe(() => true, b => 42);
71 let g6 = pipe(x => "hello", s => s.length);
72 let g7 = pipe((x, y) => 42, x => "" + x);
73 let g8 = pipe((x: number, y: string) => 42, x => "" + x);
313 var g5 = pipe(function () { return true; }, function (b) { return 42; });
314 var g6 = pipe(function (x) { return "hello"; }, function (s) { return s.length; });
315 var g7 = pipe(function (x, y) { return 42; }, function (x) { return "" + x; });
316 var g8 = pipe(function (x, y) { return 42; }, function (x) { return "" + x; });
357 declare function pipe<
[all...]
/third_party/libuv/docs/code/multi-echo-server/
H A Dmain.c12 uv_pipe_t pipe; member
43 uv_write2(write_req, (uv_stream_t*) &worker->pipe, &dummy_buf, 1, (uv_stream_t*) client, NULL); in on_new_connection()
76 uv_pipe_init(loop, &worker->pipe, 1); in setup_workers()
80 child_stdio[0].data.stream = (uv_stream_t*) &worker->pipe; in setup_workers()
/third_party/mesa3d/src/freedreno/drm/msm/
H A Dmsm_priv.h34 #include "pipe/p_defines.h"
51 uint32_t pipe; member
69 struct fd_ringbuffer *msm_ringbuffer_new_object(struct fd_pipe *pipe,
72 struct fd_submit *msm_submit_new(struct fd_pipe *pipe);
73 struct fd_submit *msm_submit_sp_new(struct fd_pipe *pipe);
/third_party/mesa3d/src/gallium/frontends/xa/
H A Dxa_yuv.c92 r->pipe->create_sampler_view(r->pipe, yuv[i]->tex, &view_templ); in xa_yuv_bind_samplers()
96 r->pipe->set_sampler_views(r->pipe, PIPE_SHADER_FRAGMENT, 0, 3, 0, false, r->bound_sampler_views); in xa_yuv_bind_samplers()
/third_party/node/test/parallel/
H A Dtest-stream3-pause-then-read.js105 // Just pipe 200 bytes, then unshift the extra and unpipe.
108 console.error('pipe a little');
130 r.pipe(w);
151 setImmediate(pipe);
155 function pipe() { function
156 console.error('pipe the rest');
169 r.pipe(w);
/third_party/node/test/sequential/
H A Dtest-tls-securepair-client.js72 server.stdout.pipe(process.stdout);
73 server.stderr.pipe(process.stdout);
136 pair.encrypted.pipe(s);
137 s.pipe(pair.encrypted);
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/
H A DtokenTypes.js4 exports.word = exports.tilde = exports.tab = exports.str = exports.space = exports.slash = exports.singleQuote = exports.semicolon = exports.plus = exports.pipe = exports.openSquare = exports.openParenthesis = exports.newline = exports.greaterThan = exports.feed = exports.equals = exports.doubleQuote = exports.dollar = exports.cr = exports.comment = exports.comma = exports.combinator = exports.colon = exports.closeSquare = exports.closeParenthesis = exports.caret = exports.bang = exports.backslash = exports.at = exports.asterisk = exports.ampersand = void 0;
35 var pipe = 124; // `|`.charCodeAt(0); variable
36 exports.pipe = pipe;
/third_party/mesa3d/src/gallium/drivers/i915/
H A Di915_resource_buffer.c33 #include "pipe/p_context.h"
34 #include "pipe/p_defines.h"
68 i915_buffer_transfer_map(struct pipe_context *pipe, in i915_buffer_transfer_map() argument
73 struct i915_context *i915 = i915_context(pipe); in i915_buffer_transfer_map()
90 i915_buffer_transfer_unmap(struct pipe_context *pipe, in i915_buffer_transfer_unmap() argument
93 struct i915_context *i915 = i915_context(pipe); in i915_buffer_transfer_unmap()
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_gen_mipmap.c59 util_gen_mipmap(struct pipe_context *pipe, struct pipe_resource *pt, in util_gen_mipmap() argument
63 struct pipe_screen *screen = pipe->screen; in util_gen_mipmap()
125 pipe->blit(pipe, &blit); in util_gen_mipmap()
/third_party/python/Lib/test/
H A Dtest_select.py61 pipe = proc.stdout
65 rfd, wfd, xfd = select.select([pipe], [], [], timeout)
70 if rfd == [pipe]:
71 line = pipe.readline()
/third_party/libdrm/etnaviv/
H A Detnaviv_cmd_stream.c58 drm_public struct etna_cmd_stream *etna_cmd_stream_new(struct etna_pipe *pipe, in etna_cmd_stream_new() argument
86 stream->pipe = pipe; in etna_cmd_stream_new()
181 int ret, id = priv->pipe->id; in flush()
182 struct etna_gpu *gpu = priv->pipe->gpu; in flush()
185 .pipe = gpu->core, in flush()
243 etna_pipe_wait(priv->pipe, priv->last_timestamp, 5000); in etna_cmd_stream_finish()

Completed in 21 milliseconds

1...<<11121314151617181920>>...47