| /linux/Documentation/sphinx-static/ |
| H A D | custom.css | 23 margin: 20px 10px 0 10px; 30 margin-bottom: 20px; 40 dl.function, dl.struct, dl.enum { margin-top: 2em; background-color: #ecf0f3; } 42 dl.function dt { margin-left: 10em; text-indent: -10em; } 44 div.kernelindent { margin-left: 2em; margin-right: 4em; } 50 dl.py { margin-top: 2em; background-color: #ecf0f3; } 51 dl.py.class { margin-left: 2em; text-indent: -2em; padding-left: 2em; } 52 dl.py.method, dl.py.attribute { margin-left: 2em; text-indent: -2em; } 60 margin-left: 1em; } 64 margin-left: 1em; [all …]
|
| H A D | theme_overrides.css | 101 /* fix bottom margin of lists items */ 104 margin-bottom: 12px;
|
| /linux/drivers/watchdog/ |
| H A D | sbc_fitpc2_wdt.c | 28 static unsigned int margin = 60; /* (secs) Default is 1 minute */ variable 55 wdt_send_data(REBOOT_COMMAND, margin); in wdt_enable() 153 margin = time; in fitpc2_wdt_ioctl() 158 ret = put_user(margin, (int __user *)arg); in fitpc2_wdt_ioctl() 220 if (margin < 31 || margin > 255) { in fitpc2_wdt_init() 222 margin); in fitpc2_wdt_init() 257 module_param(margin, int, 0); 258 MODULE_PARM_DESC(margin, "Watchdog margin in seconds (default 60s)");
|
| H A D | scx200_wdt.c | 38 static int margin = 60; /* in seconds */ variable 39 module_param(margin, int, 0); 40 MODULE_PARM_DESC(margin, "Watchdog margin in seconds"); 67 pr_info("timer margin %d seconds\n", margin); in scx200_wdt_update_margin() 68 wdto_restart = margin * W_SCALE; in scx200_wdt_update_margin() 186 margin = new_margin; in scx200_wdt_ioctl() 191 if (put_user(margin, p)) in scx200_wdt_ioctl()
|
| H A D | it8712f_wdt.c | 41 static int margin = 60; /* in seconds */ variable 42 module_param(margin, int, 0); 43 MODULE_PARM_DESC(margin, "Watchdog margin in seconds"); 151 int units = margin; in it8712f_wdt_update_margin() 295 margin = value; in it8712f_wdt_ioctl() 307 if (put_user(margin, p)) in it8712f_wdt_ioctl() 389 if (margin > (max_units * 60)) in it8712f_wdt_find() 390 margin = (max_units * 60); in it8712f_wdt_find()
|
| H A D | sa1100_wdt.c | 180 static int margin = 60; /* (secs) Default is 1 minute */ variable 215 pre_margin = oscr_freq * margin; in sa1100dog_probe() 220 margin); in sa1100dog_probe() 247 module_param(margin, int, 0); 248 MODULE_PARM_DESC(margin, "Watchdog margin in seconds (default 60s)");
|
| /linux/drivers/media/rc/ |
| H A D | rc-core-priv.h | 167 static inline bool geq_margin(unsigned d1, unsigned d2, unsigned margin) in geq_margin() argument 169 return d1 > (d2 - margin); in geq_margin() 172 static inline bool eq_margin(unsigned d1, unsigned d2, unsigned margin) in eq_margin() argument 174 return ((d1 > (d2 - margin)) && (d1 < (d2 + margin))); in eq_margin()
|
| /linux/Documentation/watchdog/ |
| H A D | watchdog-parameters.rst | 73 margin: 74 Watchdog margin in seconds (default=60) 118 margin: 119 Watchdog margin in seconds (default 60s) 252 margin: 253 Watchdog margin in seconds (default 60) 454 margin: 455 Watchdog margin in seconds (default 60s) 503 margin: 504 Watchdog margin in seconds (default 60s) [all …]
|
| /linux/drivers/staging/media/atomisp/pci/isp/kernels/sdis/common/ |
| H A D | ia_css_sdis_common.host.h | 58 s32 margin[DVS2_PROJ_MARGIN]; member 65 s32 margin[DVS2_PROJ_MARGIN]; member
|
| /linux/Documentation/gpu/ |
| H A D | kms-properties.csv | 7 ,,“left margin”,RANGE,"Min=0, Max=100",Connector,TBD 8 ,,“right margin”,RANGE,"Min=0, Max=100",Connector,TBD 9 ,,“top margin”,RANGE,"Min=0, Max=100",Connector,TBD 10 ,,“bottom margin”,RANGE,"Min=0, Max=100",Connector,TBD
|
| /linux/drivers/video/console/ |
| H A D | vgacon.c | 144 int margin = c->vc_size_row * 4; in vgacon_scrolldelta() local 154 if (vga_rolled_over > scr_end + margin) { in vgacon_scrolldelta() 166 if (avail < 2 * margin) in vgacon_scrolldelta() 167 margin = 0; in vgacon_scrolldelta() 168 if (from_off < margin) in vgacon_scrolldelta() 170 if (from_off > avail - margin) in vgacon_scrolldelta()
|
| /linux/Documentation/fb/ |
| H A D | framebuffer.rst | 213 the sum of the left margin, the right margin and the hsync length, while the 214 vertical retrace time is the sum of the upper margin, the lower margin and the 227 | margin # | xres # margin | len |
|
| H A D | sh7760fb.rst | 70 * values but right/left/upper/lower margin values. The comments
|
| /linux/drivers/gpu/drm/i915/display/ |
| H A D | intel_ddi_buf_trans.h | 21 u8 margin; /* swing value */ member
|
| /linux/drivers/gpu/drm/ |
| H A D | drm_modes.c | 2170 unsigned int deg, margin, rotation = 0; in drm_mode_parse_cmdline_options() local 2212 if (drm_mode_parse_cmdline_int(delim, &margin)) in drm_mode_parse_cmdline_options() 2215 mode->tv_margins.right = margin; in drm_mode_parse_cmdline_options() 2217 if (drm_mode_parse_cmdline_int(delim, &margin)) in drm_mode_parse_cmdline_options() 2220 mode->tv_margins.left = margin; in drm_mode_parse_cmdline_options() 2222 if (drm_mode_parse_cmdline_int(delim, &margin)) in drm_mode_parse_cmdline_options() 2225 mode->tv_margins.top = margin; in drm_mode_parse_cmdline_options() 2227 if (drm_mode_parse_cmdline_int(delim, &margin)) in drm_mode_parse_cmdline_options() 2230 mode->tv_margins.bottom = margin; in drm_mode_parse_cmdline_options()
|
| /linux/drivers/net/wireless/mediatek/mt76/ |
| H A D | mt76x02_dfs.c | 183 static int mt76x02_dfs_get_multiple(int val, int frac, int margin) in mt76x02_dfs_get_multiple() argument 190 if (abs(val - frac) <= margin) in mt76x02_dfs_get_multiple() 196 if (remainder > margin) { in mt76x02_dfs_get_multiple() 197 if ((frac - remainder) <= margin) in mt76x02_dfs_get_multiple()
|
| /linux/drivers/net/ethernet/ti/icssg/ |
| H A D | icssg_config.h | 235 u32 margin; member
|
| /linux/drivers/video/backlight/ |
| H A D | pwm_bl.c | 383 unsigned int margin = (max_val - min_val) / 20; /* 5% */ in pwm_backlight_is_linear() local 390 if (delta > margin) in pwm_backlight_is_linear()
|
| /linux/lib/zstd/decompress/ |
| H A D | zstd_decompress.c | 814 size_t margin = 0; in ZSTD_decompressionMargin() local 830 margin += zfh.headerSize; in ZSTD_decompressionMargin() 832 margin += zfh.checksumFlag ? 4 : 0; in ZSTD_decompressionMargin() 834 margin += 3 * frameSizeInfo.nbBlocks; in ZSTD_decompressionMargin() 841 margin += compressedSize; in ZSTD_decompressionMargin() 850 margin += maxBlockSize; in ZSTD_decompressionMargin() 852 return margin; in ZSTD_decompressionMargin()
|
| /linux/Documentation/driver-api/mmc/ |
| H A D | mmc-dev-attrs.rst | 66 useful. Because the erase timeout contains a margin
|
| /linux/Documentation/hwmon/ |
| H A D | w83793.rst | 89 predefined value, within a tolerance margin. So if tempX_input >
|
| /linux/mm/ |
| H A D | memcontrol.c | 1327 unsigned long margin = 0; in mem_cgroup_margin() local 1334 margin = limit - count; in mem_cgroup_margin() 1340 margin = min(margin, limit - count); in mem_cgroup_margin() 1342 margin = 0; in mem_cgroup_margin() 1345 return margin; in mem_cgroup_margin()
|
| /linux/Documentation/security/ |
| H A D | siphash.rst | 74 SipHash has a very high security margin, with its 128-bit key. So long as the
|
| /linux/arch/arm/boot/dts/st/ |
| H A D | stm32mp135f-dhcor-dhsbc.dts | 50 * Use arbitrary margin here (e.g. 5us).
|
| /linux/drivers/gpu/drm/amd/display/dc/dml2_0/dml21/src/dml2_dpmm/ |
| H A D | dml2_dpmm_dcn4.c | 205 static bool add_margin_and_round_to_dfs_grainularity(double clock_khz, double margin, unsigned long… in add_margin_and_round_to_dfs_grainularity() argument 232 clock_khz *= 1.0 + margin; in add_margin_and_round_to_dfs_grainularity()
|