/linux-4.1.27/drivers/staging/comedi/drivers/ |
D | usbduxfast.c | 340 long int steps, tmp; in usbduxfast_ai_cmdtest() local 389 steps = cmd->convert_arg * 30; in usbduxfast_ai_cmdtest() 390 if (steps < (min_sample_period * 1000)) in usbduxfast_ai_cmdtest() 391 steps = min_sample_period * 1000; in usbduxfast_ai_cmdtest() 393 if (steps > (MAX_SAMPLING_PERIOD * 1000)) in usbduxfast_ai_cmdtest() 394 steps = MAX_SAMPLING_PERIOD * 1000; in usbduxfast_ai_cmdtest() 397 tmp = steps / 30; in usbduxfast_ai_cmdtest() 466 long steps, steps_tmp; in usbduxfast_ai_cmd() local 505 steps = 0; in usbduxfast_ai_cmd() 507 steps = (cmd->convert_arg * 30) / 1000; in usbduxfast_ai_cmd() [all …]
|
/linux-4.1.27/drivers/media/usb/gspca/ |
D | autogain_functions.c | 36 int i, steps, retval = 0; in gspca_expo_autogain() local 46 steps = abs(desired_avg_lum - avg_lum) / deadzone; in gspca_expo_autogain() 49 avg_lum, desired_avg_lum, steps); in gspca_expo_autogain() 51 for (i = 0; i < steps; i++) { in gspca_expo_autogain() 116 int steps, retval = 0; in gspca_coarse_grained_expo_autogain() local 131 steps = (desired_avg_lum - avg_lum) / deadzone; in gspca_coarse_grained_expo_autogain() 134 avg_lum, desired_avg_lum, steps); in gspca_coarse_grained_expo_autogain() 136 if ((gain + steps) > gain_high && in gspca_coarse_grained_expo_autogain() 141 } else if ((gain + steps) < gain_low && in gspca_coarse_grained_expo_autogain() 147 gain += steps; in gspca_coarse_grained_expo_autogain()
|
/linux-4.1.27/drivers/cpufreq/ |
D | at32ap-cpufreq.c | 56 int retval, steps, i; in at32_cpufreq_driver_init() local 79 steps = fls(frequency / min_freq) + 1; in at32_cpufreq_driver_init() 80 freq_table = kzalloc(steps * sizeof(struct cpufreq_frequency_table), in at32_cpufreq_driver_init() 87 for (i = 0; i < (steps - 1); i++) { in at32_cpufreq_driver_init() 99 freq_table[steps - 1].frequency = CPUFREQ_TABLE_END; in at32_cpufreq_driver_init()
|
D | ls1x-cpufreq.c | 79 int steps, i, ret; in ls1x_cpufreq_init() local 83 steps = 1 << DIV_CPU_WIDTH; in ls1x_cpufreq_init() 84 freq_tbl = kzalloc(sizeof(*freq_tbl) * steps, GFP_KERNEL); in ls1x_cpufreq_init() 92 for (i = 0; i < (steps - 1); i++) { in ls1x_cpufreq_init()
|
/linux-4.1.27/Documentation/devicetree/bindings/input/ |
D | rotary-encoder.txt | 9 - rotary-encoder,steps: Number of steps in a full turnaround of the 14 device, hence no steps need to be passed. 16 greater than the specified steps or smaller than 0. For absolute axis only. 34 rotary-encoder,steps = <24>;
|
/linux-4.1.27/drivers/input/misc/ |
D | rotary_encoder.c | 72 pos += pdata->steps; in rotary_encoder_report_event() 77 if (pdata->rollover || pos < pdata->steps) in rotary_encoder_report_event() 82 pos %= pdata->steps; in rotary_encoder_report_event() 168 of_property_read_u32(np, "rotary-encoder,steps", &pdata->steps); in rotary_encoder_parse_dt() 234 pdata->axis, 0, pdata->steps, 0, 1); in rotary_encoder_probe()
|
/linux-4.1.27/drivers/mtd/nand/ |
D | lpc32xx_slc.c | 529 for (i = 0; i < chip->ecc.steps; i++) { in lpc32xx_xfer() 533 mtd->writesize / chip->ecc.steps, dir); in lpc32xx_xfer() 538 if (i == chip->ecc.steps - 1) in lpc32xx_xfer() 570 host->ecc_buf[chip->ecc.steps - 1] = in lpc32xx_xfer() 612 status = lpc32xx_xfer(mtd, buf, chip->ecc.steps, 1); in lpc32xx_nand_read_page_syndrome() 618 lpc32xx_slc_ecc_copy(tmpecc, (uint32_t *) host->ecc_buf, chip->ecc.steps); in lpc32xx_nand_read_page_syndrome() 623 for (i = 0; i < chip->ecc.steps; i++) { in lpc32xx_nand_read_page_syndrome() 651 chip->read_buf(mtd, buf, chip->ecc.size * chip->ecc.steps); in lpc32xx_nand_read_page_raw_syndrome() 670 error = lpc32xx_xfer(mtd, (uint8_t *)buf, chip->ecc.steps, 0); in lpc32xx_nand_write_page_syndrome() 678 lpc32xx_slc_ecc_copy(pb, (uint32_t *)host->ecc_buf, chip->ecc.steps); in lpc32xx_nand_write_page_syndrome() [all …]
|
D | nand_base.c | 1140 int steps, size; in nand_read_page_raw_syndrome() local 1142 for (steps = chip->ecc.steps; steps > 0; steps--) { in nand_read_page_raw_syndrome() 1180 int eccsteps = chip->ecc.steps; in nand_read_page_swecc() 1195 eccsteps = chip->ecc.steps; in nand_read_page_swecc() 1320 int eccsteps = chip->ecc.steps; in nand_read_page_hwecc() 1337 eccsteps = chip->ecc.steps; in nand_read_page_hwecc() 1373 int eccsteps = chip->ecc.steps; in nand_read_page_hwecc_oob_first() 1422 int eccsteps = chip->ecc.steps; in nand_read_page_syndrome() 1779 for (i = 0; i < chip->ecc.steps; i++) { in nand_read_oob_syndrome() 1834 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps; in nand_write_oob_syndrome() local [all …]
|
D | sunxi_nand.c | 545 for (i = 0; i < ecc->steps; i++) { in sunxi_nfc_hw_ecc_read_page() 591 cnt = ecc->layout->oobfree[ecc->steps].length; in sunxi_nfc_hw_ecc_read_page() 594 ecc->layout->oobfree[ecc->steps].offset; in sunxi_nfc_hw_ecc_read_page() 630 for (i = 0; i < ecc->steps; i++) { in sunxi_nfc_hw_ecc_write_page() 699 for (i = 0; i < ecc->steps; i++) { in sunxi_nfc_hw_syndrome_ecc_read_page() 766 for (i = 0; i < ecc->steps; i++) { in sunxi_nfc_hw_syndrome_ecc_write_page()
|
D | fsl_ifc_nand.c | 335 int sector = bufnum * chip->ecc.steps; in fsl_ifc_run_command() 336 int sector_end = sector + chip->ecc.steps - 1; in fsl_ifc_run_command() 805 chip->ecc.steps); in fsl_ifc_chip_init_tail()
|
D | atmel_nand.c | 868 for (i = 0; i < nand_chip->ecc.steps; i++) { in pmecc_correction() 923 int eccsize = chip->ecc.size * chip->ecc.steps; in atmel_nand_pmecc_read_page() 978 for (i = 0; i < chip->ecc.steps; i++) { in atmel_nand_pmecc_write_page() 1025 switch (nand_chip->ecc.steps) { in atmel_pmecc_core_init() 1254 nand_chip->ecc.steps = mtd->writesize / sector_size; in atmel_pmecc_nand_init_params() 1256 nand_chip->ecc.steps; in atmel_pmecc_nand_init_params()
|
D | omap2.c | 1079 nsectors = chip->ecc.steps; in omap_enable_hwecc_bch() 1099 nsectors = chip->ecc.steps; in omap_enable_hwecc_bch() 1112 nsectors = chip->ecc.steps; in omap_enable_hwecc_bch() 1340 int eccsteps = info->nand.ecc.steps; in omap_elm_correct_data()
|
D | fsl_elbc_nand.c | 656 chip->ecc.steps); in fsl_elbc_chip_init_tail()
|
D | fsmc_nand.c | 720 int eccsteps = chip->ecc.steps; in fsmc_read_page_hwecc()
|
/linux-4.1.27/drivers/input/keyboard/ |
D | lm8323.c | 456 int div512, perstep, steps, hz, up, kill; in lm8323_pwm_work() local 473 steps = abs(pwm->desired_brightness - pwm->brightness); in lm8323_pwm_work() 479 if ((pwm->fade_time / steps) > (32768 / 512)) { in lm8323_pwm_work() 487 perstep = (hz * pwm->fade_time) / (steps * 1000); in lm8323_pwm_work() 494 while (steps) { in lm8323_pwm_work() 497 s = min(126, steps); in lm8323_pwm_work() 499 steps -= s; in lm8323_pwm_work()
|
/linux-4.1.27/drivers/iio/adc/ |
D | ti_am335x_adc.c | 89 int i, steps = 0; in tiadc_step_config() local 111 tiadc_writel(adc_dev, REG_STEPCONFIG(steps), in tiadc_step_config() 113 tiadc_writel(adc_dev, REG_STEPDELAY(steps), in tiadc_step_config() 115 adc_dev->channel_step[i] = steps; in tiadc_step_config() 116 steps++; in tiadc_step_config()
|
/linux-4.1.27/drivers/media/dvb-frontends/ |
D | sp887x.c | 443 int steps = (sync0x200 >> 4) & 0x00f; in sp887x_read_status() local 444 if (steps & 0x008) in sp887x_read_status() 445 steps = -steps; in sp887x_read_status() 447 steps); in sp887x_read_status()
|
D | stv090x.c | 1604 s32 i, j, steps, dir; in stv090x_get_agc2_min_level() local 1627 steps = state->search_range / 1000000; in stv090x_get_agc2_min_level() 1628 if (steps <= 0) in stv090x_get_agc2_min_level() 1629 steps = 1; in stv090x_get_agc2_min_level() 1635 for (i = 0; i < steps; i++) { in stv090x_get_agc2_min_level() 1699 s32 tmg_cpt = 0, dir = 1, steps, cur_step = 0, freq; in stv090x_srate_srch_coarse() local 1761 steps = -1 + ((state->search_range / 1000) / car_step); in stv090x_srate_srch_coarse() 1762 steps /= 2; in stv090x_srate_srch_coarse() 1763 steps = (2 * steps) + 1; in stv090x_srate_srch_coarse() 1764 if (steps < 0) in stv090x_srate_srch_coarse() [all …]
|
D | stb0899_algo.c | 983 s32 steps, step_size; in stb0899_dvbs2_init_calc() local 1004 steps = (10 * range * (1 << 17)) / (step_size * (internal->srate / 1000000)); in stb0899_dvbs2_init_calc() 1005 steps = (steps + 6) / 10; in stb0899_dvbs2_init_calc() 1006 steps = (steps == 0) ? 1 : steps; in stb0899_dvbs2_init_calc() 1007 if (steps % 2 == 0) in stb0899_dvbs2_init_calc() 1017 STB0899_SETFIELD_VAL(NUM_STEPS, reg, steps); in stb0899_dvbs2_init_calc()
|
D | stv0900_sw.c | 70 s32 *steps, in stv0900_get_sw_loop_params() argument 131 *steps = max_steps; in stv0900_get_sw_loop_params()
|
D | dib0090.c | 1596 #define steps(u) (((u) > 15) ? ((u)-16) : (u)) macro 1743 if ((state->adc_diff & 0x8000) == (state->min_adc_diff & 0x8000) && steps(state->step) < 15) { in dib0090_dc_offset_calibration()
|
/linux-4.1.27/drivers/input/touchscreen/ |
D | ti_am335x_tsc.c | 477 u32 steps; in titsc_remove() local 482 steps = 2 * ts_dev->coordinate_readouts + 2; in titsc_remove() 483 steps = (1 << steps) - 1; in titsc_remove() 484 am335x_tsc_se_clr(ts_dev->mfd_tscadc, steps); in titsc_remove()
|
/linux-4.1.27/include/linux/ |
D | rotary_encoder.h | 5 unsigned int steps; member
|
/linux-4.1.27/Documentation/input/ |
D | rotary-encoder.txt | 81 steps the encoder has and can carry information about externally inverted 86 and the number of steps or will clamp at the maximum and zero depending on 103 .steps = 24,
|
D | gpio-tilt.txt | 31 one axis in 4 steps and emits the current tilt via two GPIOs.
|
/linux-4.1.27/Documentation/devicetree/bindings/input/touchscreen/ |
D | ti-tsc-adc.txt | 10 programmable steps each step is used to 16 of the 16 software steps available. The
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-bus-iio-proximity-as3935 | 6 Get the current distance in meters of storm (1km steps)
|
D | sysfs-bus-iio | 954 change in value. E.g. for steps: a step change event is 955 generated each time the user takes N steps, where N is set using 964 <type>[Y][_name]_roc[_rising|falling|]_en. E.g. for steps: 966 steps. 1247 E.g. for steps: the pedometer saves power while not used; 1248 when activated, it will count the steps taken by the user in 1255 This attribute is used to read the number of steps taken by the user 1271 Specifies the number of steps that must occur within 1273 consumer is making steps. 1279 Specifies number of seconds in which we compute the steps [all …]
|
D | sysfs-class-mtd | 182 step. Devices may have several equally sized ECC steps within
|
/linux-4.1.27/drivers/staging/iio/ |
D | iio_simple_dummy.c | 330 *val = st->steps; in iio_dummy_read_raw() 463 st->steps = val; in iio_dummy_write_raw() 560 st->steps = 47; in iio_dummy_init_device()
|
D | iio_simple_dummy.h | 43 int steps; member
|
/linux-4.1.27/arch/avr32/boards/favr-32/ |
D | Kconfig | 15 generate most other frequencies in power of 2 steps.
|
/linux-4.1.27/Documentation/devicetree/bindings/regulator/ |
D | ltc3589.txt | 21 0.3625 V to 0.75 V in 12.5 mV steps. The output voltage thus ranges between 26 and 3.2 V on LTC3589-1,2 in four steps. The ldo1 standby regulator can not
|
/linux-4.1.27/tools/net/ |
D | bpf_dbg.c | 1093 int steps, ret; in cmd_step() local 1098 steps = strtol(num, NULL, 10); in cmd_step() 1099 if (steps == 0 || strlen(num) == 0) in cmd_step() 1100 steps = 1; in cmd_step() 1101 if (steps < 0) { in cmd_step() 1102 if (!bpf_restore_regs(steps)) in cmd_step() 1104 steps = 1; in cmd_step() 1110 hdr->caplen, hdr->len, steps); in cmd_step()
|
/linux-4.1.27/Documentation/hwmon/ |
D | amc6821 | 65 0 degree C to 124 degree C in steps of 82 0 degree C to 124 degree C in steps
|
D | lm85 | 107 steps, but in initial testing of the ADM1027 it was 1.00 degC steps. Analog
|
D | smsc47b397 | 98 The desired configuration registers are accessed in two steps:
|
D | ds1621 | 49 Fahrenheit range of -67 to +257 degrees with 0.9 steps. If polarity
|
D | lm93 | 206 oscillation between two steps in the offsets table. These values are found in 235 steps. The duration of each step is configurable. There are two files, with
|
D | f71805f | 63 you can only set the limits in steps of 32 mV (before scaling).
|
D | w83627ehf | 139 There are defined steps and times, but not exported by the driver yet.
|
/linux-4.1.27/Documentation/ |
D | dcdbas.txt | 34 Systems management software must perform the following steps to execute 60 Dell OpenManage performs the following steps to execute a power cycle or
|
D | dell_rbu.txt | 72 Do the steps below to download the BIOS image. 84 If a user by accident executes steps 1 and 3 above without executing step 2;
|
D | gdb-kernel-debugging.txt | 8 kernel debugging steps. This is a short tutorial about how to enable and use
|
D | parport.txt | 228 If you are having problems printing, please go through these steps to
|
D | kmemleak.txt | 85 The scanning algorithm steps:
|
D | dma-buf-sharing.txt | 35 The dma_buf buffer sharing API usage contains the following steps: 244 Access to a dma_buf from the kernel context involves three steps:
|
D | this_cpu_ops.txt | 131 processor. this_cpu_ptr avoids multiple steps that the common
|
D | initrd.txt | 200 The procedure involves the following steps:
|
D | CodingStyle | 511 (steps (floor offset c-basic-offset))) 512 (* (max steps 1)
|
D | applying-patches.txt | 201 do the additional steps since interdiff can get things wrong in some cases.
|
D | HOWTO | 132 please follow the steps in this document to help notify the kernel
|
D | kernel-docs.txt | 465 the kernel networking implementation and understand all steps
|
D | kmemcheck.txt | 707 please drop us a note privately! Kernel configs and steps to reproduce (if
|
D | kprobes.txt | 68 Next, Kprobes single-steps its copy of the probed instruction.
|
D | SubmittingPatches | 21 Many of these steps describe the default behavior of the git version
|
D | memory-barriers.txt | 2308 and if any of these steps occur out of order, then the whole thing may
|
/linux-4.1.27/drivers/staging/iio/Documentation/ |
D | sysfs-bus-iio-impedance-analyzer-ad5933 | 18 Number of frequency points (steps) in the frequency sweep.
|
D | ring.txt | 17 These are used to perform device specific steps on either side
|
/linux-4.1.27/drivers/staging/mt29f_spinand/ |
D | mt29f_spinand.c | 619 int eccsteps = chip->ecc.steps; in spinand_write_page_hwecc() 633 int eccsteps = chip->ecc.steps; in spinand_read_page_hwecc() 886 chip->ecc.steps = 0x4; in spinand_probe() 889 chip->ecc.total = chip->ecc.steps * chip->ecc.bytes; in spinand_probe()
|
/linux-4.1.27/include/linux/crush/ |
D | crush.h | 79 struct crush_rule_step steps[0]; member
|
/linux-4.1.27/Documentation/devicetree/bindings/sound/ |
D | sgtl5000.txt | 17 The voltage can take values from 1.25V to 3V by 250mV steps
|
/linux-4.1.27/arch/cris/boot/compressed/ |
D | README | 4 This can be slightly confusing because it's a process with many steps.
|
/linux-4.1.27/Documentation/devicetree/ |
D | dynamic-resolution-notes.txt | 15 In sequence the resolver works by the following steps:
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | rpc-server-gss.txt | 85 steps. 88 locking into the legacy mechanisms, the above steps must be performed
|
D | nfs.txt | 73 /var/lib/nfs/rpc_pipefs, the upcall consists of the following steps:
|
D | nfs-rdma.txt | 152 Therefore, if you have followed the steps above and turned no NFS and RDMA,
|
/linux-4.1.27/Documentation/arm/sunxi/ |
D | clocks.txt | 12 steps, one can gate it and keep the system running. Consider this
|
/linux-4.1.27/drivers/staging/media/davinci_vpfe/ |
D | TODO | 28 files are present in staging itself, to build for dm365 follow below steps,
|
/linux-4.1.27/Documentation/filesystems/ |
D | automount-support.txt | 20 (2) Have the follow_link() op do the following steps: 66 To do expiration, you need to follow these steps:
|
D | exofs.txt | 48 for example script that does all these steps. 83 do-exofs start - an example of how to perform the above steps.
|
D | xfs-delayed-logging-design.txt | 725 Essentially, steps 1-6 operate independently from step 7, which is also 726 independent of steps 8-9. An item can be locked in steps 1-6 or steps 8-9 727 at the same time step 7 is occurring, but only steps 1-6 or 8-9 can occur 728 at the same time. If the log item is in the AIL or between steps 6 and 7 729 and steps 1-6 are re-entered, then the item is relogged. Only when steps 8-9 732 With delayed logging, there are new steps inserted into the life cycle:
|
/linux-4.1.27/Documentation/cgroups/ |
D | hugetlb.txt | 25 The above steps create a new group g1 and move the current shell
|
D | cpuacct.txt | 28 The above steps create a new group g1 and move the current shell
|
D | memcg_test.txt | 40 Memcg pages are charged in two steps:
|
D | unified-hierarchy.txt | 50 similar hierarchies repeating the same steps on each hierarchy
|
D | cgroups.txt | 309 the "cpuset" cgroup subsystem, the steps are something like:
|
D | cpusets.txt | 668 To start a new job that is to be contained within a cpuset, the steps are:
|
/linux-4.1.27/Documentation/s390/ |
D | 3270.txt | 61 In brief, these are the steps: 73 Here are the installation steps in detail: 124 should follow these steps: 130 Here are the testing steps in detail:
|
D | Debugging390.txt | 847 single steps a range of addresses but stays running & 1628 step: steps n lines of sourcecode 1629 step steps 1 line. 1630 step 100 steps 100 lines of code. 1634 stepi: steps a single machine code instruction. 1637 nexti: steps a single machine code instruction but will not step into 1755 2) if you have a debugging problem that takes a few steps to recreate 1756 put the steps into a file called .gdbinit in your current working directory
|
D | driver-model.txt | 65 This is done in several steps.
|
/linux-4.1.27/Documentation/xtensa/ |
D | mmu.txt | 24 TLB setup proceeds along the following steps.
|
/linux-4.1.27/arch/powerpc/platforms/powermac/ |
D | low_i2c.c | 492 u32 steps; in kw_i2c_host_init() local 520 steps = psteps ? (*psteps) : 0x10; in kw_i2c_host_init() 521 for (host->bsteps = 0; (steps & 0x01) == 0; host->bsteps++) in kw_i2c_host_init() 522 steps >>= 1; in kw_i2c_host_init()
|
/linux-4.1.27/Documentation/devicetree/bindings/net/ |
D | micrel-ksz90x1.txt | 15 steps.
|
/linux-4.1.27/Documentation/watchdog/ |
D | convert_drivers_to_kernel_api.txt | 8 This document shall guide you for this task. The necessary steps are described 122 code left from the above steps, it should be refactored into these callbacks.
|
/linux-4.1.27/arch/frv/kernel/ |
D | cmode.S | 98 # Set up addresses in regs for later steps.
|
/linux-4.1.27/Documentation/scsi/ |
D | bnx2fc.txt | 26 Here are the steps to configure:
|
D | cxgb3i.txt | 46 The following steps need to be taken to accelerates the open-iscsi initiator:
|
D | scsi_eh.txt | 432 SCSI midlayer. IOW, of the steps described in [2-1-2], all steps
|
D | LICENSE.qla4xxx | 50 We protect your rights with two steps: (1) copyright the software, and
|
D | LICENSE.qla2xxx | 51 We protect your rights with two steps: (1) copyright the software, and
|
D | ChangeLog.megaraid_sas | 403 duplication steps that helped to get to the root cause of the
|
D | tmscsim.txt | 33 and has been enhanced since then in various steps. In May 1998 support for
|
/linux-4.1.27/Documentation/video4linux/ |
D | sh_mobile_ceu_camera.txt | 121 Cropping is performed in the following 6 steps:
|
D | fimc.txt | 114 when the last configuration steps at the video node is performed.
|
D | videobuf | 318 the engine and enqueueing buffers are done in separate steps, it's possible
|
D | v4l2-framework.txt | 1067 This way no status information is lost, just the intermediate steps leading
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | r8a7790-lager.dts | 32 * amixer set "DVC Out Ramp Up Rate" "0.125 dB/64 steps" 33 * amixer set "DVC Out Ramp Down Rate" "0.125 dB/512 steps"
|
D | r8a7791-koelsch.dts | 33 * amixer set "DVC Out Ramp Up Rate" "0.125 dB/64 steps" 34 * amixer set "DVC Out Ramp Down Rate" "0.125 dB/512 steps"
|
/linux-4.1.27/arch/c6x/lib/ |
D | divremu.S | 44 ;; The loop performs a maximum of 28 steps, so we do the
|
D | divu.S | 56 ;; The loop performs a maximum of 28 steps, so we do the
|
/linux-4.1.27/Documentation/misc-devices/ |
D | apds990x.txt | 31 ALS contains 4 different gain steps. Driver automatically
|
/linux-4.1.27/arch/mn10300/mm/ |
D | cache-inv-by-tag.S | 240 # approx every N steps we re-enable the cache and see if there are any
|
/linux-4.1.27/drivers/block/drbd/ |
D | drbd_worker.c | 506 int steps; /* Number of time steps to plan ahead */ in drbd_rs_controller() local 514 steps = plan->size; /* (dc->c_plan_ahead * 10 * SLEEP_TIME) / HZ; */ in drbd_rs_controller() 517 want = ((dc->resync_rate * 2 * SLEEP_TIME) / HZ) * steps; in drbd_rs_controller() 526 cps = correction / steps; in drbd_rs_controller() 528 plan->total += cps * steps; in drbd_rs_controller()
|
/linux-4.1.27/Documentation/isdn/ |
D | README.sc | 183 A) 10 steps to the establishment of a basic HDLC connection 218 use the same procedure as in the HDLC connection from steps i) to 220 "encap" to syncppp. With this done, the rest of the steps, iv) to x)
|
D | README.icn | 18 2. A memory window with 16KB-256KB size, which can be setup in 16k steps
|
/linux-4.1.27/Documentation/PCI/ |
D | pci-error-recovery.txt | 28 Reporting and recovery is performed in several steps. First, when 73 and the actual recovery steps taken are platform dependent. The 111 The actual steps taken by a platform to recover from a PCI error 260 The actual steps taken by a platform to perform a slot reset
|
D | pci.txt | 55 the driver needs to take the follow steps: 238 As noted in the introduction, most PCI drivers need the following steps 419 steps need to be performed:
|
/linux-4.1.27/Documentation/sound/oss/ |
D | AudioExcelDSP16 | 75 Follow these steps:
|
D | mwave | 15 The steps, then:
|
/linux-4.1.27/Documentation/phy/ |
D | samsung-usb2.txt | 135 After completing these steps the support for the new SoC should be ready.
|
/linux-4.1.27/Documentation/usb/ |
D | rio.txt | 105 hardware (determined from the steps above), 'USB Diamond Rio500 support', and
|
D | gadget_configfs.txt | 167 All the above steps serve the purpose of composing the gadget of
|
D | usbmon.txt | 26 To collect a raw text trace, execute following steps.
|
D | power-management.txt | 634 implementation takes steps to prevent this:
|
/linux-4.1.27/Documentation/frv/ |
D | atomic-ops.txt | 52 steps (1) and (4) will set CC3 to the Undefined, thus aborting the store in (4a), and causing the
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | rv770_dpm.c | 1236 u32 steps = 0; in rv770_construct_vddc_table() local 1244 steps = (max - min) / step + 1; in rv770_construct_vddc_table() 1246 if (steps > MAX_NO_VREG_STEPS) in rv770_construct_vddc_table() 1249 for (i = 0; i < steps; i++) { in rv770_construct_vddc_table() 1270 pi->valid_vddc_entries = (u8)steps; in rv770_construct_vddc_table()
|
/linux-4.1.27/Documentation/power/ |
D | states.txt | 65 into the self-refresh mode to retain its contents. All of the steps carried out
|
D | basic-pm-debugging.txt | 227 the failure number. Others are the failure number of different steps of suspend
|
D | devices.txt | 372 runtime PM may already have performed some or all of these steps.) 557 to the image kernel. This is very similar to the initial steps involved in
|
/linux-4.1.27/Documentation/arm/OMAP/ |
D | omap_pm | 141 in these cases, the board file needs to do additional steps as follows:
|
/linux-4.1.27/Documentation/networking/ |
D | iphase.txt | 39 To install the ATM adapters in the system, follow the steps below.
|
D | dl2k.txt | 171 utility with a graphical user interface is provided to perform steps 2
|
D | eql.txt | 46 Here I describe the general steps of getting a kernel up and working
|
D | README.sb1000 | 50 To make the SB1000 card work, follow these steps:
|
D | decnet.txt | 144 - If the previous two steps are satisfied, and the Ethernet card is up,
|
D | filter.txt | 582 minimal performance overhead over two steps, that is, C -> eBPF -> native code. 833 can be determined in two steps: first step does depth-first-search to disallow 1007 The safety of the eBPF program is determined in two steps.
|
D | vortex.txt | 351 steps you should take:
|
D | LICENSE.qlge | 49 We protect your rights with two steps: (1) copyright the software, and
|
D | LICENSE.qlcnic | 49 We protect your rights with two steps: (1) copyright the software, and
|
D | z8530drv.txt | 35 To use the driver, 3 steps must be performed:
|
D | bonding.txt | 110 the following steps:
|
/linux-4.1.27/net/ceph/ |
D | osdmap.c | 327 r->steps[j].op = ceph_decode_32(p); in crush_decode() 328 r->steps[j].arg1 = ceph_decode_32(p); in crush_decode() 329 r->steps[j].arg2 = ceph_decode_32(p); in crush_decode()
|
/linux-4.1.27/Documentation/video4linux/cx2341x/ |
D | fw-decoder-api.txt | 96 Each call to this API steps the playback to the next unit defined below
|
D | fw-decoder-regs.txt | 260 shifted heavily to the right. Incrementing in steps of 0x004 will
|
/linux-4.1.27/crypto/ |
D | Kconfig | 1168 Keys are allowed to be from 0 to 256 bits in length, in steps 1188 Keys are allowed to be from 0 to 256 bits in length, in steps 1210 Keys are allowed to be from 0 to 256 bits in length, in steps 1232 Keys are allowed to be from 0 to 256 bits in length, in steps 1255 Keys are allowed to be from 0 to 256 bits in length, in steps
|
/linux-4.1.27/Documentation/blockdev/ |
D | zram.txt | 17 Following shows a typical sequence of steps for using zram.
|
D | ramdisk.txt | 161 users may wish to combine steps (d) and (f) by using a pipe.
|
/linux-4.1.27/Documentation/w1/ |
D | w1.netlink | 153 Operation steps in w1 core when new command is received.
|
/linux-4.1.27/arch/arm/mach-pxa/ |
D | raumfeld.c | 370 .steps = 24,
|
/linux-4.1.27/include/linux/mtd/ |
D | nand.h | 488 int steps; member
|
/linux-4.1.27/Documentation/dmaengine/ |
D | client.txt | 13 The slave DMA usage consists of following steps:
|
/linux-4.1.27/Documentation/security/ |
D | keys-request-key.txt | 166 grants permission, it recurses, executing steps (2) and (3) on that
|
/linux-4.1.27/Documentation/vm/ |
D | page_migration | 54 Page migration occurs in several steps. First a high level
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-script.txt | 66 [<record-options>] can be passed to the record steps of 'perf script
|
D | perf-script-python.txt | 31 This example actually details the steps that were used to create the 320 So those are the essential steps in writing and running a script. The
|
/linux-4.1.27/Documentation/m68k/ |
D | README.buddha | 26 Setting the base address should be done in two steps, just
|
D | kernel-options.txt | 375 is possible only if the kernel can set the video base address in steps
|
/linux-4.1.27/net/ceph/crush/ |
D | mapper.c | 789 struct crush_rule_step *curstep = &rule->steps[step]; in crush_do_rule()
|
/linux-4.1.27/drivers/media/i2c/s5c73m3/ |
D | s5c73m3-core.c | 471 unsigned int delay, unsigned int steps) in s5c73m3_system_status_wait() argument 475 while (steps-- > 0) { in s5c73m3_system_status_wait()
|
/linux-4.1.27/drivers/xen/ |
D | Kconfig | 38 Memory could be hotplugged in following steps:
|
/linux-4.1.27/Documentation/driver-model/ |
D | platform.txt | 179 Example: "earlyprintk" class early serial console in 6 steps
|
/linux-4.1.27/arch/x86/crypto/sha-mb/ |
D | sha1_x8_avx2.S | 367 ## perform 0-79 steps
|
/linux-4.1.27/Documentation/scheduler/ |
D | sched-design-CFS.txt | 221 group created using the pseudo filesystem. See example steps below to create
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | timestamping.txt | 91 inferred from the steps between updates and in turn provide
|
/linux-4.1.27/kernel/power/ |
D | Kconfig | 44 ACPI will be used for the final steps when it is available. One
|
/linux-4.1.27/Documentation/x86/ |
D | exception-tables.txt | 279 The steps 8a to 8c in a certain way emulate the faulting instruction.
|
/linux-4.1.27/Documentation/sh/ |
D | new-machine.txt | 7 This document attempts to outline what steps are necessary to add support
|
/linux-4.1.27/Documentation/cpu-freq/ |
D | governors.txt | 203 freq_step: this describes what percentage steps the cpu freq should be
|
/linux-4.1.27/Documentation/development-process/ |
D | 4.Coding | 190 progress at all. Is it two steps forwards, one step back, or one 191 step forward and two steps back?
|
/linux-4.1.27/Documentation/fb/ |
D | fbcon.txt | 194 must take a few additional steps to make sure that your VGA text mode is
|
/linux-4.1.27/Documentation/mtd/ |
D | nand_ecc.txt | 11 I decided to annotate my steps in this file. Perhaps it is useful to someone 480 feeling that in the next steps I would obtain additional gain from it.
|
/linux-4.1.27/Documentation/serial/ |
D | driver | 295 Perform any autoconfiguration steps required for the port. `type`
|
D | moxa-smartio | 403 2 free major numbers for this driver. There are 3 steps to change
|
/linux-4.1.27/Documentation/arm/ |
D | cluster-pm-race-avoidance.txt | 175 procedure, so the remaining steps are not visible as part of the
|
/linux-4.1.27/drivers/md/ |
D | Kconfig | 44 synchronisation steps that are part of this step.
|
/linux-4.1.27/drivers/scsi/aic7xxx/ |
D | aic7xxx_core.c | 1991 int steps; in ahc_clear_critical_section() local 1999 steps = 0; in ahc_clear_critical_section() 2027 if (steps > AHC_MAX_STEPS) { in ahc_clear_critical_section() 2034 steps++; in ahc_clear_critical_section()
|
D | aic79xx_core.c | 3446 int steps; in ahd_clear_critical_section() local 3460 steps = 0; in ahd_clear_critical_section() 3488 if (steps > AHD_MAX_STEPS) { in ahd_clear_critical_section() 3497 steps++; in ahd_clear_critical_section()
|
/linux-4.1.27/tools/usb/usbip/ |
D | COPYING | 39 We protect your rights with two steps: (1) copyright the software, and
|
/linux-4.1.27/drivers/staging/rtl8192e/ |
D | license | 44 We protect your rights with two steps: (1) copyright the software, and (2)
|
/linux-4.1.27/drivers/staging/rtl8192u/ |
D | copying | 39 We protect your rights with two steps: (1) copyright the software, and
|
/linux-4.1.27/ |
D | COPYING | 55 We protect your rights with two steps: (1) copyright the software, and
|
/linux-4.1.27/drivers/regulator/ |
D | Kconfig | 362 modes ranging from 0.77V to 1.40V by 0.01V steps.
|
/linux-4.1.27/Documentation/kbuild/ |
D | makefiles.txt | 603 Two steps are required in order to use a host executable. 818 When kbuild executes, the following steps are followed (roughly):
|
/linux-4.1.27/tools/power/cpupower/po/ |
D | de.po | 325 msgid " available frequency steps: "
|
D | cs.po | 329 msgid " available frequency steps: "
|
D | it.po | 324 msgid " available frequency steps: "
|
D | fr.po | 324 msgid " available frequency steps: "
|
D | pt.po | 323 msgid " available frequency steps: "
|
/linux-4.1.27/drivers/tty/serial/ |
D | Kconfig | 662 software console. The following steps need to be completed to use 685 following steps must be completed to use the PDC console:
|
/linux-4.1.27/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 218 kernel. Let's go through the steps, using 2.4.0-prerelease (current 3799 on the make command line for all steps in building UML, including 3811 and repeat the build process with ARCH=um on all the steps.
|
/linux-4.1.27/drivers/staging/speakup/ |
D | spkguide.txt | 642 follow these steps to use it. 1340 If you use the latter option, you must take reasonably prudent steps,
|
/linux-4.1.27/Documentation/filesystems/cifs/ |
D | README | 198 mount helper display the mount steps more verbosely.
|
/linux-4.1.27/Documentation/cdrom/ |
D | cdrom-standard.tex | 112 have not yet taken steps to support this effort. The goal of \UCD\ is
|
/linux-4.1.27/Documentation/block/ |
D | biodoc.txt | 609 The caller of bio_alloc is expected to taken certain steps to avoid
|
/linux-4.1.27/lib/ |
D | Kconfig.debug | 296 additional steps to occur:
|
/linux-4.1.27/arch/x86/ |
D | Kconfig | 2163 State, or take power saving steps in response to CPU Idle calls."
|