| /linux-4.4.14/Documentation/ABI/testing/ |
| D | sysfs-class-lcd | 10 What: /sys/class/lcd/<lcd>/contrast 15 Current contrast of this LCD device. Value is between 0 and 23 Maximum contrast for this LCD device.
|
| D | sysfs-bus-usb | 6 in contrast to the device authorization.
|
| /linux-4.4.14/drivers/gpu/drm/nouveau/dispnv04/ |
| D | overlay.c | 45 struct drm_property *contrast; member 53 int contrast; member 202 u32 luma = (plane->brightness - 512) << 16 | plane->contrast; in nv10_set_params() 235 else if (property == nv_plane->props.contrast) in nv_set_property() 236 nv_plane->contrast = value; in nv_set_property() 290 plane->props.contrast = drm_property_create_range( in nv10_overlay_init() 301 !plane->props.contrast || in nv10_overlay_init() 312 plane->contrast = 0x1000; in nv10_overlay_init() 314 plane->props.contrast, plane->contrast); in nv10_overlay_init()
|
| /linux-4.4.14/drivers/media/usb/gspca/gl860/ |
| D | gl860-ov2640.c | 190 sd->vcur.contrast = 0; in ov2640_init_settings() 201 sd->vmax.contrast = 255; in ov2640_init_settings() 254 sd->vold.contrast = -1; in ov2640_init_pre_alt() 355 s32 cntr = sd->vcur.contrast; in ov2640_camera_settings() 395 if (cntr != sd->vold.contrast) { in ov2640_camera_settings() 396 sd->vold.contrast = cntr; in ov2640_camera_settings() 397 if (cntr < 0 || cntr > sd->vmax.contrast) in ov2640_camera_settings()
|
| D | gl860-mi1320.c | 192 sd->vcur.contrast = 10; in mi1320_init_settings() 204 sd->vmax.contrast = 0; /* 10 but not working with this driver */ in mi1320_init_settings() 269 sd->vold.contrast = -1; in mi1320_init_pre_alt() 355 s32 cntr = sd->vcur.contrast; in mi1320_camera_settings() 514 if (cntr != sd->vold.contrast) { in mi1320_camera_settings() 515 sd->vold.contrast = cntr; in mi1320_camera_settings() 516 if (cntr < 0 || cntr > sd->vmax.contrast) in mi1320_camera_settings()
|
| D | gl860-mi2020.c | 370 sd->vcur.contrast = 0; in mi2020_init_settings() 382 sd->vmax.contrast = 3; in mi2020_init_settings() 442 sd->vold.contrast = 0; in mi2020_init_pre_alt() 641 s32 cntr = sd->vcur.contrast; in mi2020_camera_settings() 746 if (cntr != sd->vold.contrast || gam != sd->vold.gamma) { in mi2020_camera_settings() 747 sd->vold.contrast = cntr; in mi2020_camera_settings() 748 if (cntr < 0 || cntr > sd->vmax.contrast) in mi2020_camera_settings()
|
| D | gl860-ov9655.c | 160 sd->vcur.contrast = 0; in ov9655_init_settings() 169 sd->vmax.contrast = 0; in ov9655_init_settings()
|
| D | gl860.c | 72 sd->vcur.contrast = ctrl->val; in sd_s_ctrl() 128 if (sd->vmax.contrast) in sd_init_controls() 130 0, sd->vmax.contrast, 1, in sd_init_controls() 131 sd->vcur.contrast); in sd_init_controls()
|
| D | gl860.h | 49 u16 contrast; member
|
| /linux-4.4.14/drivers/video/fbdev/ |
| D | wm8505fb.c | 47 unsigned int contrast; member 153 writel(fbi->contrast<<16 | fbi->contrast<<8 | fbi->contrast, in wm8505fb_set_par() 165 return sprintf(buf, "%u\n", fbi->contrast); in contrast_show() 178 fbi->contrast = tmp; in contrast_store() 185 static DEVICE_ATTR(contrast, 0644, contrast_show, contrast_store); 349 fbi->contrast = 0x10; in wm8505fb_probe()
|
| D | ssd1307fb.c | 64 u32 contrast; member 311 ret = ssd1307fb_write_cmd(par->client, par->contrast); in ssd1307fb_init() 447 par->contrast = brightness; in ssd1307fb_update_bl() 452 ret = ssd1307fb_write_cmd(par->client, par->contrast); in ssd1307fb_update_bl() 462 return par->contrast; in ssd1307fb_get_brightness() 586 par->contrast = 127; in ssd1307fb_probe() 675 bl->props.brightness = par->contrast; in ssd1307fb_probe()
|
| D | bf537-lq035.c | 660 static int bfin_lcd_set_contrast(struct lcd_device *dev, int contrast) in bfin_lcd_set_contrast() argument 662 if (contrast > 255) in bfin_lcd_set_contrast() 663 contrast = 255; in bfin_lcd_set_contrast() 664 if (contrast < 0) in bfin_lcd_set_contrast() 665 contrast = 0; in bfin_lcd_set_contrast() 667 vcomm_value = (unsigned char)contrast; in bfin_lcd_set_contrast()
|
| D | imxfb.c | 738 static int imxfb_lcd_set_contrast(struct lcd_device *lcddev, int contrast) in imxfb_lcd_set_contrast() argument 743 if (contrast > 255) in imxfb_lcd_set_contrast() 744 contrast = 255; in imxfb_lcd_set_contrast() 745 else if (contrast < 0) in imxfb_lcd_set_contrast() 746 contrast = 0; in imxfb_lcd_set_contrast() 749 fbi->pwmr |= contrast; in imxfb_lcd_set_contrast()
|
| D | pxa168fb.h | 342 #define CFG_CONTRAST(contrast) (contrast) argument
|
| D | bfin-t350mcqb-fb.c | 377 static int bfin_lcd_set_contrast(struct lcd_device *dev, int contrast) in bfin_lcd_set_contrast() argument
|
| D | bf54x-lq043fb.c | 455 static int bfin_lcd_set_contrast(struct lcd_device *dev, int contrast) in bfin_lcd_set_contrast() argument
|
| /linux-4.4.14/drivers/video/backlight/ |
| D | lcd.c | 152 unsigned long contrast; in contrast_store() local 154 rc = kstrtoul(buf, 0, &contrast); in contrast_store() 162 pr_debug("set contrast to %lu\n", contrast); in contrast_store() 163 ld->ops->set_contrast(ld, contrast); in contrast_store() 170 static DEVICE_ATTR_RW(contrast);
|
| D | Kconfig | 23 (contrast and applying power to the LCD (not to the backlight!)). 175 driver. If the LCD "contrast control" on your board is wired
|
| /linux-4.4.14/drivers/media/usb/gspca/ |
| D | spca561.c | 41 struct v4l2_ctrl *contrast; member 482 static void setwhite(struct gspca_dev *gspca_dev, s32 white, s32 contrast) in setwhite() argument 495 red += contrast - 0x20; in setwhite() 496 blue += contrast - 0x20; in setwhite() 497 reg_w_val(gspca_dev, 0x8652, contrast + 0x20); /* Gr */ in setwhite() 498 reg_w_val(gspca_dev, 0x8654, contrast + 0x20); /* Gb */ in setwhite() 634 v4l2_ctrl_g_ctrl(sd->contrast)); in sd_start_72a() 839 sd->contrast = v4l2_ctrl_new_std(hdl, &sd_ctrl_ops, in sd_init_controls_72a() 852 v4l2_ctrl_cluster(2, &sd->contrast); in sd_init_controls_72a()
|
| D | sonixj.c | 40 struct v4l2_ctrl *contrast; member 1635 sd->contrast = v4l2_ctrl_new_std(hdl, &sd_ctrl_ops, in sd_init_controls() 1855 u8 contrast[6]; in setcontrast() local 1857 k2 = sd->contrast->val * 37 / (CONTRAST_MAX + 1) in setcontrast() 1859 contrast[0] = (k2 + 1) / 2; /* red */ in setcontrast() 1860 contrast[1] = 0; in setcontrast() 1861 contrast[2] = k2; /* green */ in setcontrast() 1862 contrast[3] = 0; in setcontrast() 1863 contrast[4] = k2 / 5; /* blue */ in setcontrast() 1864 contrast[5] = 0; in setcontrast() [all …]
|
| D | pac7302.c | 118 struct v4l2_ctrl *contrast; member 399 v -= delta[i] * sd->contrast->val / (s32)sd->contrast->maximum; in setbrightcont() 655 sd->contrast = v4l2_ctrl_new_std(hdl, &sd_ctrl_ops, in sd_init_controls()
|
| D | pac7311.c | 79 struct v4l2_ctrl *contrast; member 422 sd->contrast = v4l2_ctrl_new_std(hdl, &sd_ctrl_ops, in sd_init_controls() 453 setcontrast(gspca_dev, v4l2_ctrl_g_ctrl(sd->contrast)); in sd_start()
|
| D | t613.c | 475 static void setcontrast(struct gspca_dev *gspca_dev, s32 contrast) in setcontrast() argument 479 if (contrast < 7) in setcontrast() 480 reg_to_write = 0x8ea9 - contrast * 0x200; in setcontrast() 482 reg_to_write = 0x00a9 + (contrast - 7) * 0x200; in setcontrast()
|
| D | conex.c | 40 struct v4l2_ctrl *contrast; member 897 setcontrast(gspca_dev, sd->contrast->cur.val, ctrl->val); in sd_s_ctrl() 916 sd->contrast = v4l2_ctrl_new_std(hdl, &sd_ctrl_ops, in sd_init_controls()
|
| D | sn9c20x.c | 74 struct v4l2_ctrl *contrast; member 1295 s32 brightness, s32 contrast, s32 satur, s32 hue) in set_cmatrix() argument 1301 cmatrix[2] = (contrast * 0x25 / 0x100) + 0x26; in set_cmatrix() 1674 sd->contrast->val, sd->saturation->val, sd->hue->val); in sd_s_ctrl() 1723 sd->contrast = v4l2_ctrl_new_std(hdl, &sd_ctrl_ops, in sd_init_controls() 2033 v4l2_ctrl_g_ctrl(sd->contrast), in sd_start()
|
| D | ov534.c | 67 struct v4l2_ctrl *contrast; member 1210 sd->contrast = v4l2_ctrl_new_std(hdl, &ov534_ctrl_ops, in sd_init_controls() 1365 setcontrast(gspca_dev, v4l2_ctrl_g_ctrl(sd->contrast)); in sd_start()
|
| D | zc3xx.c | 45 struct v4l2_ctrl *contrast; member 5729 s32 gamma, s32 brightness, s32 contrast) in setcontrast() argument 5757 contrast -= 128; /* -128 / 127 */ in setcontrast() 5763 - delta_c[i] * contrast / 256 - adj / 2; in setcontrast() 5769 if (contrast > 0) in setcontrast() 5771 else if (contrast < 0) in setcontrast() 6382 sd->brightness->val, sd->contrast->val); in zcxx_s_ctrl() 6438 sd->contrast = v4l2_ctrl_new_std(hdl, &zcxx_ctrl_ops, in sd_init_controls() 6773 v4l2_ctrl_g_ctrl(sd->contrast)); in sd_start()
|
| D | spca501.c | 36 unsigned short contrast; member
|
| D | cpia1.c | 273 u8 contrast; member 520 sd->params.colourParams.contrast = gspca_dev->usb_buf[1]; in do_command() 633 params->colourParams.contrast = CONTRAST_DEF; in reset_camera_params() 813 sd->params.colourParams.contrast, in command_setcolourparams() 1773 sd->params.colourParams.contrast = ctrl->val; in sd_s_ctrl()
|
| /linux-4.4.14/drivers/media/platform/vivid/ |
| D | vivid-tpg.h | 119 u8 contrast; member 268 u8 contrast) in tpg_s_contrast() argument 270 if (tpg->contrast == contrast) in tpg_s_contrast() 272 tpg->contrast = contrast; in tpg_s_contrast()
|
| D | vivid-tpg.c | 107 tpg->contrast = 128; in tpg_init() 775 if (tpg->brightness != 128 || tpg->contrast != 128 || in precalculate_color() 785 y = (16 << 4) + ((y - (16 << 4)) * tpg->contrast) / 128; in precalculate_color() 793 cb = (128 << 4) + (tmp_cb * tpg->contrast * tpg->saturation) / (128 * 128); in precalculate_color() 794 cr = (128 << 4) + (tmp_cr * tpg->contrast * tpg->saturation) / (128 * 128); in precalculate_color() 1443 enum tpg_color contrast; in tpg_precalculate_line() local 1451 contrast = TPG_COLOR_100_RED; in tpg_precalculate_line() 1454 contrast = TPG_COLOR_CSC_GREEN; in tpg_precalculate_line() 1457 contrast = TPG_COLOR_100_GREEN; in tpg_precalculate_line() 1523 gen_twopix(tpg, pix, contrast, 0); in tpg_precalculate_line() [all …]
|
| D | vivid-core.h | 197 struct v4l2_ctrl *contrast; member
|
| D | vivid-kthread-cap.c | 518 dev->contrast->cur.val, in vivid_fillbuff()
|
| D | vivid-ctrls.c | 1365 dev->contrast = v4l2_ctrl_new_std(hdl_user_vid, &vivid_user_vid_ctrl_ops, in vivid_create_controls()
|
| /linux-4.4.14/drivers/hid/ |
| D | hid-picolcd_lcd.c | 36 static int picolcd_set_contrast(struct lcd_device *ldev, int contrast) in picolcd_set_contrast() argument 45 data->lcd_contrast = contrast & 0x0ff; in picolcd_set_contrast()
|
| D | Kconfig | 638 Provide access to PicoLCD's LCD contrast via lcd class.
|
| /linux-4.4.14/drivers/gpu/drm/armada/ |
| D | armada_overlay.c | 27 uint16_t contrast; member 57 writel_relaxed(prop->brightness << 16 | prop->contrast, in armada_ovl_update_attr() 349 dplane->prop.contrast = val; in armada_ovl_plane_set_property() 474 dplane->prop.contrast = 0x4000; in armada_overlay_plane_create() 492 dplane->prop.contrast); in armada_overlay_plane_create()
|
| /linux-4.4.14/arch/arm/boot/dts/ |
| D | nspire.dtsi | 187 contrast: contrast@900F0000 { label
|
| /linux-4.4.14/include/linux/ |
| D | lcd.h | 58 int (*set_contrast)(struct lcd_device *, int contrast);
|
| /linux-4.4.14/drivers/media/pci/cx25821/ |
| D | cx25821-medusa-video.c | 586 int medusa_set_contrast(struct cx25821_dev *dev, int contrast, int decoder) in medusa_set_contrast() argument 592 if ((contrast > VIDEO_PROCAMP_MAX) || (contrast < VIDEO_PROCAMP_MIN)) { in medusa_set_contrast() 596 ret_val = mapM(VIDEO_PROCAMP_MIN, VIDEO_PROCAMP_MAX, contrast, in medusa_set_contrast()
|
| D | cx25821.h | 404 extern int medusa_set_contrast(struct cx25821_dev *dev, int contrast,
|
| /linux-4.4.14/drivers/gpu/drm/i2c/ |
| D | ch7006_mode.c | 335 int flicker, contrast, hpos, vpos; in ch7006_setup_properties() local 343 contrast = interpolate(0, 5, 7, priv->contrast); in ch7006_setup_properties() 344 regs[CH7006_CONTRAST] = bitf(CH7006_CONTRAST_0, contrast); in ch7006_setup_properties()
|
| D | ch7006_drv.c | 270 priv->contrast); in ch7006_encoder_create_resources() 332 priv->contrast = val; in ch7006_encoder_set_property() 461 priv->contrast = 50; in ch7006_encoder_init()
|
| D | ch7006_priv.h | 94 int contrast; member
|
| /linux-4.4.14/drivers/gpu/drm/i915/ |
| D | intel_overlay.c | 180 u32 brightness, contrast, saturation; member 1235 iowrite32((overlay->contrast << 18) | (overlay->brightness & 0xff), in update_reg_attrs() 1306 attrs->contrast = overlay->contrast; in intel_overlay_attrs() 1320 if (attrs->contrast > 255) in intel_overlay_attrs() 1327 overlay->contrast = attrs->contrast; in intel_overlay_attrs() 1427 overlay->contrast = 75; in intel_setup_overlay()
|
| D | intel_sdvo_regs.h | 600 unsigned int contrast:1; member
|
| D | intel_sdvo.c | 177 struct drm_property *contrast; member 2145 CHECK_PROPERTY(contrast, CONTRAST) in intel_sdvo_set_property() 2833 ENHANCEMENT(contrast, CONTRAST); in intel_sdvo_create_enhance_property_tv()
|
| /linux-4.4.14/drivers/media/platform/omap3isp/ |
| D | isppreview.h | 96 u8 contrast; member
|
| D | isppreview.c | 612 params->contrast << ISPPRV_CNT_BRT_CNT_SHIFT); in preview_config_contrast() 636 preview_update_contrast(struct isp_prev_device *prev, u8 contrast) in preview_update_contrast() argument 645 if (params->contrast != (contrast * ISPPRV_CONTRAST_UNITS)) { in preview_update_contrast() 646 params->contrast = contrast * ISPPRV_CONTRAST_UNITS; in preview_update_contrast() 1316 params->contrast = ISPPRV_CONTRAST_DEF * ISPPRV_CONTRAST_UNITS; in preview_init_params()
|
| /linux-4.4.14/drivers/staging/media/davinci_vpfe/ |
| D | dm365_ipipe.h | 70 unsigned char contrast; member
|
| D | dm365_ipipe_hw.c | 829 val = lum_adj->contrast << LUM_ADJ_CONTR_SHIFT | in ipipe_set_lum_adj_regs()
|
| D | dm365_ipipe.c | 1615 lum_adj->contrast = ctrl->val; in ipipe_s_ctrl()
|
| /linux-4.4.14/drivers/media/platform/exynos4-is/ |
| D | fimc-isp.h | 80 struct v4l2_ctrl *contrast; member
|
| D | fimc-is-param.c | 375 isp->adjust.contrast = val; in __is_set_isp_adjust() 393 isp->adjust.contrast = 0; in __is_set_isp_adjust()
|
| D | fimc-is-param.h | 576 s32 contrast; member
|
| D | fimc-isp.c | 722 ctrls->contrast = v4l2_ctrl_new_std(handler, ops, V4L2_CID_CONTRAST, in fimc_isp_subdev_create()
|
| /linux-4.4.14/Documentation/devicetree/bindings/display/imx/ |
| D | fsl,imx-fb.txt | 22 default value for the contrast control register.
|
| /linux-4.4.14/drivers/media/usb/hdpvr/ |
| D | hdpvr-core.c | 151 dev->options.contrast = 0x40; in device_authorization() 264 .contrast = 0x80,
|
| D | hdpvr.h | 60 u8 contrast; member
|
| D | hdpvr-control.c | 175 hdpvr_config_call(dev, CTRL_CONTRAST, dev->options.contrast); in hdpvr_set_options()
|
| D | hdpvr-video.c | 906 dev->options.contrast = ctrl->val; in hdpvr_s_ctrl()
|
| /linux-4.4.14/drivers/media/pci/meye/ |
| D | meye.h | 317 u16 contrast; member
|
| D | meye.c | 1083 meye.contrast = ctrl->val << 10; in meye_s_ctrl()
|
| /linux-4.4.14/drivers/media/usb/pvrusb2/ |
| D | pvrusb2-hdw-internal.h | 366 VCREATE_DATA(contrast);
|
| D | pvrusb2-hdw.c | 982 VCREATE_FUNCS(contrast) 1013 DEFREF(contrast), 2921 PVR2_SUBDEV_SET_CONTROL(hdw, V4L2_CID_CONTRAST, contrast); in pvr2_subdev_update()
|
| /linux-4.4.14/drivers/media/usb/go7007/ |
| D | s2250-board.c | 125 int contrast; member 552 state->contrast = 50; in s2250_probe()
|
| /linux-4.4.14/drivers/video/fbdev/matrox/ |
| D | matroxfb_g450.c | 43 }, offsetof(struct matrox_fb_info, altout.tvo_params.contrast) }, 135 const int c = minfo->altout.tvo_params.contrast; in g450_compute_bwlevel()
|
| D | matroxfb_maven.c | 77 }, offsetof(struct matrox_fb_info, altout.tvo_params.contrast) }, 360 const int c = md->primary_head->altout.tvo_params.contrast; in maven_compute_bwlevel()
|
| D | matroxfb_base.h | 373 int brightness, contrast, saturation, hue, gamma; member
|
| /linux-4.4.14/drivers/media/i2c/s5c73m3/ |
| D | s5c73m3.h | 352 struct v4l2_ctrl *contrast; member
|
| D | s5c73m3-ctrls.c | 512 ctrls->contrast = v4l2_ctrl_new_std(hdl, ops, in s5c73m3_init_controls()
|
| /linux-4.4.14/drivers/media/usb/pwc/ |
| D | pwc.h | 299 struct v4l2_ctrl *contrast; member
|
| D | pwc-v4l.c | 183 pdev->contrast = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops, in pwc_init_controls()
|
| /linux-4.4.14/drivers/media/pci/bt8xx/ |
| D | bttvp.h | 434 int hue, contrast, bright, saturation; member
|
| D | bttv-driver.c | 937 btv->contrast = cont; in bt848_contrast()
|
| /linux-4.4.14/drivers/media/usb/cpia2/ |
| D | cpia2.h | 282 u8 contrast; /* Note: this is CPIA2_VP_YRANGE */ member
|
| /linux-4.4.14/drivers/gpu/drm/gma500/ |
| D | psb_intel_sdvo_regs.h | 595 unsigned int contrast:1; member
|
| D | psb_intel_sdvo.c | 162 struct drm_property *contrast; member 1775 CHECK_PROPERTY(contrast, CONTRAST) in psb_intel_sdvo_set_property() 2397 ENHANCEMENT(contrast, CONTRAST); in psb_intel_sdvo_create_enhance_property_tv()
|
| /linux-4.4.14/Documentation/PCI/ |
| D | MSI-HOWTO.txt | 194 By contrast with pci_enable_msi_range() function, pci_enable_msi_exact() 270 This function, in contrast with pci_enable_msi_range(), does not adjust 389 By contrast with pci_enable_msix_range() function, pci_enable_msix_exact() 489 In contrast, MSI is restricted to a maximum of 32 interrupts (and
|
| D | pci-error-recovery.txt | 58 from/reconnection to their underlying block device. By contrast,
|
| /linux-4.4.14/Documentation/video4linux/ |
| D | README.cpia2 | 27 - Adjust brightness, color, contrast while streaming.
|
| D | uvcvideo.txt | 40 brightness, contrast, etc.). However, reading or writing of such a V4L2 controls
|
| D | v4l2-controls.txt | 689 contrast = v4l2_find_ctrl(&ctrl_handler, V4L2_CID_CONTRAST);
|
| D | vivid.txt | 23 - Working brightness, contrast, saturation and hue controls
|
| /linux-4.4.14/Documentation/cgroups/ |
| D | freezer-subsystem.txt | 47 In contrast, the cgroup freezer uses the kernel freezer code to
|
| /linux-4.4.14/Documentation/ia64/ |
| D | fsys.txt | 32 In contrast, fsys-mode has the following special properties: 179 is in contrast to a regular interruption, which clears almost all
|
| /linux-4.4.14/drivers/video/fbdev/mmp/hw/ |
| D | mmp_ctrl.h | 585 #define CFG_CONTRAST(contrast) (contrast) argument
|
| /linux-4.4.14/Documentation/filesystems/ |
| D | ceph.txt | 21 In contrast to cluster filesystems like GFS, OCFS2, and GPFS that rely
|
| /linux-4.4.14/include/uapi/drm/ |
| D | i915_drm.h | 1020 __u32 contrast; member
|
| /linux-4.4.14/drivers/media/i2c/ |
| D | ks0127.c | 192 int contrast; member
|
| /linux-4.4.14/Documentation/laptops/ |
| D | sonypi.txt | 37 (brightness, contrast etc), and is used by the video4linux driver for the
|
| /linux-4.4.14/Documentation/ |
| D | iostats.txt | 44 By contrast, in 2.6 if you look at /sys/block/hda/stat, you'll
|
| D | stable_api_nonsense.txt | 117 This is in stark contrast to a number of closed source operating systems
|
| D | CodingStyle | 281 In contrast, if it says
|
| D | memory-barriers.txt | 685 In contrast, without explicit memory barriers, two-legged-if control 2025 In contrast, if a wakeup does occur, CPU 2's load from X would be guaranteed
|
| /linux-4.4.14/Documentation/hid/ |
| D | hiddev.txt | 138 in order to selectively update the usage structures (in contrast to
|
| /linux-4.4.14/Documentation/isdn/ |
| D | README.concap | 33 In contrast, LAN network interfaces always used a single encapsulation
|
| /linux-4.4.14/Documentation/sound/alsa/ |
| D | compress_offload.txt | 44 contrast, compressed data comes in a variety of formats. Audio DSPs
|
| /linux-4.4.14/Documentation/RCU/ |
| D | whatisRCU.txt | 87 synchronization at all. In contrast, in more conventional lock-based 91 and must therefore exclude readers. In contrast, RCU-based updaters 1014 short of memory). In contrast, if blocking waiting
|
| D | checklist.txt | 236 primitive will correspondingly delay updates. In contrast,
|
| D | trace.txt | 362 are blocked. In contrast, "GE>T" indicates maximal
|
| D | RTFP.txt | 31 (In contrast, implementation of RCU is permitted only in software licensed
|
| /linux-4.4.14/Documentation/power/ |
| D | devices.txt | 168 matter, and the kernel is responsible for keeping track of it. By contrast, 321 registered at will. (By contrast, devices may be unregistered at any 646 In contrast, integrated system-on-chip processors often use IRQs as the
|
| /linux-4.4.14/Documentation/networking/ |
| D | rds.txt | 17 cluster - so in a cluster with N processes you need N sockets, in contrast
|
| D | LICENSE.qlcnic | 22 freedom to share and change it. By contrast, the GNU General Public
|
| D | LICENSE.qlge | 22 freedom to share and change it. By contrast, the GNU General Public
|
| D | timestamping.txt | 372 changed and ERANGE shall be returned (in contrast to EINVAL, which
|
| D | ppp_generic.txt | 272 across the individual links (if multilink is in use). In contrast, a
|
| D | can.txt | 159 upon the Linux network layer. In contrast to the commonly known 455 contrast to CAN controller hardware filters the user may set 0 .. n
|
| /linux-4.4.14/Documentation/locking/ |
| D | lockdep-design.txt | 254 In contrast, a loop that called spin_lock_init() on each lock
|
| D | ww-mutex-design.txt | 52 W/w class: In contrast to normal mutexes the lock class needs to be explicit for
|
| /linux-4.4.14/Documentation/trace/ |
| D | ftrace-design.txt | 118 consistent across the architecture ports -- easier to compare & contrast
|
| /linux-4.4.14/drivers/media/usb/s2255/ |
| D | s2255drv.c | 152 u32 contrast; /* contrast */ member 1243 mode.contrast = ctrl->val; in s2255_s_ctrl()
|
| /linux-4.4.14/Documentation/powerpc/ |
| D | eeh-pci-error-recovery.txt | 20 This is in contrast to traditional PCI error handling, where the
|
| /linux-4.4.14/Documentation/scsi/ |
| D | LICENSE.qla4xxx | 23 freedom to share and change it. By contrast, the GNU General Public
|
| D | LICENSE.qla2xxx | 24 freedom to share and change it. By contrast, the GNU General Public
|
| /linux-4.4.14/drivers/media/usb/usbvision/ |
| D | usbvision-video.c | 216 static DEVICE_ATTR(contrast, S_IRUGO, show_contrast, NULL);
|
| /linux-4.4.14/drivers/staging/rtl8192u/ |
| D | copying | 12 freedom to share and change it. By contrast, the GNU General Public
|
| /linux-4.4.14/tools/usb/usbip/ |
| D | COPYING | 12 freedom to share and change it. By contrast, the GNU General Public
|
| /linux-4.4.14/drivers/staging/rtl8192e/ |
| D | license | 19 share and change it. By contrast, the GNU General Public License is intended
|
| /linux-4.4.14/ |
| D | COPYING | 28 freedom to share and change it. By contrast, the GNU General Public
|
| /linux-4.4.14/Documentation/nvdimm/ |
| D | nvdimm.txt | 138 of DPA to the PMEM range. In contrast ND_NAMESPACE_IO ranges, once
|
| /linux-4.4.14/Documentation/gpio/ |
| D | gpio-legacy.txt | 99 to the relevant schematics. In contrast, drivers should only use GPIO
|
| /linux-4.4.14/Documentation/virtual/uml/ |
| D | UserModeLinux-HOWTO.txt | 749 This allows the device to be opened, in contrast to 'none', but 1655 with the host networking. In contrast to the ethertap interface, 2913 tual machine. In contrast, using strace as described above will show
|