HomeSort by: relevance | last modified time | path
    Searched defs:mul (Results 1 - 25 of 74) sorted by relevancy

1 2 3

  /src/external/bsd/jemalloc/dist/src/
ticker.py 9 mul = math.floor(-byte_max/math.log(1 / table_size)) variable
10 values = [round(-mul * math.log(i / table_size))
12 print("mul =", mul)
psset.c 53 size_t mul = insert ? (size_t)1 : (size_t)-1; local
56 binstats[huge_idx].npageslabs += mul * 1;
57 binstats[huge_idx].nactive += mul * hpdata_nactive_get(ps);
58 binstats[huge_idx].ndirty += mul * hpdata_ndirty_get(ps);
60 psset->merged_stats.npageslabs += mul * 1;
61 psset->merged_stats.nactive += mul * hpdata_nactive_get(ps);
62 psset->merged_stats.ndirty += mul * hpdata_ndirty_get(ps);
  /src/lib/libc/compat/gen/
compat_ldexp_ieee754.c 70 union ieee_double_u u, mul; local
96 mul.dblu_d = 0.0;
97 mul.dblu_dbl.dbl_exp = expon + DBL_EXP_BIAS;
98 u.dblu_d *= mul.dblu_d;
108 mul.dblu_d = 0.0;
109 mul.dblu_dbl.dbl_exp = DBL_FRACBITS + DBL_EXP_BIAS;
110 u.dblu_d *= mul.dblu_d;
159 mul.dblu_d = 0.0;
160 mul.dblu_dbl.dbl_exp = expon + DBL_EXP_BIAS;
161 u.dblu_d *= mul.dblu_d
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_afmt.c 59 unsigned long div, mul; local
75 mul = ((128*freq/1000) + (n-1))/n;
77 n *= mul;
78 cts *= mul;
  /src/lib/libc/gen/
getbsize.c 57 long n, max, mul, blocksize; local
77 mul = GB;
82 mul = KB;
87 mul = MB;
91 mul = 1;
96 mul = 1;
104 if ((blocksize = n * mul) < 512) {
  /src/external/bsd/tcpdump/dist/
checksum.c 114 uint32_t mul; local
140 mul = (length - checksum_offset)*(c0);
142 x = mul - c0 - c1;
143 y = c1 - mul - 1;
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_scalarmult/curve25519/sandy2x/
fe51_nsquare.S 49 mul %rcx label
54 mul %r8 label
70 mul %r8 label
  /src/sys/opencrypto/
gmac.c 41 uint32_t mul; local
64 mul = v[1] & 1;
66 v[0] = (v[0] >> 1) ^ (0xe100000000000000ULL * mul);
68 mul = v[3] & 1;
72 v[0] = (v[0] >> 1) ^ (0xe1000000 * mul);
  /src/external/gpl3/gcc.old/dist/gcc/d/
d-longdouble.cc 130 longdouble::mul (const longdouble &r) const function in class:longdouble
  /src/sys/arch/x68k/include/
opmreg.h 48 u_int8_t mul; member in struct:opm_operator
  /src/usr.bin/systat/
convtbl.c 60 uintmax_t mul; member in struct:convtbl
67 /* mul, scale, str, name */
113 return ((double)size * tp->mul / tp->scale);
  /src/crypto/external/apache2/openssl/dist/crypto/bn/asm/
ppc64-mont-fixed.pl 210 $self->mul($tp[$j], $apj, $bp0, $c0);
385 # Direct translation of C mul()
386 sub mul($$$$$) subroutine
399 # Like mul() but $c is ignored as an input - an optimisation to save a
412 # Like mul() but does not to the final addition of CA into $c - an
485 # Direct translation of C mul()
486 sub mul($$$$$) subroutine
509 # Like mul() but $c is ignored as an input - an optimisation to save a
x86_64-gcc.c 68 #undef mul macro
94 #define mul(r, a, word, carry) \ macro
153 mul(rp[0], ap[0], w, c1);
154 mul(rp[1], ap[1], w, c1);
155 mul(rp[2], ap[2], w, c1);
156 mul(rp[3], ap[3], w, c1);
162 mul(rp[0], ap[0], w, c1);
165 mul(rp[1], ap[1], w, c1);
168 mul(rp[2], ap[2], w, c1);
  /src/crypto/external/bsd/openssl/dist/crypto/bn/asm/
x86_64-gcc.c 66 # undef mul macro
91 # define mul(r,a,word,carry) do { \ macro
149 mul(rp[0], ap[0], w, c1);
150 mul(rp[1], ap[1], w, c1);
151 mul(rp[2], ap[2], w, c1);
152 mul(rp[3], ap[3], w, c1);
158 mul(rp[0], ap[0], w, c1);
161 mul(rp[1], ap[1], w, c1);
164 mul(rp[2], ap[2], w, c1);
  /src/crypto/external/bsd/openssl.old/dist/crypto/bn/asm/
x86_64-gcc.c 67 # undef mul macro
92 # define mul(r,a,word,carry) do { \ macro
150 mul(rp[0], ap[0], w, c1);
151 mul(rp[1], ap[1], w, c1);
152 mul(rp[2], ap[2], w, c1);
153 mul(rp[3], ap[3], w, c1);
159 mul(rp[0], ap[0], w, c1);
162 mul(rp[1], ap[1], w, c1);
165 mul(rp[2], ap[2], w, c1);
  /src/external/gpl3/gcc/dist/libgomp/
taskloop.c 139 UTYPE mul = num_tasks * grainsize; local
141 if (mul != n)
145 nfirst = n - mul - 1;
  /src/external/gpl3/gcc.old/dist/libgomp/
taskloop.c 139 UTYPE mul = num_tasks * grainsize; local
141 if (mul != n)
145 nfirst = n - mul - 1;
  /src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/OrcV2CBindingsReflectProcessSymbols/
OrcV2CBindingsReflectProcessSymbols.c 28 int32_t mul(int32_t X, int32_t Y) { return X * Y; } function
64 LLVMValueRef MulI32Function = LLVMAddFunction(M, "mul", I32BinOpFunctionType);
81 // 'mul' and 'add':
84 // %t = call i32 @mul(i32 %0, i32 %1)
142 LLVMOrcLLJITMangleAndIntern(J, "mul"),
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-xmethods.cc 101 T mul(const T1 t1);
134 G<T>::mul (const T1 t1) function in class:dop::G
172 int mul = g.mul (1.0); local
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
py-xmethods.cc 101 T mul(const T1 t1);
134 G<T>::mul (const T1 t1) function in class:dop::G
172 int mul = g.mul (1.0); local
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_rc6.c 707 u32 mul, div; local
731 mul = 1000000;
738 mul = 10000;
741 mul = 1280;
771 return mul_u64_u32_div(time_hw, mul, div);
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Boolean.h 133 static bool mul(Boolean A, Boolean B, unsigned OpBits, Boolean *R) { function in class:clang::interp::Boolean
Integral.h 202 static bool mul(Integral A, Integral B, unsigned OpBits, Integral *R) { function in class:clang::interp::Integral
  /src/external/gpl3/gcc.old/dist/gcc/config/arm/
aarch-common.cc 291 /* Return nonzero if the CONSUMER (a mul or mac op) does not
503 rtx mul = PATTERN (producer); local
508 if (GET_CODE (mul) == COND_EXEC)
509 mul = COND_EXEC_CODE (mul);
513 /* Check that mul is of the form (set (...) (mult ...))
515 if ((GET_CODE (mul) != SET || GET_CODE (XEXP (mul, 1)) != MULT)
520 mul_result = XEXP (mul, 0);
  /src/sys/arch/hpcmips/tx/
tx3912video.c 618 int mul, div; member in struct:__anon1399
662 return ((0xff * dlp->mul) / dlp->div);
671 return ((0xff * dlp->mul) / dlp->div);

Completed in 49 milliseconds

1 2 3