Home
last modified time | relevance | path

Searched refs:pipes (Results 1 – 25 of 37) sorted by relevance

12

/dragonfly/sys/dev/drm/amd/display/dc/core/
H A Ddc_link_hwss.c62 struct pipe_ctx *pipes = in dp_enable_link_phy() local
72 if (pipes[i].stream != NULL && in dp_enable_link_phy()
73 pipes[i].stream->sink != NULL && in dp_enable_link_phy()
77 pipes[i].clock_source = dp_cs; in dp_enable_link_phy()
81 pipes[i].clock_source, in dp_enable_link_phy()
83 &pipes[i].pll_settings); in dp_enable_link_phy()
274 struct pipe_ctx *pipes = in dp_retrain_link_dp_test() local
279 if (pipes[i].stream != NULL && in dp_retrain_link_dp_test()
280 !pipes[i].top_pipe && in dp_retrain_link_dp_test()
309 pipes[i].clock_source->id); in dp_retrain_link_dp_test()
[all …]
H A Ddc.c330 struct pipe_ctx *pipes = NULL; in dc_stream_set_dither_option() local
336 pipes = &link->dc->current_state->res_ctx.pipe_ctx[i]; in dc_stream_set_dither_option()
341 if (!pipes) in dc_stream_set_dither_option()
352 if (pipes->plane_res.xfm && in dc_stream_set_dither_option()
353 pipes->plane_res.xfm->funcs->transform_set_pixel_storage_depth) { in dc_stream_set_dither_option()
354 pipes->plane_res.xfm->funcs->transform_set_pixel_storage_depth( in dc_stream_set_dither_option()
355 pipes->plane_res.xfm, in dc_stream_set_dither_option()
356 pipes->plane_res.scl_data.lb_params.depth, in dc_stream_set_dither_option()
360 pipes->stream_res.opp->funcs-> in dc_stream_set_dither_option()
361 opp_program_bit_depth_reduction(pipes->stream_res.opp, &params); in dc_stream_set_dither_option()
H A Ddc_link_dp.c2604 struct pipe_ctx *pipes = link->dc->current_state->res_ctx.pipe_ctx; in dc_link_dp_set_test_pattern() local
2605 struct pipe_ctx *pipe_ctx = &pipes[0]; in dc_link_dp_set_test_pattern()
2615 if (pipes[i].stream->sink->link == link) { in dc_link_dp_set_test_pattern()
2616 pipe_ctx = &pipes[i]; in dc_link_dp_set_test_pattern()
2662 pipes->stream_res.stream_enc->funcs->dp_blank(pipe_ctx->stream_res.stream_enc); in dc_link_dp_set_test_pattern()
/dragonfly/tools/tools/netrate/netperf/tcp_cc/
H A Dtcp_cc.c15 int pipes[2]; member
84 if (pipe(instance[i].pipes) < 0) in main()
95 dup2(instance[i].pipes[1], STDOUT_FILENO); in main()
107 close(instance[i].pipes[1]); in main()
108 instance[i].pipes[1] = -1; in main()
126 fp = fdopen(instance[i].pipes[0], "r"); in main()
/dragonfly/contrib/flex/src/
H A Dfilter.c130 int pid, pipes[2]; in filter_apply_chain() local
149 if (pipe (pipes) == -1) in filter_apply_chain()
164 close (pipes[1]); in filter_apply_chain()
166 if (dup2 (pipes[0], fileno (stdin)) == -1) in filter_apply_chain()
168 close (pipes[0]); in filter_apply_chain()
192 close (pipes[0]); in filter_apply_chain()
193 if (dup2 (pipes[1], fileno (stdout)) == -1) in filter_apply_chain()
195 close (pipes[1]); in filter_apply_chain()
/dragonfly/contrib/binutils-2.34/libiberty/
H A Dpex-unix.c581 volatile int pipes[2]; /* [0]:reader,[1]:writer. */ in pex_unix_exec_child() local
588 if (pipe2 ((int *)pipes, O_CLOEXEC)) in pex_unix_exec_child()
591 if (pipe ((int *)pipes)) in pex_unix_exec_child()
595 if (fcntl (pipes[1], F_SETFD, FD_CLOEXEC) == -1) in pex_unix_exec_child()
597 close (pipes[0]); in pex_unix_exec_child()
598 close (pipes[1]); in pex_unix_exec_child()
632 close (pipes[0]); in pex_unix_exec_child()
633 close (pipes[1]); in pex_unix_exec_child()
646 close (pipes[0]); in pex_unix_exec_child()
738 close (pipes[1]); in pex_unix_exec_child()
[all …]
/dragonfly/contrib/cvs-1.12/src/
H A Drsh-client.c45 int pipes[2]; in start_rsh_server() local
116 child_pid = popenRW (rsh_argv, pipes); in start_rsh_server()
121 make_bufs_from_fds (pipes[0], pipes[1], child_pid, to_server_p, in start_rsh_server()
/dragonfly/tools/tools/netrate/netperf/tcp_stream/
H A Dtcp_stream.c26 int pipes[2]; member
185 if (pipe(instance[i].pipes) < 0) in main()
202 dup2(instance[i].pipes[1], STDOUT_FILENO); in main()
229 close(instance[i].pipes[1]); in main()
230 instance[i].pipes[1] = -1; in main()
254 fp = fdopen(instance[i].pipes[0], "r"); in main()
/dragonfly/contrib/cvs-1.12/diff/
H A Dutil.c217 int pipes[2]; in begin_output() local
219 if (pipe (pipes) != 0) in begin_output()
230 close (pipes[1]); in begin_output()
231 if (pipes[0] != STDIN_FILENO) in begin_output()
233 if (dup2 (pipes[0], STDIN_FILENO) < 0) in begin_output()
235 close (pipes[0]); in begin_output()
243 close (pipes[0]); in begin_output()
244 outfile = fdopen (pipes[1], "w"); in begin_output()
/dragonfly/contrib/diffutils/src/
H A Dutil.c862 int pipes[2]; in begin_output() local
864 if (pipe (pipes) != 0) in begin_output()
873 close (pipes[1]); in begin_output()
874 if (pipes[0] != STDIN_FILENO) in begin_output()
876 if (dup2 (pipes[0], STDIN_FILENO) < 0) in begin_output()
878 close (pipes[0]); in begin_output()
886 close (pipes[0]); in begin_output()
887 outfile = fdopen (pipes[1], "w"); in begin_output()
/dragonfly/contrib/gcc-4.7/gcc/config/i386/
H A Dpentium.md72 ;; Pentium do have U and V pipes. Instruction to both pipes
84 ;; We add dummy "port" pipes allocated only first cycle of
H A Dbdver1.md120 ;; Vector operations usually consume many of pipes.
/dragonfly/contrib/gcc-8.0/gcc/config/i386/
H A Dpentium.md72 ;; Pentium do have U and V pipes. Instruction to both pipes
84 ;; We add dummy "port" pipes allocated only first cycle of
H A Dznver1.md24 ;; Modeling automatons for zen decoders, integer execution pipes,
25 ;; AGU pipes and floating point execution units.
47 ;; Integer unit 4 ALU pipes.
54 ;; 2 AGU pipes.
68 ;; Floating point unit 4 FP pipes.
613 ;; to some fpu pipes.
783 ;; All other used ssecvt fp3 pipes
H A Dbtver2.md60 ;; There are 2 ALU pipes
65 ;; There are 2 AGU pipes one for load and one for store.
82 ;;Floating point pipes.
H A Dbdver1.md124 ;; Vector operations usually consume many of pipes.
/dragonfly/sys/dev/drm/i915/
H A Dintel_dp.c543 unsigned int pipes = (1 << PIPE_A) | (1 << PIPE_B); in vlv_find_free_pps() local
563 pipes &= ~(1 << intel_dp->pps_pipe); in vlv_find_free_pps()
568 pipes &= ~(1 << intel_dp->active_pipe); in vlv_find_free_pps()
572 if (pipes == 0) in vlv_find_free_pps()
575 return ffs(pipes) - 1; in vlv_find_free_pps()
/dragonfly/usr.bin/vi/catalog/
H A Ddutch.UTF-8.base138 145 "Alleen echte bestanden en named pipes kunnen gelezen worden"
H A Dgerman.UTF-8.base138 145 "Nur reguläre Dateien und named pipes können gelesen werden"
H A Dpolish.UTF-8.base138 145 "Tylko zwykłe pliki i nazwane łącza (named pipes) można czytać"
/dragonfly/contrib/nvi2/catalog/
H A Ddutch.base138 145 "Alleen echte bestanden en named pipes kunnen gelezen worden"
/dragonfly/contrib/awk/
H A DFIXES.1e214 on exec flag to files/pipes opened for redirection; courtesy of
724 fflush() or fflush("") flushes all files and pipes.
873 pipes (thanks to Steve Adams for this helpful suggestion).
/dragonfly/contrib/less/
H A DNEWS775 * Improved performance in reading very large pipes.
1178 * New command | pipes a section of the input file into a shell command.
/dragonfly/contrib/zstd/
H A DCHANGELOG97 cli: Named pipes support, by @bimbashrestha
/dragonfly/etc/
H A Dservices1784 pipes 1465/tcp #Pipes Platform
1785 pipes 1465/udp #Pipes Platform mfarlin@peerlogic.com

12