Symbol: mul
crypto/libressl/crypto/bn/bn_asm.c
114
mul(rp[0], ap[0], w, c1);
crypto/libressl/crypto/bn/bn_asm.c
115
mul(rp[1], ap[1], w, c1);
crypto/libressl/crypto/bn/bn_asm.c
116
mul(rp[2], ap[2], w, c1);
crypto/libressl/crypto/bn/bn_asm.c
117
mul(rp[3], ap[3], w, c1);
crypto/libressl/crypto/bn/bn_asm.c
124
mul(rp[0], ap[0], w, c1);
crypto/libressl/crypto/bn/bn_asm.c
208
mul(rp[0], ap[0], bl, bh, carry);
crypto/libressl/crypto/bn/bn_asm.c
209
mul(rp[1], ap[1], bl, bh, carry);
crypto/libressl/crypto/bn/bn_asm.c
210
mul(rp[2], ap[2], bl, bh, carry);
crypto/libressl/crypto/bn/bn_asm.c
211
mul(rp[3], ap[3], bl, bh, carry);
crypto/libressl/crypto/bn/bn_asm.c
218
mul(rp[0], ap[0], bl, bh, carry);
crypto/libressl/crypto/bn/bn_asm.c
934
mul(tp[j], ap[j], ml, mh, c0);
crypto/libressl/crypto/bn/bn_asm.c
937
mul(tp[j], ap[j], ml, c0);
crypto/libressl/include/openssl/bn.h
546
void BN_set_params(int mul, int high, int low, int mont);
crypto/openssh/ssh-keygen.c
1933
int64_t mul, secs;
crypto/openssh/ssh-keygen.c
1935
mul = *s == '-' ? -1 : 1;
crypto/openssh/ssh-keygen.c
1939
if (mul == -1 && secs > now)
crypto/openssh/ssh-keygen.c
1941
return now + (u_int64_t)(secs * mul);
lib/libc/gen/getbsize.c
43
long n, max, mul, blocksize;
lib/libc/gen/getbsize.c
63
mul = GB;
lib/libc/gen/getbsize.c
68
mul = KB;
lib/libc/gen/getbsize.c
73
mul = MB;
lib/libc/gen/getbsize.c
77
mul = 1;
lib/libc/gen/getbsize.c
83
mul = 1;
lib/libc/gen/getbsize.c
90
if ((blocksize = n * mul) < 512) {
sys/bus/u4b/audio/uaudio.c
146
uint32_t mul;
sys/bus/u4b/audio/uaudio.c
2877
MIX(sc).mul = 7;
sys/bus/u4b/audio/uaudio.c
2926
MIX(sc).mul = 0x7f;
sys/bus/u4b/audio/uaudio.c
2943
MIX(sc).mul = 0x7f00;
sys/bus/u4b/audio/uaudio.c
2960
MIX(sc).mul = 0x7f;
sys/bus/u4b/audio/uaudio.c
3103
mc->mul = mc->maxval - mc->minval;
sys/bus/u4b/audio/uaudio.c
3104
if (mc->mul == 0)
sys/bus/u4b/audio/uaudio.c
3105
mc->mul = 1;
sys/bus/u4b/audio/uaudio.c
3324
MIX(sc).mul = (MIX(sc).maxval - MIX(sc).minval);
sys/bus/u4b/audio/uaudio.c
3374
MIX(sc).mul = (MIX(sc).maxval - MIX(sc).minval);
sys/bus/u4b/audio/uaudio.c
5294
val = (val * mc->mul) / 255;
sys/dev/drm/amd/amdgpu/amdgpu_afmt.c
54
unsigned long div, mul;
sys/dev/drm/amd/amdgpu/amdgpu_afmt.c
70
mul = ((128*freq/1000) + (n-1))/n;
sys/dev/drm/amd/amdgpu/amdgpu_afmt.c
72
n *= mul;
sys/dev/drm/amd/amdgpu/amdgpu_afmt.c
73
cts *= mul;
sys/dev/drm/i915/i915_drv.h
200
uint_fixed_16_16_t mul)
sys/dev/drm/i915/i915_drv.h
204
intermediate_val = (uint64_t) val * mul.val;
sys/dev/drm/i915/i915_drv.h
211
uint_fixed_16_16_t mul)
sys/dev/drm/i915/i915_drv.h
215
intermediate_val = (uint64_t) val.val * mul.val;
sys/dev/drm/i915/i915_drv.h
241
uint_fixed_16_16_t mul)
sys/dev/drm/i915/i915_drv.h
245
intermediate_val = (uint64_t) val * mul.val;
sys/dev/drm/i915/i915_pmu.c
217
add_sample_mult(struct i915_pmu_sample *sample, u32 val, u32 mul)
sys/dev/drm/i915/i915_pmu.c
219
sample->cur += mul_u32_u32(val, mul);
sys/dev/drm/i915/intel_dsi_vbt.c
517
u32 mul;
sys/dev/drm/i915/intel_dsi_vbt.c
643
mul = IS_GEMINILAKE(dev_priv) ? 8 : 2;
sys/dev/drm/i915/intel_dsi_vbt.c
648
prepare_cnt = DIV_ROUND_UP(ths_prepare_ns * ui_den, ui_num * mul);
sys/dev/drm/i915/intel_dsi_vbt.c
658
ui_num * mul
sys/dev/drm/i915/intel_dsi_vbt.c
678
* ui_den, ui_num * mul);
sys/dev/drm/i915/intel_dsi_vbt.c
687
trail_cnt = DIV_ROUND_UP(tclk_trail_ns * ui_den, ui_num * mul);
sys/dev/drm/i915/intel_dsi_vbt.c
713
lp_to_hs_switch = DIV_ROUND_UP(4 * tlpx_ui + prepare_cnt * mul +
sys/dev/drm/i915/intel_dsi_vbt.c
714
exit_zero_cnt * mul + 10, 8);
sys/dev/drm/i915/intel_panel.c
1326
u32 mul;
sys/dev/drm/i915/intel_panel.c
1329
mul = 128;
sys/dev/drm/i915/intel_panel.c
1331
mul = 16;
sys/dev/drm/i915/intel_panel.c
1333
return DIV_ROUND_CLOSEST(MHz(24), pwm_freq_hz * mul);
sys/dev/drm/i915/intel_panel.c
1345
u32 mul, clock;
sys/dev/drm/i915/intel_panel.c
1348
mul = 16;
sys/dev/drm/i915/intel_panel.c
1350
mul = 128;
sys/dev/drm/i915/intel_panel.c
1357
return DIV_ROUND_CLOSEST(clock, pwm_freq_hz * mul);
sys/dev/drm/i915/intel_panel.c
1418
int mul, clock;
sys/dev/drm/i915/intel_panel.c
1425
mul = 16;
sys/dev/drm/i915/intel_panel.c
1428
mul = 128;
sys/dev/drm/i915/intel_panel.c
1431
return DIV_ROUND_CLOSEST(clock, pwm_freq_hz * mul);
sys/dev/drm/i915/intel_pm.c
9784
u32 mul, div;
sys/dev/drm/i915/intel_pm.c
9808
mul = 1000000;
sys/dev/drm/i915/intel_pm.c
9815
mul = 10000;
sys/dev/drm/i915/intel_pm.c
9818
mul = 1280;
sys/dev/drm/i915/intel_pm.c
9848
return mul_u64_u32_div(time_hw, mul, div);
sys/dev/drm/radeon/radeon_audio.c
562
unsigned long div, mul;
sys/dev/drm/radeon/radeon_audio.c
578
mul = ((128*freq/1000) + (n-1))/n;
sys/dev/drm/radeon/radeon_audio.c
580
n *= mul;
sys/dev/drm/radeon/radeon_audio.c
581
cts *= mul;
sys/dev/misc/syscons/dragon/dragon_saver.c
112
static int order, mul, out;
sys/dev/misc/syscons/dragon/dragon_saver.c
130
mul = ((krandom() & 7) + 1) * (SCRW / 320);
sys/dev/misc/syscons/dragon/dragon_saver.c
144
dx = 0; dy = mul;
sys/dev/misc/syscons/dragon/dragon_saver.c
147
dx = mul; dy = 0;
sys/dev/misc/syscons/dragon/dragon_saver.c
150
dx = 0; dy = -mul;
sys/dev/netif/ath/ath/if_ath_tdma.h
37
#define TDMA_EP_MUL(x, mul) ((x) * (mul))
sys/dev/netif/ath/ath/if_ath_tdma.h
44
#define TDMA_EP_RND(x,mul) \
sys/dev/netif/ath/ath/if_ath_tdma.h
45
((((x)%(mul)) >= ((mul)/2)) ? \
sys/dev/netif/ath/ath/if_ath_tdma.h
46
((x) + ((mul) - 1)) / (mul) : (x)/(mul))
sys/dev/netif/ath/ath/if_athvar.h
220
#define ATH_EP_MUL(x, mul) ((x) * (mul))
sys/dev/netif/ath/ath/if_athvar.h
228
#define ATH_EP_RND(x,mul) \
sys/dev/netif/ath/ath/if_athvar.h
229
((((x)%(mul)) >= ((mul)/2)) ? ((x) + ((mul) - 1)) / (mul) : (x)/(mul))
sys/dev/netif/ath/ath_hal/ar5212/ar5212_ani.c
34
#define HAL_EP_RND(x, mul) \
sys/dev/netif/ath/ath_hal/ar5212/ar5212_ani.c
35
((((x)%(mul)) >= ((mul)/2)) ? ((x) + ((mul) - 1)) / (mul) : (x)/(mul))
sys/dev/netif/ath/ath_hal/ar5416/ar5416_ani.c
38
#define HAL_EP_RND(x, mul) \
sys/dev/netif/ath/ath_hal/ar5416/ar5416_ani.c
39
((((x)%(mul)) >= ((mul)/2)) ? ((x) + ((mul) - 1)) / (mul) : (x)/(mul))
sys/dev/sound/pci/hda/hdaa.c
124
uint16_t mul;
sys/dev/sound/pci/hda/hdaa.c
1851
fmt |= hda_rate_tab[i].mul;
sys/dev/sound/pcm/feeder_eq.c
154
pmul = feed_eq_preamp[info->preamp].mul; \
sys/dev/sound/pcm/feeder_matrix.c
158
accum = (accum * info->matrix[i].mul) >> \
sys/dev/sound/pcm/feeder_matrix.c
239
info->matrix[i].mul = 1;
sys/dev/sound/pcm/feeder_matrix.c
276
accum = (accum * info->matrix[i].mul) >>
sys/dev/sound/pcm/feeder_matrix.c
296
int mul, shift;
sys/dev/sound/pcm/feeder_matrix.c
364
mul = (1 << (FEEDMATRIX_ATTN_SHIFT - 1)) + 143 - j;
sys/dev/sound/pcm/feeder_matrix.c
366
while ((mul & 1) == 0 && shift > 0) {
sys/dev/sound/pcm/feeder_matrix.c
367
mul >>= 1;
sys/dev/sound/pcm/feeder_matrix.c
370
info->matrix[ch].mul = mul;
sys/dev/sound/pcm/feeder_matrix.c
388
info->matrix[i].mul, info->matrix[i].shift);
sys/dev/sound/pcm/feeder_matrix.c
79
int mul, shift;
sys/netproto/802_11/ieee80211_node.h
290
#define IEEE80211_RSSI_EP_RND(x, mul) \
sys/netproto/802_11/ieee80211_node.h
291
((((x) % (mul)) >= ((mul)/2)) ? ((x) + ((mul) - 1)) / (mul) : (x)/(mul))
tools/tools/ath/athstats/athstats.c
59
#define HAL_EP_RND(x,mul) \
tools/tools/ath/athstats/athstats.c
60
((((x)%(mul)) >= ((mul)/2)) ? ((x) + ((mul) - 1)) / (mul) : (x)/(mul))
usr.bin/systat/convtbl.c
102
return ((double)size * tp->mul / tp->scale);
usr.bin/systat/convtbl.c
45
uintmax_t mul;