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

1 2

  /src/lib/libc/gen/
dehumanize_number.c 65 long multiplier; local
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/external/gpl3/gcc.old/dist/gcc/config/tilegx/
tilegx-multiply.h 54 long long multiplier; member in struct:tilegx_multiply_insn_seq
71 This is sorted by its 'multiplier' field so a binary search
  /src/external/gpl3/gcc.old/dist/gcc/config/tilepro/
tilepro-multiply.h 58 int multiplier; member in struct:tilepro_multiply_insn_seq
75 'multiplier' field so a binary search can look for matches. */
  /src/external/bsd/kyua-cli/dist/utils/
units.cpp 73 uint64_t multiplier; local
78 case 'T': case 't': multiplier = TB; break;
79 case 'G': case 'g': multiplier = GB; break;
80 case 'M': case 'm': multiplier = MB; break;
81 case 'K': case 'k': multiplier = KB; break;
82 default: multiplier = 1;
84 if (multiplier != 1)
105 return bytes(uint64_t(count * multiplier));
  /src/sys/dev/ic/
ugvar.h 45 int multiplier; member in struct:ug2_sensor_info
  /src/external/bsd/atf/dist/atf-c++/detail/
text.cpp 144 int64_t multiplier; local
146 case 'k': case 'K': multiplier = 1 << 10; break;
147 case 'm': case 'M': multiplier = 1 << 20; break;
148 case 'g': case 'G': multiplier = 1 << 30; break;
149 case 't': case 'T': multiplier = int64_t(1) << 40; break;
154 multiplier = 1;
156 if (multiplier != 1)
159 return to_type< int64_t >(str) * multiplier;
  /src/external/bsd/atf/dist/tools/
text.cpp 142 int64_t multiplier; local
144 case 'k': case 'K': multiplier = 1 << 10; break;
145 case 'm': case 'M': multiplier = 1 << 20; break;
146 case 'g': case 'G': multiplier = 1 << 30; break;
147 case 't': case 'T': multiplier = int64_t(1) << 40; break;
152 multiplier = 1;
154 if (multiplier != 1)
157 return to_type< int64_t >(str) * multiplier;
  /src/sys/arch/mips/atheros/
ar5312.c 139 uint32_t multiplier; local
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/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
benchmark_runner.cc 246 double multiplier = min_time * 1.4 / std::max(i.seconds, 1e-9); local
248 // use the multiplier directly.
253 multiplier = is_significant ? multiplier : std::min(10.0, multiplier);
254 if (multiplier <= 1.0) multiplier = 2.0;
258 0.5 + std::max(multiplier * i.iters, i.iters + 1.0);
262 VLOG(3) << "Next iters: " << next_iters << ", " << multiplier << "\n"; local
  /src/external/mit/libuv/dist/src/unix/
darwin.c 184 multiplier = ((uint64_t)1000L / ticks); local
225 cpu_info->cpu_times.user = (uint64_t)(info[i].cpu_ticks[0]) * multiplier;
226 cpu_info->cpu_times.nice = (uint64_t)(info[i].cpu_ticks[3]) * multiplier;
227 cpu_info->cpu_times.sys = (uint64_t)(info[i].cpu_ticks[1]) * multiplier;
228 cpu_info->cpu_times.idle = (uint64_t)(info[i].cpu_ticks[2]) * multiplier;
netbsd.c 187 unsigned int multiplier = ((uint64_t)1000L / ticks); local
230 cpu_info->cpu_times.user = (uint64_t)(cp_times[CP_USER+cur]) * multiplier;
231 cpu_info->cpu_times.nice = (uint64_t)(cp_times[CP_NICE+cur]) * multiplier;
232 cpu_info->cpu_times.sys = (uint64_t)(cp_times[CP_SYS+cur]) * multiplier;
233 cpu_info->cpu_times.idle = (uint64_t)(cp_times[CP_IDLE+cur]) * multiplier;
234 cpu_info->cpu_times.irq = (uint64_t)(cp_times[CP_INTR+cur]) * multiplier;
openbsd.c 186 multiplier = ((uint64_t)1000L / ticks), cpuspeed; local
233 cpu_info->cpu_times.user = (uint64_t)(info[CP_USER]) * multiplier;
234 cpu_info->cpu_times.nice = (uint64_t)(info[CP_NICE]) * multiplier;
235 cpu_info->cpu_times.sys = (uint64_t)(info[CP_SYS]) * multiplier;
236 cpu_info->cpu_times.idle = (uint64_t)(info[CP_IDLE]) * multiplier;
237 cpu_info->cpu_times.irq = (uint64_t)(info[CP_INTR]) * multiplier;
freebsd.c 184 multiplier = ((uint64_t)1000L / ticks), cpuspeed, maxcpus, local
260 cpu_info->cpu_times.user = (uint64_t)(cp_times[CP_USER+cur]) * multiplier;
261 cpu_info->cpu_times.nice = (uint64_t)(cp_times[CP_NICE+cur]) * multiplier;
262 cpu_info->cpu_times.sys = (uint64_t)(cp_times[CP_SYS+cur]) * multiplier;
263 cpu_info->cpu_times.idle = (uint64_t)(cp_times[CP_IDLE+cur]) * multiplier;
264 cpu_info->cpu_times.irq = (uint64_t)(cp_times[CP_INTR+cur]) * multiplier;
linux-core.c 527 unsigned int multiplier; local
541 multiplier = ((uint64_t)1000L / ticks);
583 ts.user = user * multiplier;
584 ts.nice = nice * multiplier;
585 ts.sys = sys * multiplier;
586 ts.idle = idle * multiplier;
587 ts.irq = irq * multiplier;
  /src/external/public-domain/xz/dist/src/xz/
