Symbol: mult
bin/dd/args.c
356
intmax_t mult;
bin/dd/args.c
358
mult = 0;
bin/dd/args.c
362
mult = 512;
bin/dd/args.c
366
mult = 1 << 10;
bin/dd/args.c
370
mult = 1 << 20;
bin/dd/args.c
374
mult = 1 << 30;
bin/dd/args.c
378
mult = (uintmax_t)1 << 40;
bin/dd/args.c
382
mult = (uintmax_t)1 << 50;
bin/dd/args.c
386
mult = sizeof(int);
bin/dd/args.c
390
return (mult);
bin/dd/args.c
410
uintmax_t num, mult, prevnum;
bin/dd/args.c
420
mult = postfix_to_mult(*expr);
bin/dd/args.c
422
if (mult != 0) {
bin/dd/args.c
424
num *= mult;
bin/dd/args.c
426
if (num / mult != prevnum)
bin/dd/args.c
437
mult = get_num(expr + 1);
bin/dd/args.c
439
num *= mult;
bin/dd/args.c
440
if (num / mult == prevnum)
bin/dd/args.c
460
intmax_t num, mult, prevnum;
bin/dd/args.c
470
mult = postfix_to_mult(*expr);
bin/dd/args.c
472
if (mult != 0) {
bin/dd/args.c
474
num *= mult;
bin/dd/args.c
476
if ((prevnum > 0) != (num > 0) || num / mult != prevnum)
bin/dd/args.c
487
mult = (intmax_t)get_off_t(expr + 1);
bin/dd/args.c
489
num *= mult;
bin/dd/args.c
490
if ((prevnum > 0) == (num > 0) && num / mult == prevnum)
crypto/libressl/crypto/bn/bn_lib.c
153
BN_set_params(int mult, int high, int low, int mont)
crypto/libressl/crypto/bn/bn_lib.c
155
if (mult >= 0) {
crypto/libressl/crypto/bn/bn_lib.c
156
if (mult > (int)(sizeof(int) * 8) - 1)
crypto/libressl/crypto/bn/bn_lib.c
157
mult = sizeof(int) * 8 - 1;
crypto/libressl/crypto/bn/bn_lib.c
158
bn_limit_bits = mult;
crypto/libressl/crypto/bn/bn_lib.c
159
bn_limit_num = 1 << mult;
crypto/openssh/smult_curve25519_ref.c
162
mult(b1,a1,a0 + 32);
crypto/openssh/smult_curve25519_ref.c
163
mult(b1 + 32,a1 + 32,a0);
crypto/openssh/smult_curve25519_ref.c
170
mult(xznb,b0,b0 + 32);
crypto/openssh/smult_curve25519_ref.c
171
mult(xznb + 32,s,u);
crypto/openssh/smult_curve25519_ref.c
173
mult(xzn1b + 32,r,work);
crypto/openssh/smult_curve25519_ref.c
197
/* 9 */ mult(z9,t0,z);
crypto/openssh/smult_curve25519_ref.c
198
/* 11 */ mult(z11,z9,z2);
crypto/openssh/smult_curve25519_ref.c
200
/* 2^5 - 2^0 = 31 */ mult(z2_5_0,t0,z9);
crypto/openssh/smult_curve25519_ref.c
207
/* 2^10 - 2^0 */ mult(z2_10_0,t0,z2_5_0);
crypto/openssh/smult_curve25519_ref.c
212
/* 2^20 - 2^0 */ mult(z2_20_0,t1,z2_10_0);
crypto/openssh/smult_curve25519_ref.c
217
/* 2^40 - 2^0 */ mult(t0,t1,z2_20_0);
crypto/openssh/smult_curve25519_ref.c
222
/* 2^50 - 2^0 */ mult(z2_50_0,t0,z2_10_0);
crypto/openssh/smult_curve25519_ref.c
227
/* 2^100 - 2^0 */ mult(z2_100_0,t1,z2_50_0);
crypto/openssh/smult_curve25519_ref.c
232
/* 2^200 - 2^0 */ mult(t1,t0,z2_100_0);
crypto/openssh/smult_curve25519_ref.c
237
/* 2^250 - 2^0 */ mult(t0,t1,z2_50_0);
crypto/openssh/smult_curve25519_ref.c
244
/* 2^255 - 21 */ mult(out,t1,z11);
crypto/openssh/smult_curve25519_ref.c
261
mult(work + 64,work,work + 32);
lib/libutil/login_cap.c
571
rlim_t mult = 1;
lib/libutil/login_cap.c
588
mult = 60;
lib/libutil/login_cap.c
591
mult = 60L * 60L;
lib/libutil/login_cap.c
594
mult = 60L * 60L * 24L;
lib/libutil/login_cap.c
597
mult = 60L * 60L * 24L * 7L;
lib/libutil/login_cap.c
600
mult = 60L * 60L * 24L * 365L;
lib/libutil/login_cap.c
606
tot += rmultiply(tim, mult);
lib/libutil/login_cap.c
701
rlim_t mult = 1;
lib/libutil/login_cap.c
715
mult = 512;
lib/libutil/login_cap.c
718
mult = 1024;
lib/libutil/login_cap.c
721
mult = 1024 * 1024;
lib/libutil/login_cap.c
724
mult = 1024 * 1024 * 1024;
lib/libutil/login_cap.c
727
mult = 1024LL * 1024LL * 1024LL * 1024LL;
lib/libutil/login_cap.c
733
tot += rmultiply(siz, mult);
stand/lib/ext2fs.c
332
int i, len, groups, bg_per_blk, blkgrps, mult;
stand/lib/ext2fs.c
406
mult = 1;
stand/lib/ext2fs.c
408
mult *= nindir(fs);
stand/lib/ext2fs.c
409
fp->f_nindir[i] = mult;
stand/lib/ufs.c
442
int mult;
stand/lib/ufs.c
446
mult = 1;
stand/lib/ufs.c
448
mult *= NINDIR(fs);
stand/lib/ufs.c
449
if (mult < omult)
stand/lib/ufs.c
450
mult = 0x7FFFFFFF;
stand/lib/ufs.c
451
fp->f_nindir[level] = mult;
stand/lib/ufs.c
452
omult = mult;
sys/bus/pccard/pccard_cis.c
145
tuple.mult = 2;
sys/bus/pccard/pccard_cis.c
164
if (tuple.mult * tuple.ptr >= PCCARD_CIS_SIZE - 1
sys/bus/pccard/pccard_cis.c
259
addr + tuple.mult * i);
sys/bus/pccard/pccard_cis.c
393
tuple.mult = longlink_common ? 1 : 2;
sys/bus/pccard/pccard_cis.c
405
tuple.mult = mfc[mfc_index].common ? 1 : 2;
sys/bus/pccard/pccardvar.h
216
u_long mult;
sys/bus/pccard/pccardvar.h
256
(bus_space_read_1((tuple)->memt, (tuple)->memh, (tuple)->mult*(idx0)))
sys/bus/u4b/controller/xhci.c
2034
uint8_t mult;
sys/bus/u4b/controller/xhci.c
2066
mult = xfer->endpoint->ecomp ?
sys/bus/u4b/controller/xhci.c
2070
if (mult == 0) {
sys/bus/u4b/controller/xhci.c
2071
mult = (xfer->endpoint->edesc->
sys/bus/u4b/controller/xhci.c
2075
if (mult > 2)
sys/bus/u4b/controller/xhci.c
2076
mult = 3;
sys/bus/u4b/controller/xhci.c
2078
mult++;
sys/bus/u4b/controller/xhci.c
2156
mult = 1;
sys/bus/u4b/controller/xhci.c
2163
mult = 1;
sys/bus/u4b/controller/xhci.c
2202
temp.tlbpc = mult - 1;
sys/bus/u4b/controller/xhci.c
2224
temp.tbc = ((tdpc + mult - 1) / mult) - 1;
sys/bus/u4b/controller/xhci.c
2225
temp.tlbpc = (tdpc % mult);
sys/bus/u4b/controller/xhci.c
2228
temp.tlbpc = mult - 1;
sys/bus/u4b/controller/xhci.c
2355
uint8_t mult, uint8_t fps_shift, uint16_t max_packet_size,
sys/bus/u4b/controller/xhci.c
2389
if (mult == 0)
sys/bus/u4b/controller/xhci.c
2434
if (mult > 3)
sys/bus/u4b/controller/xhci.c
2435
mult = 3;
sys/bus/u4b/controller/xhci.c
2436
temp |= XHCI_EPCTX_0_MULT_SET(mult - 1);
sys/bus/u4b/controller/xhci.c
2437
max_packet_count /= mult;
sys/bus/u4b/usb_transfer.c
434
uint8_t mult;
sys/bus/u4b/usb_transfer.c
436
mult = UE_GET_SS_ISO_MULT(
sys/bus/u4b/usb_transfer.c
438
if (mult > 3)
sys/bus/u4b/usb_transfer.c
439
mult = 3;
sys/bus/u4b/usb_transfer.c
441
xfer->max_packet_count *= mult;
sys/dev/disk/sym/sym_hipd.c
2248
static void sym_getclock (hcb_p np, int mult);
sys/dev/disk/sym/sym_hipd.c
6996
static void sym_getclock (hcb_p np, int mult)
sys/dev/disk/sym/sym_hipd.c
7006
np->multiplier = mult;
sys/dev/disk/sym/sym_hipd.c
7007
np->clock_khz = 40000 * mult;
sys/dev/disk/sym/sym_hipd.c
7016
if (mult > 1 && (stest1 & (DBLEN+DBLSEL)) == DBLEN+DBLSEL) {
sys/dev/disk/sym/sym_hipd.c
7019
np->multiplier = mult;
sys/dev/disk/sym/sym_hipd.c
7027
if (np->multiplier != mult || (scntl3 & 7) < 3 || !(scntl3 & 1)) {
sys/dev/disk/sym/sym_hipd.c
7038
if (f1 < 80000 && mult > 1) {
sys/dev/disk/sym/sym_hipd.c
7042
np->multiplier = mult;
sys/dev/drm/i915/intel_display.c
13372
int max_scale, mult;
sys/dev/drm/i915/intel_display.c
13393
mult = pixel_format == DRM_FORMAT_NV12 ? 2 : 3;
sys/dev/drm/i915/intel_display.c
13394
tmpclk1 = (1 << 16) * mult - 1;
usr.bin/bdes/bdes.c
411
setbits(char *s, int mult)
usr.bin/bdes/bdes.c
434
return((n % mult != 0) ? -1 : n);
usr.bin/dc/inout.c
328
BIGNUM *mult, *stop;
usr.bin/dc/inout.c
333
mult = BN_new();
usr.bin/dc/inout.c
334
bn_check(BN_one(mult));
usr.bin/dc/inout.c
340
while (BN_cmp(mult, stop) < 0) {
usr.bin/dc/inout.c
358
bn_check(BN_mul_word(mult, base));
usr.bin/dc/inout.c
361
BN_free(mult);
usr.bin/limits/limits.c
584
rlim_t mult, tim = strtoq(s, &e, 0);
usr.bin/limits/limits.c
592
mult = 1;
usr.bin/limits/limits.c
595
mult = 512;
usr.bin/limits/limits.c
598
mult = 1024;
usr.bin/limits/limits.c
601
mult = 1024 * 1024;
usr.bin/limits/limits.c
604
mult = 1024 * 1024 * 1024;
usr.bin/limits/limits.c
607
mult = 1024LL * 1024LL * 1024LL * 1024LL;
usr.bin/limits/limits.c
611
res += (tim * mult);