Searched refs:scale (Results 276 - 300 of 327) sorted by relevance

<<11121314

/linux-master/drivers/media/dvb-frontends/
H A Dlgdt3306a.c969 c->cnr.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
1612 c->cnr.stat[0].scale = FE_SCALE_DECIBEL;
1616 c->cnr.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
1703 * what is the scale of the value?? */
/linux-master/fs/bcachefs/
H A Dalloc_foreground.c730 u64 scale = *v / 4; local
739 *v = *v < scale ? 0 : *v - scale;
/linux-master/drivers/gpu/ipu-v3/
H A Dipu-ic.c195 param = ((a[0] & 0x1fe0) >> 5) | (csc->params.scale << 8) |
/linux-master/drivers/acpi/acpica/
H A Drsdumpinfo.c313 {ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(clock_input.scale), "Scale",
/linux-master/drivers/gpu/drm/panel/
H A Dpanel-samsung-ld9040.c330 .scale = BACKLIGHT_SCALE_NON_LINEAR,
/linux-master/drivers/iio/common/cros_ec_sensors/
H A Dcros_ec_sensors_core.c307 state->calib[i].scale = MOTION_SENSE_DEFAULT_SCALE;
/linux-master/drivers/iio/adc/
H A Dat91-sama5d2_adc.c1017 u32 scale, result, pos; local
1020 * to obtain the actual position we must divide by scale
1024 /* first half of register is the x or y, second half is the scale */
1035 scale = (val >> 16) & AT91_SAMA5D2_XYZ_MASK;
1036 if (scale == 0) {
1037 dev_err(&st->indio_dev->dev, "scale is 0\n");
1040 result /= scale;
/linux-master/drivers/iio/magnetometer/
H A Dtmag5273.c121 unsigned int scale; member in struct:tmag5273_data
/linux-master/drivers/perf/amlogic/
H A Dmeson_ddr_pmu_core.c244 __ATTR(_name.scale, 0444, event_show_scale, NULL)
/linux-master/drivers/md/
H A Dmd.h813 extern int strict_strtoul_scaled(const char *cp, unsigned long *res, int scale);
/linux-master/drivers/gpu/drm/gud/
H A Dgud_connector.c131 .scale = BACKLIGHT_SCALE_NON_LINEAR,
/linux-master/drivers/iommu/arm/arm-smmu-v3/
H A Darm-smmu-v3.h480 u8 scale; member in struct:arm_smmu_cmdq_ent::__anon187::__anon191
/linux-master/arch/m68k/ifpsp060/src/
H A Disp.S1358 andi.l &0x3,%d2 # extract scale value
1360 lsl.l %d2,%d1 # shift index by scale
1473 rol.w &0x7,%d2 # rotate scale value into place
1474 andi.l &0x3,%d2 # extract scale value
1476 lsl.l %d2,%d1 # shift index by scale
/linux-master/net/ipv4/
H A Dinet_hashtables.c1190 unsigned long numentries, int scale,
1197 scale,
1189 inet_hashinfo2_init(struct inet_hashinfo *h, const char *name, unsigned long numentries, int scale, unsigned long low_limit, unsigned long high_limit) argument
/linux-master/drivers/net/wireless/broadcom/b43/
H A Dphy_lp.c2485 u16 old_comm15, scale; local
2563 scale = 1;
2566 scale = 0;
2570 b43_radio_maskset(dev, B2063_PLL_JTAG_PLL_CP2, 0xFFBF, scale << 6);
2573 tmp6 *= (tmp5 * 8) * (scale + 1);
2578 b43_radio_maskset(dev, B2063_PLL_JTAG_PLL_CP3, 0xFFDF, scale << 5);
/linux-master/drivers/message/fusion/
H A Dmptbase.c4321 int scale, num_sge, numSGE; local
4355 * scale = num sge per chain buffer if no chain element
4357 scale = ioc->req_sz / ioc->SGE_size;
4359 num_sge = scale + (ioc->req_sz - 60) / ioc->SGE_size;
4361 num_sge = 1 + scale + (ioc->req_sz - 64) / ioc->SGE_size;
4364 numSGE = (scale - 1) * (ioc->facts.MaxChainDepth-1) + scale +
4367 numSGE = 1 + (scale - 1) * (ioc->facts.MaxChainDepth-1) +
4368 scale + (ioc->req_sz - 64) / ioc->SGE_size;
4384 num_sge += (scale
[all...]
H A Dmptsas.c5160 int scale; local
5255 scale = ioc->req_sz/ioc->SGE_size;
5257 numSGE = (scale - 1) *
5258 (ioc->facts.MaxChainDepth-1) + scale +
5261 numSGE = 1 + (scale - 1) *
5262 (ioc->facts.MaxChainDepth-1) + scale +
/linux-master/tools/perf/util/
H A Dheader.c4382 ret += fprintf(fp, "... scale: %f\n", ev->scale.scale);
4478 evsel->scale = ev->scale.scale;
/linux-master/drivers/net/ethernet/intel/e1000e/
H A Dich8lan.c1042 u16 speed, duplex, scale = 0; local
1065 * a 3-bit encoded scale (only 0-5 are valid) multiplied by
1067 * 2^25*(2^10-1) ns. The scale is encoded as 0=2^0ns,
1076 scale++;
1079 if (scale > E1000_LTRV_SCALE_MAX) {
1080 e_dbg("Invalid LTR latency scale %d\n", scale);
1083 lat_enc = (u16)((scale << PCI_LTR_SCALE_SHIFT) | value);
/linux-master/drivers/video/fbdev/riva/
H A Dfbdev.c779 newmode.ext.scale = NV_RD32(par->riva.PRAMDAC, 0x00000848) &
783 newmode.ext.scale |= (1 << 8);
803 newmode.ext.scale |= (1 << 8);
/linux-master/arch/arm64/net/
H A Dbpf_jit_comp.c248 * scale
256 * scale
258 * The offset is calculated from imm12 and scale in the following way:
260 * offset = (u64)imm12 << scale
262 static bool is_lsi_offset(int offset, int scale) argument
267 if (offset > (0xFFF << scale))
270 if (offset & ((1 << scale) - 1))
/linux-master/drivers/input/mouse/
H A Dpsmouse-base.c482 static void psmouse_set_scale(struct psmouse *psmouse, enum psmouse_scale scale) argument
485 scale == PSMOUSE_SCALE21 ? PSMOUSE_CMD_SETSCALE21 :
/linux-master/drivers/video/fbdev/nvidia/
H A Dnvidia.c414 state->scale = NV_RD32(par->PRAMDAC, 0x00000848) & 0xfff000ff;
420 state->scale |= (1 << 8);
/linux-master/drivers/iio/imu/inv_mpu6050/
H A Dinv_mpu_core.c31 * this is the gyro scale translated from dynamic range plus/minus
37 * this is the accel scale translated from dynamic range plus/minus
755 *val = st->hw->temp.scale / 1000000;
756 *val2 = st->hw->temp.scale % 1000000;
867 * we should only update scale when the chip is disabled, i.e.
/linux-master/drivers/net/ethernet/aquantia/atlantic/hw_atl/
H A Dhw_atl_b0.c336 static const u32 scale = BIT(HW_ATL_TPS_DESC_RATE_Y_WIDTH); local
422 const u32 rate = 10000U * scale /

Completed in 389 milliseconds

<<11121314