util.c 96 uint64_t multiplier = 0; local
98 multiplier = UINT64_C(1) << 10;
100 multiplier = UINT64_C(1) << 20;
102 multiplier = UINT64_C(1) << 30;
110 multiplier = 0;
112 if (multiplier == 0) {
113 message(V_ERROR, _("%s: Invalid multiplier suffix"),
120 if (result > UINT64_MAX / multiplier)
123 result *= multiplier;
  /src/sys/dev/pci/ixgbe/
ixgbe_dcb.c 60 int min_credit, multiplier; local
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/external/apache2/llvm/dist/llvm/utils/benchmark/src/
benchmark.cc 259 double multiplier = min_time * 1.4 / std::max(seconds, 1e-9); local
261 // use the multiplier directly. Otherwise we use at most 10 times
266 multiplier = is_significant ? multiplier : std::min(10.0, multiplier);
267 if (multiplier <= 1.0) multiplier = 2.0;
268 double next_iters = std::max(multiplier * iters, iters + 1.0);
272 VLOG(3) << "Next iters: " << next_iters << ", " << multiplier << "\n"; local
  /src/external/bsd/zstd/dist/programs/
benchfn.c 236 /* previous run was too short : blindly increase workload by x multiplier */
237 const unsigned multiplier = 10; local
238 assert(cont->nbLoops < ((unsigned)-1) / multiplier); /* avoid overflow */
239 cont->nbLoops *= multiplier;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
random.h 361 /** The multiplier. */
362 static const _UIntType multiplier = __a; member in class:linear_congruential
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce/
amdgpu_dce_aux.c 440 uint32_t multiplier = 0; local
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/external/bsd/elftosb/dist/elftosb2/
elftosb.cpp 413 * Metric multiplier prefixes are supported.
428 unsigned multiplier; local
432 multiplier = 1024 * 1024 * 1024;
435 multiplier = 1024 * 1024;
438 multiplier = 1024;
441 multiplier = 1;
443 intValue *= multiplier;
  /src/external/bsd/pdisk/dist/
dump.c 880 int multiplier; local
884 multiplier = ' ';
888 multiplier = 'K';
892 multiplier = 'M';
896 multiplier = 'G';
899 multiplier = 'T';
905 *prefix = multiplier;
  /src/external/gpl3/gcc/dist/gcc/fortran/
trans-common.cc 833 mpz_t multiplier, offset, extent, n; local
839 mpz_init_set_ui (multiplier, 1);
854 mpz_mul (n, n, multiplier);
868 mpz_mul (multiplier, multiplier, extent);
873 mpz_clear (multiplier);
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
trans-common.cc 833 mpz_t multiplier, offset, extent, n; local
839 mpz_init_set_ui (multiplier, 1);
854 mpz_mul (n, n, multiplier);
868 mpz_mul (multiplier, multiplier, extent);
873 mpz_clear (multiplier);
  /src/sys/arch/arm/arm/
cpufunc.c 1396 u_int multiplier; local
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;

Completed in 41 milliseconds

1 2