/src/lib/libc/sys/ |
Lint_pipe.c | 12 pipe(int filedes[2]) function in typeref:typename:int
|
/src/sys/external/bsd/drm2/dist/drm/i915/display/ |
intel_crt.h | 14 #define pipe pipe_drmhack /* see intel_display.h */ macro 16 enum pipe; 22 i915_reg_t adpa_reg, enum pipe *pipe);
|
intel_lpe_audio.h | 14 #define pipe pipe_drmhack /* see intel_display.h */ macro 16 enum pipe; 24 enum pipe pipe, enum port port,
|
intel_lvds.h | 16 #define pipe pipe_drmhack /* see intel_display.h */ macro 18 enum pipe; 22 i915_reg_t lvds_reg, enum pipe *pipe);
|
intel_sdvo.h | 18 #define pipe pipe_drmhack /* see intel_display.h */ macro 21 enum pipe; 25 i915_reg_t sdvo_reg, enum pipe *pipe);
|
intel_dp.h | 19 #define pipe pipe_drmhack /* see intel_display.h */ macro 21 enum pipe; 47 enum pipe *pipe);
|
intel_connector.c | 160 enum pipe pipe = 0; local in function:intel_connector_get_hw_state 163 return encoder->get_hw_state(encoder, &pipe); 166 enum pipe intel_connector_get_pipe(struct intel_connector *connector) 175 return to_intel_crtc(connector->base.state->crtc)->pipe;
|
intel_dsb.c | 29 * DSB's can access only the pipe, plane, and transcoder Data Island Packet 48 enum pipe pipe = crtc->pipe; local in function:is_dsb_busy 50 return DSB_STATUS & I915_READ(DSB_CTRL(pipe, dsb->id)); 57 enum pipe pipe = crtc->pipe; local in function:intel_dsb_enable_engine 60 dsb_ctrl = I915_READ(DSB_CTRL(pipe, dsb->id)); 67 I915_WRITE(DSB_CTRL(pipe, dsb->id), dsb_ctrl) 77 enum pipe pipe = crtc->pipe; local in function:intel_dsb_disable_engine 310 enum pipe pipe = crtc->pipe; local in function:intel_dsb_commit [all...] |
intel_fifo_underrun.c | 48 * occurrence until the next modeset on a given pipe. 51 * is no interrupt (despite that the signalling bit is in the PIPESTAT pipe 63 enum pipe pipe; local in function:ivb_can_enable_err_int 67 for_each_pipe(dev_priv, pipe) { 68 crtc = intel_get_crtc_for_pipe(dev_priv, pipe); 80 enum pipe pipe; local in function:cpt_can_enable_serr_int 85 for_each_pipe(dev_priv, pipe) { 86 crtc = intel_get_crtc_for_pipe(dev_priv, pipe); 150 enum pipe pipe = crtc->pipe; local in function:ivb_check_fifo_underruns [all...] |
/src/sys/external/bsd/drm2/dist/include/drm/ |
intel_lpe_audio.h | 32 #define pipe pipe_drmhack /* see intel_display.h */ macro 45 int pipe; member in struct:intel_hdmi_lpe_audio_port_pdata
|
drm_vblank.h | 32 #define pipe pipe_drmhack /* see intel_display.h */ macro 60 * @pipe: drm_crtc_index() of the &drm_crtc this event is for. 62 unsigned int pipe; member in struct:drm_pending_vblank_event 185 * @pipe: drm_crtc_index() of the &drm_crtc corresponding to this 188 unsigned int pipe; member in struct:drm_vblank_crtc 233 bool drm_handle_vblank(struct drm_device *dev, unsigned int pipe); 239 void drm_wait_one_vblank(struct drm_device *dev, unsigned int pipe); 245 void drm_vblank_restore(struct drm_device *dev, unsigned int pipe); 249 unsigned int pipe, int *max_error,
|
/src/sys/external/bsd/drm2/dist/drm/i915/gvt/ |
display.c | 46 int pipe = -1; local in function:get_edp_pipe 51 pipe = PIPE_A; 54 pipe = PIPE_B; 57 pipe = PIPE_C; 60 return pipe; 75 int pipe_is_enabled(struct intel_vgpu *vgpu, int pipe) 79 if (WARN_ON(pipe < PIPE_A || pipe >= I915_MAX_PIPES)) 82 if (vgpu_vreg_t(vgpu, PIPECONF(pipe)) & PIPECONF_ENABLE) 86 get_edp_pipe(vgpu) == pipe) 177 int pipe; local in function:emulate_monitor_status_change 370 int pipe, id; local in function:intel_gvt_check_vblank_emulation 426 int pipe; local in function:emulate_vblank [all...] |
fb_decoder.c | 151 static u32 intel_vgpu_get_stride(struct intel_vgpu *vgpu, int pipe, 156 u32 stride_reg = vgpu_vreg_t(vgpu, DSPSTRIDE(pipe)) & stride_mask; 212 int pipe; local in function:intel_vgpu_decode_primary_plane 214 pipe = get_active_pipe(vgpu); 215 if (pipe >= I915_MAX_PIPES) 218 val = vgpu_vreg_t(vgpu, DSPCNTR(pipe)); 252 plane->base = vgpu_vreg_t(vgpu, DSPSURF(pipe)) & I915_GTT_PAGE_MASK; 263 plane->stride = intel_vgpu_get_stride(vgpu, pipe, plane->tiled, 268 plane->width = (vgpu_vreg_t(vgpu, PIPESRC(pipe)) & _PIPE_H_SRCSZ_MASK) >> 271 plane->height = (vgpu_vreg_t(vgpu, PIPESRC(pipe)) 343 int pipe; local in function:intel_vgpu_decode_cursor_plane 422 int pipe; local in function:intel_vgpu_decode_sprite_plane [all...] |
/src/sys/external/bsd/drm2/dist/drm/xen/ |
xen_drm_front.h | 114 struct drm_simple_display_pipe pipe; member in struct:xen_drm_front_drm_pipeline
|
/src/usr.bin/vndcompress/ |
Makefile | 35 CHECKS+= check-pipe 37 check-pipe: .PHONY smallfile.cl2 smallfile.cl2pipe 80 # Make sure we can restart from a pipe. 81 CHECKS+= check-pipe-restart 86 check-pipe-restart: .PHONY piperestart.cl2 piperestart.cl2restart 104 # Make sure we can restart from a pipe even if the original start was 106 CHECKS+= check-pipe-badstart 111 check-pipe-badstart: .PHONY pipebadstart.cl2 pipebadstart.cl2restart 125 CHECKS+= check-pipe-falsestart 129 check-pipe-falsestart: .PHONY pipefalsestart.cl2 pipefalsestart.cl2restar [all...] |
/src/sys/dev/usb/ |
umodeswitch.c | 71 struct usbd_pipe *pipe; local in function:send_bulkmsg 104 USBD_EXCLUSIVE_USE, &pipe); 106 aprint_error("%s: failed to open bulk transfer pipe %d\n", 111 int error = usbd_create_xfer(pipe, cmdlen, 0, 0, &xfer); 131 usbd_abort_pipe(pipe); 132 usbd_close_pipe(pipe);
|
aubtfwl.c | 113 struct usbd_pipe *pipe; local in function:aubtfwl_firmware_load 146 error = usbd_open_pipe(iface, UE_DIR_OUT|2, USBD_EXCLUSIVE_USE, &pipe); 148 aprint_error_dev(self, "failed to open pipe, %s\n", 153 error = usbd_create_xfer(pipe, AR3K_FIRMWARE_CHUNK_SIZE, 0, 0, &xfer); 188 error = usbd_bulk_transfer(xfer, pipe, 0, USBD_DEFAULT_TIMEOUT, 204 usbd_close_pipe(pipe);
|
usbroothub.c | 79 static void roothub_noop(struct usbd_pipe *pipe); 347 /* Pipe isn't running, start first */ 354 struct usbd_pipe *pipe = xfer->ux_pipe; local in function:roothub_ctrl_start 355 struct usbd_bus *bus = pipe->up_dev->ud_bus; 365 * XXX Should really assert pipe lock, in case ever have 366 * per-pipe locking instead of using the bus lock for all 371 /* Roothub xfers are serialized through the pipe. */ 603 /* Close the root pipe. */ 605 roothub_ctrl_close(struct usbd_pipe *pipe) 619 roothub_noop(struct usbd_pipe *pipe) [all...] |
motgvar.h | 37 struct usbd_pipe pipe; member in struct:motg_pipe 94 /* Info for the root hub interrupt "pipe". */ 114 #define MOTG_PIPE2SC(pipe) MOTG_BUS2SC((pipe)->up_dev->ud_bus) 116 #define MOTG_MPIPE2SC(mpipe) MOTG_BUS2SC((mpipe)->pipe.up_dev->ud_bus) 119 #define MOTG_PIPE2MPIPE(pipe) ((struct motg_pipe *)(pipe))
|
/src/sys/external/bsd/drm2/dist/drm/i915/ |
intel_sideband.h | 12 #define pipe pipe_drmhack /* see intel_display.h */ macro 15 enum pipe; 83 u32 vlv_dpio_read(struct drm_i915_private *i915, enum pipe pipe, int reg); 85 enum pipe pipe, int reg, u32 val);
|
/src/sys/external/bsd/dwc2/ |
dwc2var.h | 50 struct usbd_pipe pipe; /* Must be first */ member in struct:dwc2_pipe 61 #define DWC2_PIPE2SC(pipe) DWC2_BUS2SC((pipe)->up_dev->ud_bus) 63 #define DWC2_DPIPE2SC(d) DWC2_BUS2SC((d)->pipe.up_dev->ud_bus)
|
/src/sys/sys/ |
pipe.h | 1 /* $NetBSD: pipe.h,v 1.42 2023/11/02 10:31:55 martin Exp $ */ 23 * $FreeBSD: src/sys/sys/pipe.h,v 1.18 2002/02/27 07:35:59 alfred Exp $ 35 * Pipe buffer size, keep moderate in value, pipes take kva space. 63 * Pipe buffer information. 79 #define PIPE_EOF 0x010 /* Pipe is in EOF condition */ 87 * Per-pipe data structure. 90 struct pipe { struct 91 kmutex_t *pipe_lock; /* pipe mutex */ 101 struct pipe *pipe_peer; /* link with other direction */ 103 u_int pipe_state; /* pipe status info * [all...] |
/src/tests/fs/lfs/ |
t_rfw.c | 92 FILE *pipe; local in function:test 114 pipe = fopen(LOGFILE, "r"); 115 if (pipe == NULL) 117 while (fgets(buf, MAXLINE, pipe) != NULL) { 121 while (fgets(buf, MAXLINE, pipe) != NULL) 123 fclose(pipe); 341 FILE *pipe; local in function:fsck 347 pipe = popen(cmd, "r"); 348 while (fgets(s, MAXLINE, pipe) != NULL) { 360 pclose(pipe); 374 FILE *pipe; local in function:dumplfs [all...] |
/src/sys/dev/pci/igma/ |
igmafb.c | 382 int pipe = cd->use_pipe; local in function:igmafb_guess_size 385 r = co->read_reg(cd, PIPE_HTOTAL(pipe)); 387 r = co->read_reg(cd, PIPE_VTOTAL(pipe)); 395 r = co->read_reg(cd, PF_WINSZ(pipe)); 413 int pipe = cd->use_pipe; local in function:igmafb_set_mode 431 co->write_reg(cd, PF_WINPOS(pipe), 433 co->write_reg(cd, PF_WINSZ(pipe), 436 /* pipe size */ 437 co->write_reg(cd, PIPE_SRCSZ(pipe), 440 /* enable pipe */ 513 int pipe = cd->use_pipe; local in function:igmafb_planestart_quirk [all...] |
/src/sys/external/bsd/drm/dist/shared-core/ |
i915_irq.c | 39 * Since pipe events are edge-triggered from the PIPESTAT register to IIR, 78 i915_pipestat(unsigned int pipe) 80 if (pipe == 0) 82 if (pipe == 1) 88 i915_enable_pipestat(drm_i915_private_t *dev_priv, unsigned int pipe, u32 mask) 90 if ((dev_priv->pipestat[pipe] & mask) != mask) { 91 u32 reg = i915_pipestat(pipe); 93 dev_priv->pipestat[pipe] |= mask; 95 I915_WRITE(reg, dev_priv->pipestat[pipe] | (mask >> 16)); 101 i915_disable_pipestat(drm_i915_private_t *dev_priv, unsigned int pipe, u32 mask 433 drm_i915_vblank_pipe_t *pipe = data; local in function:i915_vblank_pipe_get [all...] |