HomeSort by: relevance | last modified time | path
    Searched defs:multiplier (Results 1 - 9 of 9) sorted by relevancy

  /src/lib/libc/gen/
dehumanize_number.c 65 long multiplier; local in function:dehumanize_number
75 multiplier = 1;
81 multiplier = 1;
85 multiplier = 1024;
89 multiplier = 1024 * 1024;
93 multiplier = 1024 * 1024 * 1024;
114 tmp2 = tmp * multiplier;
115 tmp2 = tmp2 / multiplier;
120 tmp *= multiplier;
  /src/sys/dev/ic/
ugvar.h 45 int multiplier; member in struct:ug2_sensor_info
  /src/sys/arch/mips/atheros/
ar5312.c 139 uint32_t multiplier; local in function:ar5312_get_freqs
152 multiplier = __SHIFTOUT(clockctl, AR2313_CLOCKCTL_MULTIPLIER);
155 multiplier = __SHIFTOUT(clockctl, AR5312_CLOCKCTL_MULTIPLIER);
157 multiplier <<= 1;
166 const uint32_t cpufreq = (40000000 / divisor) * multiplier;
  /src/sys/dev/pci/ixgbe/
ixgbe_dcb.c 60 int min_credit, multiplier; local in function:ixgbe_dcb_calculate_tc_credits
71 multiplier = (min_credit / min_percent) + 1;
75 int val = uimin(bw[i] * multiplier, IXGBE_DCB_MAX_CREDIT_REFILL);
137 * a multiplier. It is required that the refill credits must be
139 * multiplier that will allow all bandwidth percentages to be
158 /* Calculate credit refill ratio using multiplier */
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce/
amdgpu_dce_aux.c 440 uint32_t multiplier = 0; local in function:dce_aux_configure_timeout
452 /* 2-Update aux timeout period length and multiplier */
454 multiplier = DEFAULT_AUX_ENGINE_MULT;
457 multiplier = 0;
462 multiplier = 1;
467 multiplier = 2;
472 multiplier = 3;
500 REG_UPDATE_SEQ_2(AUX_DPHY_RX_CONTROL1, AUX_RX_TIMEOUT_LEN, length, AUX_RX_TIMEOUT_LEN_MUL, multiplier);
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_cypress_dpm.c 913 u32 multiplier = pi->mem_gddr5 ? 1 : 2; local in function:cypress_calculate_burst_time
914 u32 result = (4 * multiplier * engine_clock) / (memory_clock / 2);
  /src/sys/arch/arm/arm/
cpufunc.c 1396 u_int multiplier; local in function:get_cachetype_cp15
1460 multiplier = (isize & CPU_CT_xSIZE_M) ? 3 : 2;
1468 arm_pcache.icache_ways = multiplier <<
1479 arm_pcache.icache_size = multiplier << (CPU_CT_xSIZE_SIZE(isize) + 8);
1485 multiplier = (dsize & CPU_CT_xSIZE_M) ? 3 : 2;
1493 arm_pcache.dcache_ways = multiplier <<
1505 arm_pcache.dcache_size = multiplier << (CPU_CT_xSIZE_SIZE(dsize) + 8);
1511 arm_dcache_log2_assoc = CPU_CT_xSIZE_ASSOC(dsize) + multiplier - 2;
  /src/usr.sbin/makefs/
cd9660.c 1062 int numbts, dot, semi, digit, digits, temp, powers, multiplier, count; local in function:cd9660_rename_filename
1084 multiplier = 1;
1139 __USE(multiplier);
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dcn10/
amdgpu_dcn10_hw_sequencer.c 2408 struct fixed31_32 multiplier = pipe_ctx->plane_state->hdr_mult; local in function:dcn10_set_hdr_multiplier
2409 uint32_t hw_mult = 0x1f000; // 1.0 default multiplier
2417 if (!dc_fixpt_eq(multiplier, dc_fixpt_from_int(0))) // check != 0
2418 convert_to_custom_float_format(multiplier, &fmt, &hw_mult);
3064 struct fixed31_32 multiplier; local in function:dcn10_set_cursor_sdr_white_level
3066 uint32_t hw_scale = 0x3c00; // 1.0 default multiplier
3077 multiplier = dc_fixpt_from_fraction(sdr_white_level, 80);
3078 convert_to_custom_float_format(multiplier, &fmt, &hw_scale);

Completed in 21 milliseconds