Searched refs:scaled (Results 1 - 179 of 179) sorted by relevance

/linux-4.4.14/drivers/macintosh/
H A Dwindfarm_smu_sensors.c93 s64 scaled; smu_cputemp_get() local
103 scaled = (s64)(((u64)val) * (u64)cpudiode->m_value); smu_cputemp_get()
104 scaled >>= 3; smu_cputemp_get()
105 scaled += ((s64)cpudiode->b_value) << 9; smu_cputemp_get()
106 *value = (s32)(scaled << 1); smu_cputemp_get()
114 s32 val, scaled; smu_cpuamp_get() local
125 scaled = (s32)(val * (u32)cpuvcp->curr_scale); smu_cpuamp_get()
126 scaled += (s32)cpuvcp->curr_offset; smu_cpuamp_get()
127 *value = scaled << 4; smu_cpuamp_get()
135 s32 val, scaled; smu_cpuvolt_get() local
146 scaled = (s32)(val * (u32)cpuvcp->volt_scale); smu_cpuvolt_get()
147 scaled += (s32)cpuvcp->volt_offset; smu_cpuvolt_get()
148 *value = scaled << 4; smu_cpuvolt_get()
156 s32 val, scaled; smu_slotspow_get() local
167 scaled = (s32)(val * (u32)slotspow->pow_scale); smu_slotspow_get()
168 scaled += (s32)slotspow->pow_offset; smu_slotspow_get()
169 *value = scaled << 4; smu_slotspow_get()
H A Dwindfarm_pm81.c27 * - the main control (first control) gets the target value scaled with
30 * scaled with the second pair of factors, and the max of that and
31 * the scaled target is applied to the main control.
71 * systems fan control loop target result (the one before it gets scaled
331 s32 new_setpoint, temp, scaled, cputarget; wf_smu_sys_fans_tick() local
359 scaled = ((((s64)new_setpoint) * (s64)st->scale0) >> 12) + st->offset0; wf_smu_sys_fans_tick()
361 DBG("wf_smu: scaled setpoint: %d RPM\n", (int)scaled); wf_smu_sys_fans_tick()
365 scaled = max(scaled, cputarget); wf_smu_sys_fans_tick()
366 scaled = max(scaled, st->pid.param.min); wf_smu_sys_fans_tick()
367 scaled = min(scaled, st->pid.param.max); wf_smu_sys_fans_tick()
369 DBG("wf_smu: adjusted setpoint: %d RPM\n", (int)scaled); wf_smu_sys_fans_tick()
371 if (st->sys_setpoint == scaled && new_setpoint == st->hd_setpoint) wf_smu_sys_fans_tick()
373 st->sys_setpoint = scaled; wf_smu_sys_fans_tick()
/linux-4.4.14/tools/perf/util/
H A Dcounts.h18 s8 scaled; member in struct:perf_counts
H A Dstat.c326 perf_counts_values__scale(aggr, config->scale, &counter->counts->scaled); perf_stat_process_counter()
H A Devsel.h295 * perf_evsel__read_on_cpu_scaled - Read out the results on a CPU and thread, scaled
H A Devsel.c1096 s8 scaled = 0; perf_counts_values__scale() local
1100 scaled = -1; perf_counts_values__scale()
1103 scaled = 1; perf_counts_values__scale()
1110 *pscaled = scaled; perf_counts_values__scale()
/linux-4.4.14/arch/sparc/kernel/
H A Dvisemul.c492 int scaled = src << scale; pformat() local
493 int from_fixed = scaled >> 7; pformat()
515 s64 scaled = src << scale; pformat() local
516 s64 from_fixed = scaled >> 23; pformat()
538 s64 scaled = src << scale; pformat() local
539 s64 from_fixed = scaled >> 16; pformat()
605 u16 scaled = ((prod & 0x00ffff00) >> 8); pmul() local
609 scaled++; pmul()
610 rd_val |= ((scaled & 0xffffUL) << (byte * 16UL)); pmul()
630 u16 scaled = ((prod & 0x00ffff00) >> 8); pmul() local
634 scaled++; pmul()
635 rd_val |= ((scaled & 0xffffUL) << (byte * 16UL)); pmul()
655 u16 scaled; pmul() local
660 scaled = ((prod & 0x00ffff00) >> 8); pmul()
664 scaled++; pmul()
665 rd_val |= ((scaled & 0xffffUL) << (byte * 16UL)); pmul()
685 u16 scaled; pmul() local
690 scaled = ((prod & 0x00ffff00) >> 8); pmul()
694 scaled++; pmul()
695 rd_val |= ((scaled & 0xffffUL) << pmul()
/linux-4.4.14/net/dccp/ccids/lib/
H A Dtfrc_equation.c58 scaled by 1000000:
612 * @R: RTT scaled by 1000000 (i.e., microseconds)
613 * @p: loss ratio estimate scaled by 1000000
615 * Returns X_calc in bytes per second (not scaled).
649 * Since f(p) and R are both scaled by 1000000, we need to multiply by tfrc_calc_x()
662 * @fvalue: function value to match, scaled by 1000000
664 * Returns closest match for p, also scaled by 1000000
H A Dloss_interval.c16 /* Loss Interval weights from [RFC 3448, 5.4], scaled by 10 */
/linux-4.4.14/arch/c6x/include/asm/
H A Ddelay.h46 /* use scaled math to avoid slow division */
/linux-4.4.14/net/netfilter/ipvs/
H A Dip_vs_est.c48 * Average bps is scaled by 2^5, while average pps and cps are scaled by 2^10.
114 /* scaled by 2^10, but divided 2 seconds */ estimation_timer()
127 /* scaled by 2^5, but divided 2 seconds */ estimation_timer()
/linux-4.4.14/kernel/sched/
H A Dcputime.c133 * @cputime_scaled: cputime scaled by cpu frequency
158 * @cputime_scaled: cputime scaled by cpu frequency
185 * @cputime_scaled: cputime scaled by cpu frequency
209 * @cputime_scaled: cputime scaled by cpu frequency
342 cputime_t scaled = cputime_to_scaled(cputime_one_jiffy); irqtime_account_process_tick() local
350 scaled *= ticks; irqtime_account_process_tick()
362 __account_system_time(p, cputime, scaled, CPUTIME_SOFTIRQ); irqtime_account_process_tick()
364 account_user_time(p, cputime, scaled); irqtime_account_process_tick()
368 account_guest_time(p, cputime, scaled); irqtime_account_process_tick()
370 __account_system_time(p, cputime, scaled, CPUTIME_SYSTEM); irqtime_account_process_tick()
520 u64 scaled; scale_stime() local
554 scaled = div_u64((u64) (u32) stime * (u64) (u32) rtime, (u32)total); scale_stime()
555 return (__force cputime_t) scaled; scale_stime()
H A Dsched.h1109 * scaled version of the new time slice allocation that they receive on time
H A Dfair.c59 * SCHED_TUNABLESCALING_LOG - scaled logarithmical, *1+ilog(ncpus)
60 * SCHED_TUNABLESCALING_LINEAR - scaled linear, *ncpus
4892 * the running time on this CPU scaled by capacity_curr.
6841 * which is not scaled with the cpu capacity. for_each_cpu_and()
6850 * the weighted_cpuload() scaled with the cpu capacity, so for_each_cpu_and()
/linux-4.4.14/drivers/media/platform/exynos-gsc/
H A Dgsc-core.h193 * @crop: cropped(source)/scaled(destination) size
236 * @target_rot_dis_w: max pixel dst scaled width with the rotator is off
237 * @target_rot_dis_h: max pixel dst scaled height with the rotator is off
238 * @target_rot_en_w: max pixel dst scaled width with the rotator is on
239 * @target_rot_en_h: max pixel dst scaled height with the rotator is on
263 * @target_rot_dis_w: minimum output scaled pixel height when rotator is off
264 * @target_rot_dis_h: minimum output scaled pixel height when rotator is off
265 * @target_rot_en_w: minimum output scaled pixel height when rotator is on
266 * @target_rot_en_h: minimum output scaled pixel height when rotator is on
H A Dgsc-regs.h113 /* G-Scaler scaled destination image size */
H A Dgsc-regs.c254 /* Set output scaled size */ gsc_hw_set_out_size()
/linux-4.4.14/sound/isa/msnd/
H A Dmsnd_pinnacle_mixer.c207 /* scaled by IMIX in digital mix */ snd_msndmix_set()
216 /* scaled by IMIX in digital mix */ snd_msndmix_set()
228 /* scaled by master volume */ snd_msndmix_set()
235 /* scaled by master volume */ snd_msndmix_set()
244 /* update master volume scaled controls */ snd_msndmix_set()
/linux-4.4.14/fs/omfs/
H A Domfs.h28 /* convert a cluster number to a scaled block number */ clus_to_blk()
/linux-4.4.14/include/linux/
H A Dcordic.h42 * values are scaled by 2^16 for precision. The range for theta is
H A Dtimekeeper_internal.h19 * @mult: (NTP adjusted) multiplier for scaled math conversion
20 * @shift: Shift value for scaled math conversion
H A Dclockchips.h160 * Calculate a multiplication factor for scaled math, which is used to convert
H A Djiffies.h189 * is a constant and is in nanoseconds. We will use scaled math
/linux-4.4.14/drivers/clk/bcm/
H A Dclk-kona.c56 /* Convert a divider into the scaled divisor value it represents. */ scaled_div_value()
63 * Build a scaled divider value as close as possible to the
80 /* The scaled minimum divisor representable by a divider */
90 /* The scaled maximum divisor representable by a divider */ scaled_div_max()
104 * Convert a scaled divisor into its divider representation as
116 /* Return a rate scaled for use when dividing by a scaled divisor. */
562 /* Read a divider value and return the scaled divisor it represents. */ divider_read_scaled()
579 /* Return the scaled divisor value it represents */ divider_read_scaled()
584 * Convert a divider's scaled divisor value into its recorded form
614 /* Convert the scaled divisor to the value we need to record */ __div_commit()
707 * If there is a pre-divider, divide the scaled parent rate clk_recalc_rate()
728 * Get the scaled divisor value, and divide the scaled clk_recalc_rate()
744 * If scaled_div is non-null, it is used to return the scaled divisor
763 * If there is a pre-divider, divide the scaled parent rate round_rate()
1156 * Get the scaled divisor value needed to achieve a clock kona_peri_clk_set_rate()
H A Dclk-kona.h254 * performed using "scaled" values. A scaled value is one that's
256 * a scaled value by a scaled divisor produces the desired quotient
274 u64 scaled_div; /* scaled divider value */
/linux-4.4.14/net/dccp/ccids/
H A Dccid2.h56 * @tx_srtt: smoothed RTT estimate, scaled by 2^3
57 * @tx_mdev: smoothed RTT variation, scaled by 2^2
H A Dccid3.h83 * @tx_p: Current loss event rate (0-1) scaled by 1000000
H A Dccid3.c83 * For consistency with other parts of the code, X_init is scaled by 2^6.
135 * For consistency with X and X_recv, min_rate is also scaled by 2^6. ccid3_hc_tx_update_x()
241 * Note that X_recv is scaled by 2^6 while X_calc is not ccid3_hc_tx_no_feedback_timer()
309 * draft rfc3448bis, section 4.2. Remember, X is scaled by 2^6. ccid3_hc_tx_send_packet()
677 * Find some p such that f(p) = fval; return 1/p (scaled).
H A Dccid2.c371 /* Update scaled SRTT as SRTT += 1/8 * (m - SRTT) */ ccid2_rtt_estimator()
375 /* Similarly, update scaled mdev with regard to |m| */ ccid2_rtt_estimator()
/linux-4.4.14/arch/powerpc/include/asm/
H A Dcputime.h56 /* Estimate the scaled cputime by scaling the real cputime based on
57 * the last scaled to real ratio */ cputime_to_scaled()
/linux-4.4.14/arch/ia64/mm/
H A Dhugetlbpage.c120 * region must be scaled down by HPAGE_SIZE/PAGE_SIZE so that hugetlb_free_pgd_range()
124 * must likewise be scaled down; but if outside, left unchanged. hugetlb_free_pgd_range()
/linux-4.4.14/drivers/clk/ti/
H A Dclkt_dpll.c136 * a non-scaled m upon return. This non-scaled m will result in a
140 * non-scaled m attempted to underflow, which can allow the calling
322 /* Compute the scaled DPLL multiplier, based on the divider */ omap2_dpll_round_rate()
/linux-4.4.14/include/net/
H A Dred.h129 u32 qth_min; /* Min avg length threshold: Wlog scaled */
130 u32 qth_max; /* Max avg length threshold: Wlog scaled */
132 u32 max_P; /* probability, [0 .. 1.0] 32 scaled */
150 unsigned long qavg; /* Average queue length: Wlog scaled */
/linux-4.4.14/net/ipv4/
H A Dtcp_highspeed.c13 * with fixed-point MD scaled <<8.
H A Dtcp_fastopen.c161 * scaled. So correct it appropriately. tcp_fastopen_create_child()
H A Dtcp_cubic.c69 MODULE_PARM_DESC(bic_scale, "scale (scaled by 1024) value for bic function (bic_scale/1024)");
H A Dtcp_output.c215 /* If no clamp set the clamp to the max possible scaled window */ tcp_select_initial_window()
291 * scaled window. tcp_select_window()
970 * is never scaled. tcp_transmit_skb()
2413 * scaled window will not line up with the MSS boundary anyway. __tcp_select_window()
2419 /* Advertise enough space so that it won't get scaled away. __tcp_select_window()
3019 /* RFC1323: The window in SYN & SYN/ACK segments is never scaled. */ tcp_make_synack()
H A Dtcp_metrics.c493 u32 val, crtt = 0; /* cached RTT scaled by 8 */ tcp_init_metrics()
H A Dtcp_input.c695 * are scaled versions of rtt and mean deviation. tcp_rtt_estimator()
5591 * never scaled. tcp_rcv_synsent_state_process()
5693 * never scaled. tcp_rcv_synsent_state_process()
/linux-4.4.14/include/uapi/linux/
H A Dtaskstats.h159 __u64 ac_utimescaled; /* utime scaled on frequency etc */
160 __u64 ac_stimescaled; /* stime scaled on frequency etc */
161 __u64 cpu_scaled_run_real_total; /* scaled cpu_run_real_total */
H A Dtimex.h67 __kernel_long_t freq; /* frequency offset (scaled ppm) */
79 __kernel_long_t ppsfreq;/* pps frequency (scaled ppm) (ro) */
82 __kernel_long_t stabil; /* pps stability (scaled ppm) (ro) */
H A Dnl80211.h3382 * in unspecified units, scaled to 0..100 (u8)
/linux-4.4.14/drivers/block/aoe/
H A Daoe.h155 u32 rttavg; /* scaled AoE round trip time average */
156 u32 rttdev; /* scaled round trip time mean deviation */
/linux-4.4.14/drivers/gpu/drm/i2c/
H A Dadv7511.h262 * @ADV7511_CSC_SCALING_1: CSC results are not scaled
263 * @ADV7511_CSC_SCALING_2: CSC results are scaled by a factor of two
/linux-4.4.14/kernel/time/
H A Dsched_clock.c30 * @mult: Multipler for scaled math conversion.
31 * @shift: Shift value for scaled math conversion.
H A Dtime.c543 * The >> (NSEC_JIFFIE_SC - SEC_JIFFIE_SC) converts the scaled nsec
544 * value to a scaled second value.
594 * We could instead round in the intermediate scaled representation
H A Dntp.c69 /* frequency offset (scaled nsecs/secs): */
105 static s64 pps_freq; /* frequency offset (scaled ns/s) */
106 static long pps_stabil; /* current stability (scaled ns/s) */
H A Dclocksource.c40 * clocks_calc_mult_shift - calculate mult/shift factors for scaled math of clocks
47 * The function evaluates the shift/mult pair for the scaled math
H A Dtimekeeping.c1530 * have been appropriately scaled so the math is the same. timekeeping_apply_adjustment()
/linux-4.4.14/drivers/iio/light/
H A Dtsl2563.c428 /* Convert normalized, scaled ADC values to lux. */ tsl2563_adc_to_lux()
447 unsigned long scaled = adc; tsl2563_calib_adc() local
449 scaled *= calib; tsl2563_calib_adc()
450 scaled >>= CALIB_FRAC_BITS; tsl2563_calib_adc()
452 return (u32) scaled; tsl2563_calib_adc()
H A Dgp2ap020a00f.c455 * For the high lux mode ALS threshold has to be scaled down gp2ap020a00f_write_event_threshold()
/linux-4.4.14/net/sched/
H A Dsch_hfsc.c78 * representation. The slope values are scaled to avoid overflow.
85 u64 sm1; /* scaled slope of the 1st segment */
86 u64 ism1; /* scaled inverse-slope of the 1st segment */
89 u64 sm2; /* scaled slope of the 2nd segment */
90 u64 ism2; /* scaled inverse-slope of the 2nd segment */
97 u64 sm1; /* scaled slope of the 1st segment */
98 u64 ism1; /* scaled inverse-slope of the 1st segment */
101 u64 sm2; /* scaled slope of the 2nd segment */
102 u64 ism2; /* scaled inverse-slope of the 2nd segment */
372 * sm and ism are scaled in order to keep effective digits.
H A Dsch_pie.c52 u32 prob; /* probability but scaled by u32 limit. */
58 u32 avg_dq_rate; /* bytes per pschedtime tick,scaled */
338 * unit of HZ and need to be scaled before they can used to update calculate_probability()
H A Dsch_netem.c176 * rho is scaled to avoid floating point.
H A Dsch_cbq.c728 * where W=2^{-ewma_log}. But cl->avgidle is scaled: cbq_update()
H A Dsch_qfq.c106 * is the shift for the corresponding (scaled) sigma_i.
/linux-4.4.14/drivers/media/platform/soc_camera/
H A Dsoc_scale_crop.c234 dev_geo(dev, "camera scaled to %ux%u\n", mf->width, mf->height); client_set_fmt()
271 dev_geo(dev, "Camera scaled to %ux%u\n", client_set_fmt()
330 dev_geo(dev, "5: camera scaled to %ux%u\n", soc_camera_client_scale()
H A Drcar_vin.c1053 /* rect is guaranteed to not exceed the scaled camera rectangle */ rcar_vin_set_rect()
H A Dsh_mobile_ceu_camera.c685 /* rect is guaranteed to not exceed the scaled camera rectangle */ sh_mobile_ceu_set_rect()
/linux-4.4.14/drivers/md/bcache/
H A Dstats.c32 * stored left shifted by 16, and scaled back in the sysfs show() function.
H A Dextents.c10 * on the heap have their priority scaled down. This currently is just used as
H A Dbtree.c10 * on the heap have their priority scaled down. This currently is just used as
/linux-4.4.14/arch/mips/cavium-octeon/
H A Dcsrc-octeon.c64 * On CPU_CAVIUM_OCTEON2 the IPD_CLK_COUNT is scaled by rdiv/sdiv.
/linux-4.4.14/net/mac80211/
H A Drc80211_minstrel.h16 /* scaled fraction values */
H A Dmesh_hwmp.c310 /* moving average, scaled to 100 */ ieee80211s_update_metric()
H A Drc80211_minstrel_ht.c338 * (prob is scaled - see MINSTREL_FRAC above) minstrel_ht_get_tp_avg()
H A Dutil.c2214 * algorithm uses a scaled up value as well. Change this scaling _ieee80211_enable_rssi_reports()
/linux-4.4.14/drivers/hwmon/
H A Ds3c-hwmon.c95 * ADC channel. This does a conversion and returns the raw (un-scaled)
211 * Create the scaled attribute for use with hwmon from the specified
H A Dvt1211.c155 * in5 (ix = 5) is special. It's the internal 3.3V so it's scaled in the
166 * temp1 (ix = 0) is an intel thermal diode which is scaled in user space.
167 * temp2 (ix = 1) is the internal temp diode so it's scaled in the driver
H A Dadm1025.c9 * (its own plus up to one external one). Voltages are scaled internally
H A Dadm9240.c17 * Voltage Six inputs are scaled by chip, VID also reported
H A Dadm1026.c182 * IN are scaled according to built-in resistors. These are the
232 * Analog output is a voltage, and scaled to millivolts. The datasheet
H A Dasc7621.c290 * Voltages are scaled in the device so that the nominal voltage
H A Dlm87.c16 * Voltages are scaled internally with ratios such that the nominal value of
H A Dlm85.c131 /* IN are scaled according to built-in resistors */
H A Dit87.c455 u16 in_scaled; /* Internal voltage sensors are scaled */
/linux-4.4.14/drivers/media/pci/bt8xx/
H A Dbttvp.h79 /* Limits scaled width, which must be a multiple of 4. */
93 u16 swidth, sheight; /* scaled standard width, height */
H A Dbttv-driver.c1938 /* Given cropping boundaries b and the scaled width and height of a
2025 /* We cannot scale up. When the scaled image is larger limit_scaled_size_lock()
2879 /* Min. scaled size 48 x 32. */ bttv_s_crop()
/linux-4.4.14/drivers/isdn/mISDN/
H A Ddsp_audio.c64 /* Convert the scaled magnitude to segment number. */ linear2alaw()
/linux-4.4.14/drivers/md/persistent-data/
H A Ddm-transaction-manager.c83 * It would be nice if we scaled with the size of transaction.
/linux-4.4.14/drivers/gpu/drm/exynos/
H A Dregs-gsc.h150 /* G-Scaler scaled destination image size */
H A Dexynos_drm_gsc.c1057 /* scaled size */ gsc_dst_set_size()
/linux-4.4.14/net/core/
H A Dgen_estimator.c69 * avbps and avpps are scaled by 2^5.
/linux-4.4.14/arch/metag/kernel/
H A Dmodule.c250 * NB: 21bit check - not scaled to 19bit yet apply_relocate_add()
/linux-4.4.14/sound/oss/
H A Dmsnd_pinnacle.c447 /* scaled by IMIX in digital mix */ mixer_set()
455 /* scaled by IMIX in digital mix */ mixer_set()
468 /* scaled by master volume */ mixer_set()
475 /* scaled by master volume */ mixer_set()
484 /* update master volume scaled controls */ mixer_set()
/linux-4.4.14/drivers/misc/echo/
H A Decho.c471 therefore the scaled version of (1) is: oslec_update()
611 /* Output scaled back up again to match input scaling */ oslec_update()
/linux-4.4.14/drivers/gpu/drm/gma500/
H A Dpsb_intel_sdvo_regs.h104 u8 scaled:1; member in struct:psb_intel_sdvo_preferred_input_timing_args
427 scaled for the requested HDTV format */
H A Dpsb_intel_display.c284 /* pipesrc and dspsize control the size that is scaled from, psb_intel_crtc_mode_set()
H A Dcdv_intel_display.c809 /* pipesrc and dspsize control the size that is scaled from, cdv_intel_crtc_mode_set()
H A Dmdfld_intel_display.c772 /* pipesrc and dspsize control the size that is scaled from, mdfld_crtc_mode_set()
H A Dpsb_intel_sdvo.c698 args.scaled = 1; psb_intel_sdvo_create_preferred_input_timing()
/linux-4.4.14/drivers/gpu/drm/i915/
H A Dintel_sdvo_regs.h109 u8 scaled:1; member in struct:intel_sdvo_preferred_input_timing_args
432 scaled for the requested HDTV format */
H A Dintel_drv.h607 bool scaled; member in struct:intel_plane_wm_parameters
1405 bool enabled, bool scaled);
H A Dintel_pm.c3071 config->sprites_scaled |= intel_plane->wm.scaled; skl_compute_wm_global_parameters()
3660 int pixel_size, bool enabled, bool scaled) skl_update_sprite_wm()
3666 intel_plane->wm.scaled = scaled; skl_update_sprite_wm()
3740 int pixel_size, bool enabled, bool scaled) ilk_update_sprite_wm()
3752 if (IS_IVYBRIDGE(dev) && scaled && ilk_disable_lp_wm(dev)) ilk_update_sprite_wm()
4142 bool enabled, bool scaled) intel_update_sprite_watermarks()
4149 pixel_size, enabled, scaled); intel_update_sprite_watermarks()
3658 skl_update_sprite_wm(struct drm_plane *plane, struct drm_crtc *crtc, uint32_t sprite_width, uint32_t sprite_height, int pixel_size, bool enabled, bool scaled) skl_update_sprite_wm() argument
3737 ilk_update_sprite_wm(struct drm_plane *plane, struct drm_crtc *crtc, uint32_t sprite_width, uint32_t sprite_height, int pixel_size, bool enabled, bool scaled) ilk_update_sprite_wm() argument
4137 intel_update_sprite_watermarks(struct drm_plane *plane, struct drm_crtc *crtc, uint32_t sprite_width, uint32_t sprite_height, int pixel_size, bool enabled, bool scaled) intel_update_sprite_watermarks() argument
H A Dintel_panel.c404 * Return @source_val in range [@source_min..@source_max] scaled to range
H A Dintel_sdvo.c793 args.scaled = 1; intel_sdvo_create_preferred_input_timing()
H A Di915_drv.h638 int pixel_size, bool enable, bool scaled);
H A Di915_reg.h3430 /* Enable border for unscaled (or aspect-scaled) display */
H A Dintel_display.c2725 /* pipesrc and dspsize control the size that is scaled from, i9xx_update_primary_plane()
7756 /* pipesrc controls the size that is scaled from, which should intel_set_pipe_timings()
/linux-4.4.14/drivers/gpu/drm/nouveau/dispnv04/
H A Ddfp.c384 * horizontal needs to be scaled at vertical scale factor nv04_dfp_mode_set()
400 * vertical needs to be scaled at horizontal scale factor nv04_dfp_mode_set()
/linux-4.4.14/drivers/media/platform/davinci/
H A Dvpbe_display.c447 * horizontal direction so that the image is displayed scaled vpbe_disp_calculate_scale_factor()
451 * the crop coordinates for cropped or scaled display. if crop vpbe_disp_calculate_scale_factor()
453 * it is displayed scaled and/or expanded. vpbe_disp_calculate_scale_factor()
456 * will override with scaled window size vpbe_disp_calculate_scale_factor()
/linux-4.4.14/drivers/net/wireless/ath/ath9k/
H A Deeprom.c311 * Reduce scaled Power by number of chains active ath9k_hw_get_scaled_power()
H A Dar9003_phy.c1027 * half and quarter rate can divide the scaled clock by 2 or 4 ar9003_hw_set_delta_slope()
1037 * scaled coef to provide precision for this floating calculation ar9003_hw_set_delta_slope()
1052 * scaled coeff is 9/10 that of normal coeff ar9003_hw_set_delta_slope()
/linux-4.4.14/drivers/gpu/drm/
H A Ddrm_rect.c54 * drm_rect_clip_scaled - perform a scaled clip operation
H A Ddrm_plane_helper.c215 * 2) Primary plane cannot be scaled.
/linux-4.4.14/net/bridge/
H A Dbr_stp.c20 /* since time values in bpdu are in jiffies and then scaled (1/256)
/linux-4.4.14/sound/core/oss/
H A Dmulaw.c100 /* Convert the scaled magnitude to segment number. */ linear2ulaw()
/linux-4.4.14/include/trace/events/
H A Dpower.h85 TP_printk("core_busy=%lu scaled=%lu from=%lu to=%lu mperf=%llu aperf=%llu tsc=%llu freq=%lu ",
/linux-4.4.14/arch/m68k/fpsp040/
H A Dscale.S5 | scaled by the source operand. If the absolute value of
H A Dbindec.S68 | The mantissa is scaled to the desired number of
451 | The mantissa is scaled to the desired number of significant
/linux-4.4.14/arch/blackfin/lib/
H A Dudivsi3.S89 R3 = R1 >> 1; /* Pre-scaled divisor for primitive case */
/linux-4.4.14/arch/arm/mach-omap2/
H A Dvoltage.c67 * @voltdm: pointer to the voltage domain which is to be scaled.
H A Dvc.c377 * scaled to zero volt level with TWL4030 / TWL5030, I2C can only
/linux-4.4.14/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_connectors.c679 /* add scaled modes */ amdgpu_connector_lvds_get_modes()
697 /* add scaled modes */ amdgpu_connector_lvds_get_modes()
1242 /* add scaled modes */ amdgpu_connector_dp_get_modes()
1259 /* add scaled modes */ amdgpu_connector_dp_get_modes()
/linux-4.4.14/arch/alpha/kernel/
H A Dosf_sys.c1248 long freq; /* frequency offset (scaled ppm) */
1260 long ppsfreq; /* pps frequency (scaled ppm) (ro) */
1263 long stabil; /* pps stability (scaled ppm) (ro) */
/linux-4.4.14/tools/perf/
H A Dbuiltin-stat.c672 int scaled = counter->counts->scaled; print_counter_aggr() local
682 if (scaled == -1 || !counter->supported) { print_counter_aggr()
/linux-4.4.14/drivers/gpu/drm/radeon/
H A Dradeon_connectors.c829 /* add scaled modes */ radeon_lvds_get_modes()
847 /* add scaled modes */ radeon_lvds_get_modes()
1125 /* add scaled modes */ radeon_tv_get_modes()
1554 /* add scaled modes */ radeon_dp_get_modes()
1571 /* add scaled modes */ radeon_dp_get_modes()
/linux-4.4.14/drivers/media/pci/ivtv/
H A Divtv-ioctl.c540 the remaining image being scaled by the hardware to fit the display ivtv_try_fmt_vid_out()
541 area. The video can be scaled both up and down, so a 720x480 video ivtv_try_fmt_vid_out()
546 resolution is locked to the broadcast standard and not scaled. ivtv_try_fmt_vid_out()
H A Divtv-yuv.c507 /* FIXME These registers change depending on scaled / unscaled output ivtv_yuv_handle_vertical()
/linux-4.4.14/drivers/video/fbdev/kyro/
H A DSTG4000OverlayDevice.c405 ulVertDecFactor = (63 - ulBits) / (32 - ulBits); /* vertical decimation factor scaled up to nearest integer */ SetOverlayViewPort()
/linux-4.4.14/drivers/media/dvb-frontends/
H A Dor51211.c269 /* Calculate SNR estimation (scaled by 2^24)
H A Dlgdt330x.c568 /* Calculate SNR estimation (scaled by 2^24)
H A Dor51132.c439 /* Calculate SNR estimation (scaled by 2^24)
/linux-4.4.14/drivers/net/ethernet/intel/e1000e/
H A De1000.h373 * incvalue is scaled by a factor as large as possible (while still fitting
/linux-4.4.14/arch/tile/include/hv/
H A Ddrv_xgbe_impl.h152 * used in the packet_queue is already scaled by the size of a packet; here we
/linux-4.4.14/kernel/
H A Dpid.c571 * The pid hash table is scaled according to the amount of memory in the
H A Dcpuset.c1369 * is 1 second. Arithmetic is done using 32-bit integers scaled to
/linux-4.4.14/fs/squashfs/
H A Dfile.c234 * <index_block, index_offset> for index (scaled to nearest cache index).
/linux-4.4.14/arch/sh/lib/
H A Dudivsi3_i4i.S666 /* maximum error: 0.987342 scaled: 0.921875*/
/linux-4.4.14/tools/thermal/tmon/
H A Dsysfs.c555 "ctrl cdev %d set state %lu scaled to %lu\n", set_ctrl_state()
/linux-4.4.14/drivers/media/platform/vivid/
H A Dvivid-kthread-cap.c154 * crop_out, scaled to compose_out, overlaid with the output overlay,
155 * cropped on the capture side by crop_cap and scaled again to the video
/linux-4.4.14/drivers/media/platform/vsp1/
H A Dvsp1_video.c681 * to be scaled, we disable alpha scaling when the UDS input has a fixed alpha
899 * the alpha component doesn't need to be scaled as the vsp1_video_start_streaming()
/linux-4.4.14/arch/x86/math-emu/
H A Dfpu_trig.c1580 arith_invalid(0); /* Zero scaled by +Infinity */ fscale()
1599 arith_invalid(0); /* Infinity scaled by -Infinity */ fscale()
/linux-4.4.14/drivers/video/fbdev/mbx/
H A Dmbxfb.c40 /* Without this delay, the graphics appears somehow scaled and
/linux-4.4.14/drivers/gpu/drm/vc4/
H A Dvc4_crtc.c14 * output's clock plus its configuration. It pulls scaled pixels from
/linux-4.4.14/drivers/media/pci/ngene/
H A Dngene.h610 u16 swidth, sheight; /* scaled standard width, height */
/linux-4.4.14/arch/x86/crypto/
H A Dcrct10dif-pcl-asm_64.S561 # 0x8bb70000 (0x8bb7 scaled to 32 bits)
/linux-4.4.14/net/ceph/crush/
H A Dmapper.c155 /*dprintk(" scaled %llx\n", w);*/ bucket_list_choose()
/linux-4.4.14/arch/powerpc/platforms/52xx/
H A Dmpc52xx_gpt.c414 * is scaled back down into the u32 range. Period is in 'ns', bus mpc52xx_gpt_do_start()
/linux-4.4.14/arch/parisc/kernel/
H A Dunaligned.c495 else if (regs->iir&0x2000) /* scaled indexed */ handle_unaligned()
/linux-4.4.14/arch/ia64/include/asm/
H A Dprocessor.h63 * (this will give enough slack to represent 10 seconds worth of time as a scaled number).
/linux-4.4.14/arch/m68k/ifpsp060/src/
H A Dpfpsp.S5397 # FP_SRC(a6) = fp op1 scaled(src) #
5398 # FP_DST(a6) = fp op2 scaled(dst) #
5404 # DST exponent was scaled by. If the SRC exponent is greater or equal, #
5515 # FP_SCR0(a6) = extended precision operand to be scaled #
5518 # FP_SCR0(a6) = scaled extended precision operand #
5568 # FP_SCR0(a6) = extended precision operand to be scaled #
5571 # FP_SCR0(a6) = scaled extended precision operand #
5642 # FP_SCR1(a6) = extended precision operand to be scaled #
5645 # FP_SCR1(a6) = scaled extended precision operand #
6790 # scaled extended precision number; this is used by #
7505 mov.w %d1,FP_SCR0_EX(%a6) # insert scaled exp
7716 mov.w %d1,FP_SCR0_EX(%a6) # insert scaled exp
8090 # of this operation then has its exponent scaled by -0x6000 to create the
8201 # of this operation then has its exponent scaled by -0x6000 to create the
9248 # emulated by simply setting sign bit. Sgl/dbl operands must be scaled #
13481 # The mantissa is scaled to the desired number of #
13856 # The mantissa is scaled to the desired number of significant
H A Dfpsp.S9564 # sscale(): computes the destination operand scaled by the source #
11659 # of this operation then has its exponent scaled by -0x6000 to create the
11770 # of this operation then has its exponent scaled by -0x6000 to create the
12817 # emulated by simply setting sign bit. Sgl/dbl operands must be scaled #
15851 # FP_SRC(a6) = fp op1 scaled(src) #
15852 # FP_DST(a6) = fp op2 scaled(dst) #
15858 # DST exponent was scaled by. If the SRC exponent is greater or equal, #
15969 # FP_SCR0(a6) = extended precision operand to be scaled #
15972 # FP_SCR0(a6) = scaled extended precision operand #
16022 # FP_SCR0(a6) = extended precision operand to be scaled #
16025 # FP_SCR0(a6) = scaled extended precision operand #
16096 # FP_SCR1(a6) = extended precision operand to be scaled #
16099 # FP_SCR1(a6) = scaled extended precision operand #
20604 mov.w %d1,FP_SCR0_EX(%a6) # insert scaled exp
20815 mov.w %d1,FP_SCR0_EX(%a6) # insert scaled exp
22668 # scaled extended precision number; this is used by #
23521 # The mantissa is scaled to the desired number of #
23896 # The mantissa is scaled to the desired number of significant
H A Dfplsp.S9205 # sscale(): computes the destination operand scaled by the source #
/linux-4.4.14/drivers/scsi/ufs/
H A Dufshcd.h252 * @clk_scale_notify: notifies that clks are scaled up/down
/linux-4.4.14/drivers/staging/comedi/drivers/
H A Djr3_pci.h369 * Decoupled and filtered data is scaled so that +/- 16384 is equal
/linux-4.4.14/drivers/mtd/spi-nor/
H A Dspi-nor.c35 * For full-chip erase, calibrated to a 2MB flash (M25P16); should be scaled up
/linux-4.4.14/drivers/media/pci/cx23885/
H A Dcx23885-417.c1126 /* Enable VIP style pixel invalidation so we work with scaled mode */ cx23885_initialize_codec()
/linux-4.4.14/drivers/input/mouse/
H A Dappletouch.c406 /* Pull base values, scaled up to help avoid truncation errors. */ atp_calculate_abs()
/linux-4.4.14/drivers/media/usb/gspca/
H A Dov534.c821 * scaled by 0x80. sethue()
/linux-4.4.14/sound/soc/codecs/
H A Dwm8900.c698 /* The FLL must run at 90-100MHz which is then scaled down to fll_factors()
/linux-4.4.14/sound/usb/
H A Dendpoint.c1123 * IN packet we just received. Since the actual size is scaled snd_usb_handle_sync_urb()
/linux-4.4.14/drivers/power/
H A Dab8500_fg.c1206 /* Calculates the scaled capacity. */ ab8500_fg_calculate_scaled_capacity()
1222 dev_dbg(di->dev, "Disabling scaled capacity\n"); ab8500_fg_calculate_scaled_capacity()
/linux-4.4.14/drivers/video/fbdev/
H A Datmel_lcdfb.c791 * magnitude which needs to be scaled in this function for the hardware.
H A Dpm2fb.c859 * magnitude which needs to be scaled in this function for the hardware.
H A Dskeletonfb.c272 * magnitude which needs to be scaled in this function for the hardware.
H A Dfsl-diu-fb.c1196 * which needs to be scaled in this function for the hardware. Things to take
/linux-4.4.14/drivers/media/platform/
H A Dvia-camera.c156 resolution, but results in color corruption when being scaled by
/linux-4.4.14/drivers/media/usb/cx231xx/
H A Dcx231xx-417.c1212 /* Enable VIP style pixel invalidation so we work with scaled mode */ cx231xx_initialize_codec()
/linux-4.4.14/arch/tile/kernel/
H A Dtile-desc_64.c2205 /* Adjust PC-relative scaled branch offsets. */ parse_insn_tilegx()
H A Dtile-desc_32.c2591 /* Adjust PC-relative scaled branch offsets. */ parse_insn_tilepro()
/linux-4.4.14/drivers/clk/tegra/
H A Dclk-dfll.c458 * dfll_scale_dvco_rate - calculate scaled rate from the DVCO rate
/linux-4.4.14/fs/gfs2/
H A Dlock_dlm.c44 * they are not scaled fixed point.
/linux-4.4.14/block/
H A Dcfq-iosched.c945 * scaled = charge / vfraction
1037 /* the adapted slice value is scaled to fit all iqs cfq_scaled_cfqq_slice()
3169 /* async workload slice is scaled down according to choose_wl_class_and_type()
/linux-4.4.14/drivers/staging/rtl8188eu/core/
H A Drtw_mlme.c996 /* the ptarget_wlan->network.Rssi is raw data, we use ptarget_wlan->network.PhyInfo.SignalStrength instead (has scaled) */ rtw_joinbss_update_network()
/linux-4.4.14/drivers/staging/rtl8723au/core/
H A Drtw_mlme.c1013 * ptarget_wlan->network.SignalStrength instead (has scaled) rtw_joinbss_update_network23a()
/linux-4.4.14/drivers/cpufreq/
H A Dcpufreq.c323 * systems as each CPU might be scaled differently. So, use the arch
/linux-4.4.14/arch/x86/kernel/apic/
H A Dapic.c742 /* Calculate the scaled math multiplication factor */ calibrate_APIC_clock()
/linux-4.4.14/drivers/char/
H A Drandom.c1696 * Return entropy available scaled to integral bits
/linux-4.4.14/drivers/net/wireless/ath/ath5k/
H A Dphy.c1913 /* Note: fbin values are scaled up by 2 */ ath5k_hw_set_spur_mitigation_filter()
2009 * Note: number of symbols is scaled up by 16 */ ath5k_hw_set_spur_mitigation_filter()
/linux-4.4.14/drivers/video/console/
H A Dfbcon.c320 * will not work, as colors 1, 2 and 3 will be scaled-down get_color()
/linux-4.4.14/drivers/hid/
H A Dwacom_wac.c1954 * "a" is a scaled-down area which we assume is wacom_bpt3_touch_msg()
/linux-4.4.14/drivers/media/i2c/smiapp/
H A Dsmiapp-core.c1837 * Calculate goodness of scaled image size compared to expected image
/linux-4.4.14/arch/mips/kvm/
H A Demulate.c310 /* Calculate the biased and scaled guest CP0_Count */ kvm_mips_read_count_running()
/linux-4.4.14/sound/pci/
H A Dazt3328.c2181 *** Thus I chose to announce a down-scaled virtual timer to the outside and
/linux-4.4.14/drivers/net/ethernet/marvell/
H A Dsky2.c1025 /* Pause threshold is scaled by 8 in bytes */ sky2_mac_init()
/linux-4.4.14/drivers/net/wireless/iwlegacy/
H A Dcommands.h1291 * This rate will be used for all Tx attempts; it will not be scaled. */
/linux-4.4.14/drivers/net/wireless/iwlwifi/dvm/
H A Dcommands.h1173 * This rate will be used for all Tx attempts; it will not be scaled. */
/linux-4.4.14/drivers/md/
H A Draid5.c6632 * So set it rather large, scaled by number of devices.

Completed in 6592 milliseconds