/third_party/mesa3d/src/gallium/drivers/d3d12/ |
H A D | d3d12_screen.h | 27 #include "pipe/p_screen.h" 125 d3d12_screen(struct pipe_screen *pipe) in d3d12_screen() argument 127 return (struct d3d12_screen *)pipe; in d3d12_screen()
|
/third_party/musl/libc-test/src/functionalext/fortify/ |
H A D | poll.c | 87 int res = pipe(fd); in poll_0030() 89 EXPECT_TRUE("poll_0030 pipe", 0); in poll_0030() 178 int res = pipe(fd); in ppoll_0030() 180 EXPECT_TRUE("poll_0030 pipe", 0); in ppoll_0030()
|
/third_party/rust/crates/rustix/tests/io/ |
H A D | poll.rs | 9 use rustix::io::{pipe, read, write}; in test_poll() 11 // Create a pipe. in test_poll() 12 let (reader, writer) = pipe().unwrap(); in test_poll() 16 // `poll` should say there's nothing ready to be read from the pipe. in test_poll() 22 // Write a byte to the pipe. in test_poll() 36 // Read the byte from the pipe. in test_poll()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
H A D | nvc0_program.c | 23 #include "pipe/p_defines.h" 593 info->bin.sourceRep = prog->pipe.type; in nvc0_program_translate() 594 switch (prog->pipe.type) { in nvc0_program_translate() 596 info->bin.source = (void *)prog->pipe.tokens; in nvc0_program_translate() 599 info->bin.source = (void *)nir_shader_clone(NULL, prog->pipe.ir.nir); in nvc0_program_translate() 750 if (prog->pipe.stream_output.num_outputs) in nvc0_program_translate() 752 &prog->pipe.stream_output); in nvc0_program_translate() 990 const struct pipe_shader_state pipe = prog->pipe; in nvc0_program_destroy() local 1006 prog->pipe in nvc0_program_destroy() [all...] |
/foundation/arkui/ace_engine/frameworks/core/components/option/ |
H A D | render_option.cpp | 353 auto pipe = context_.Upgrade(); in UpdateOthersStatus() local 354 if (!data_ || !pipe) { in UpdateOthersStatus() 359 needLine_ = (!(data_->GetFocused() && pipe->IsKeyEvent()) && upOption && upOption->IsNormalStatus()) && in UpdateOthersStatus() 396 auto pipe = context_.Upgrade(); in IsNormalStatus() local 397 if (!data_ || !pipe) { in IsNormalStatus() 401 return (!data_->GetClicked() && !hovered_ && !data_->GetSelected() && !(data_->GetFocused() && pipe->IsKeyEvent())); in IsNormalStatus()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
H A D | nv30_state_validate.c | 228 bool rast_scissor = nv30->rast ? nv30->rast->pipe.scissor : false; in nv30_validate_scissor() 287 if (nv30->rast->pipe.clip_plane_enable & (1 << i)) in nv30_validate_clip() 325 struct pipe_rasterizer_state *rasterizer = &nv30->rast->pipe; in nv30_validate_multisample() 326 struct pipe_blend_state *blend = &nv30->blend->pipe; in nv30_validate_multisample() 356 struct pipe_rasterizer_state *rasterizer = &nv30->rast->pipe; in nv30_validate_point_coord() 362 hw |= (nv30->rast->pipe.sprite_coord_enable & 0xff) << 8; in nv30_validate_point_coord()
|
H A D | nvfx_vertprog.c | 2 #include "pipe/p_context.h" 3 #include "pipe/p_defines.h" 4 #include "pipe/p_state.h" 10 #include "pipe/p_shader_tokens.h" 43 struct pipe_shader_state pipe; member 92 constant(struct nvfx_vpc *vpc, int pipe, float x, float y, float z, float w) in constant() argument 98 if (pipe >= 0) { in constant() 100 if (vp->consts[idx].index == pipe) in constant() 109 vpd->index = pipe; in constant() 880 tgsi_parse_init(&p, vpc->pipe in nvfx_vertprog_prepare() [all...] |
/third_party/mesa3d/src/gallium/drivers/freedreno/ |
H A D | freedreno_context.c | 383 fd_pipe_purge(ctx->pipe); in fd_context_destroy() 384 fd_pipe_del(ctx->pipe); in fd_context_destroy() 424 int ret = fd_pipe_get_param(ctx->pipe, param, &val); in fd_get_reset_count() 484 while (fd_bo_cpu_prep(ts_bo, ctx->pipe, FD_BO_PREP_NOSYNC)) in fd_trace_read_ts() 486 int ret = fd_bo_cpu_prep(ts_bo, ctx->pipe, FD_BO_PREP_READ); in fd_trace_read_ts() 612 ctx->pipe = fd_pipe_new2(screen->dev, FD_PIPE_3D, prio);
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a3xx/ |
H A D | fd3_format.c | 25 #include "pipe/p_defines.h" 43 #define VT(pipe, fmt, rbfmt, swapfmt) \ 44 [PIPE_FORMAT_##pipe] = {.present = 1, \ 51 #define _T(pipe, fmt, rbfmt, swapfmt) \ 52 [PIPE_FORMAT_##pipe] = {.present = 1, \ 59 #define V_(pipe, fmt, rbfmt, swapfmt) \ 60 [PIPE_FORMAT_##pipe] = {.present = 1, \
|
H A D | fd3_gmem.c | 27 #include "pipe/p_state.h" 805 const struct fd_vsc_pipe *pipe = &gmem->vsc_pipe[i]; variable 813 OUT_RING(ring, A3XX_VSC_PIPE_CONFIG_X(pipe->x) | 814 A3XX_VSC_PIPE_CONFIG_Y(pipe->y) | 815 A3XX_VSC_PIPE_CONFIG_W(pipe->w) | 816 A3XX_VSC_PIPE_CONFIG_H(pipe->h)); 1042 const struct fd_vsc_pipe *pipe = &gmem->vsc_pipe[tile->p]; variable 1045 assert(pipe->w && pipe->h); 1051 OUT_RING(ring, A3XX_PC_VSTREAM_CONTROL_SIZE(pipe [all...] |
/third_party/mesa3d/src/gallium/auxiliary/driver_noop/ |
H A D | noop_pipe.c | 25 #include "pipe/p_defines.h" 26 #include "pipe/p_state.h" 27 #include "pipe/p_context.h" 28 #include "pipe/p_screen.h" 88 noop_set_active_query_state(struct pipe_context *pipe, bool enable) in noop_set_active_query_state() argument 221 static void *noop_transfer_map(struct pipe_context *pipe, in noop_transfer_map() argument 245 static void noop_transfer_flush_region(struct pipe_context *pipe, in noop_transfer_flush_region() argument 251 static void noop_transfer_unmap(struct pipe_context *pipe, in noop_transfer_unmap() argument 258 static void noop_buffer_subdata(struct pipe_context *pipe, in noop_buffer_subdata() argument 265 static void noop_texture_subdata(struct pipe_context *pipe, in noop_texture_subdata() argument [all...] |
/third_party/pulseaudio/src/pulsecore/ |
H A D | pipe.h | 25 int pipe(int filedes[2]);
|
/third_party/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_clear.h | 38 softpipe_clear(struct pipe_context *pipe, unsigned buffers,
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_clear.h | 35 #include "pipe/p_state.h" 39 llvmpipe_clear(struct pipe_context *pipe, unsigned buffers,
|
/third_party/mesa3d/src/gallium/auxiliary/vl/ |
H A D | vl_decoder.h | 32 #include "pipe/p_video_codec.h" 48 * standard implementation of pipe->create_video_codec 51 vl_create_decoder(struct pipe_context *pipe,
|
/third_party/mesa3d/src/gallium/auxiliary/hud/ |
H A D | font.h | 31 #include "pipe/p_compiler.h" 56 util_font_create(struct pipe_context *pipe, enum util_font_name name,
|
/third_party/alsa-lib/src/pcm/ |
H A D | pcm_file.c | 74 FILE *pipe; member 237 /* pipe mode */ in snd_pcm_file_open_output_file() 238 FILE *pipe; in snd_pcm_file_open_output_file() local 240 pipe = popen(file->final_fname + 1, "w"); in snd_pcm_file_open_output_file() 241 if (!pipe) { in snd_pcm_file_open_output_file() 246 fd = fileno(pipe); in snd_pcm_file_open_output_file() 247 file->pipe = pipe; in snd_pcm_file_open_output_file() 249 file->pipe = NULL; in snd_pcm_file_open_output_file() 374 * to block possible EPIPE in case file->fd is a pipe in write_wav_header() [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | evergreen_compute.c | 33 #include "pipe/p_defines.h" 34 #include "pipe/p_state.h" 35 #include "pipe/p_context.h" 119 static void evergreen_set_rat(struct r600_pipe_compute *pipe, in evergreen_set_rat() argument 133 rctx = pipe->ctx; in evergreen_set_rat() 145 pipe_surface_reference(&pipe->ctx->framebuffer.state.cbufs[id], NULL); in evergreen_set_rat() 146 pipe->ctx->framebuffer.state.cbufs[id] = pipe->ctx->b.b.create_surface( in evergreen_set_rat() 147 (struct pipe_context *)pipe->ctx, in evergreen_set_rat() 151 pipe in evergreen_set_rat() [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | bufferobj.c | 113 struct pipe_context *pipe = ctx->pipe; in _mesa_bufferobj_subdata() local 115 pipe->buffer_subdata(pipe, obj->buffer, in _mesa_bufferobj_subdata() 144 pipe_buffer_read(ctx->pipe, obj->buffer, in bufferobj_get_subdata() 270 struct pipe_context *pipe = ctx->pipe; in bufferobj_data() local 271 struct pipe_screen *screen = pipe->screen; in bufferobj_data() 298 pipe->buffer_subdata(pipe, ob in bufferobj_data() 475 struct pipe_context *pipe = ctx->pipe; _mesa_bufferobj_map_range() local 523 struct pipe_context *pipe = ctx->pipe; _mesa_bufferobj_flush_mapped_range() local 547 struct pipe_context *pipe = ctx->pipe; _mesa_bufferobj_unmap() local 570 struct pipe_context *pipe = ctx->pipe; bufferobj_copy_subdata() local 5182 struct pipe_context *pipe = ctx->pipe; bufferobj_invalidate() local 5351 struct pipe_context *pipe = ctx->pipe; buffer_page_commitment() local [all...] |
/third_party/musl/src/unistd/ |
H A D | pipe.c | 8 int pipe(int fd[2]) in pipe() function
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_gen_mipmap.h | 31 #include "pipe/p_state.h" 42 util_gen_mipmap(struct pipe_context *pipe, struct pipe_resource *pt,
|
/third_party/mesa3d/src/gallium/auxiliary/postprocess/ |
H A D | pp_celshade.c | 38 pp_tgsi_to_state(ppq->p->pipe, celshade, false, "celshade"); in pp_celshade_init()
|
/third_party/node/deps/v8/tools/release/ |
H A D | common_includes.py | 95 # Some commands don't like the pipe, e.g. calling vi from within the script or 97 def Command(cmd, args="", prefix="", pipe=True, cwd=None): 105 if pipe: 145 def Command(self, cmd, args="", prefix="", pipe=True, cwd=None): 146 return Command(cmd, args, prefix, pipe, cwd=cwd) 402 def Git(self, args="", prefix="", pipe=True, retry_on=None, cwd=None): 404 "git", args, prefix, pipe, cwd=cwd or self.default_cwd) 415 pipe=False,
|
/foundation/graphic/graphic_2d/rosen/modules/composer/vsync/test/systemtest/ |
H A D | vsync_multicallback_test.cpp | 168 if (pipe(pipeFd) < 0) { in HWTEST_F() 171 if (pipe(pipe1Fd) < 0) { in HWTEST_F()
|
H A D | vsync_setvsyncrate_test.cpp | 158 if (pipe(pipeFd) < 0) { in HWTEST_F() 161 if (pipe(pipe1Fd) < 0) { in HWTEST_F()
|