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

1 2 3 4 5

  /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. */
gen-mul-tables.cc 31 shift) and computing the multiplier computed by those instructions.
49 each multiplier, it emits them in a table sorted by the multiplier
182 /* The multiplier produced by this expression tree. For example, for
1082 find_mult_constants_used (int multiplier)
1084 return (int *) bsearch (&multiplier, multiply_constants_used,
1106 tilepro_emit (int multiplier, int num_ops)
1108 int abs_multiplier = (multiplier >= 0) ? multiplier : -multiplier;
    [all...]
  /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/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/external/lgpl3/gmp/dist/tests/mpz/
t-mul.c 37 one (int i, mpz_t multiplicand, mpz_t multiplier)
45 mpz_mul (product, multiplier, multiplicand);
46 refmpz_mul (ref_product, multiplier, multiplicand);
49 multiplier, multiplicand, product, ref_product);
52 mpz_mul (product, multiplier, multiplier);
53 mpz_set (multiplicand, multiplier);
54 mpz_mul (ref_product, multiplier, multiplicand);
57 multiplier, multiplier, product, ref_product)
    [all...]
  /src/external/public-domain/xz/dist/src/xz/
util.c 139 uint64_t multiplier = 0; local
141 multiplier = UINT64_C(1) << 10;
143 multiplier = UINT64_C(1) << 20;
145 multiplier = UINT64_C(1) << 30;
153 multiplier = 0;
155 if (multiplier == 0) {
156 message(V_ERROR, _("%s: Invalid multiplier suffix"),
163 if (result > UINT64_MAX / multiplier)
166 result *= multiplier;
  /src/sys/dev/ic/
ugvar.h 45 int multiplier; member in struct:ug2_sensor_info
  /src/external/gpl3/gcc/dist/gcc/
gimple-loop-versioning.cc 160 /* The value of the term is EXPR * MULTIPLIER. */
162 unsigned HOST_WIDE_INT multiplier; member in struct:__anon13735::address_term_info
423 if (a->multiplier != b->multiplier)
424 return a->multiplier < b->multiplier ? -1 : 1;
441 if (address.terms[i].multiplier != 1)
442 dump_printf (flags, " * %wd", address.terms[i].multiplier);
459 hash.add_hwi (info->terms[i].multiplier);
480 || a->terms[i].multiplier != b->terms[i].multiplier
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-loop-versioning.cc 160 /* The value of the term is EXPR * MULTIPLIER. */
162 unsigned HOST_WIDE_INT multiplier; member in struct:__anon16164::address_term_info
423 if (a->multiplier != b->multiplier)
424 return a->multiplier < b->multiplier ? -1 : 1;
441 if (address.terms[i].multiplier != 1)
442 dump_printf (flags, " * %wd", address.terms[i].multiplier);
459 hash.add_hwi (info->terms[i].multiplier);
480 || a->terms[i].multiplier != b->terms[i].multiplier
    [all...]
  /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/gpl3/gdb/dist/sim/testsuite/msp430/
mpyull_hwmult.s 32 MOV.W #2, &MPY32L ; Load operand 1 Low into multiplier
33 MOV.W #0, &MPY32H ; Load operand 1 High into multiplier
34 MOV.W #-4, &OP2L ; Load operand 2 Low into multiplier
  /src/external/gpl3/gdb.old/dist/sim/testsuite/msp430/
mpyull_hwmult.s 32 MOV.W #2, &MPY32L ; Load operand 1 Low into multiplier
33 MOV.W #0, &MPY32H ; Load operand 1 High into multiplier
34 MOV.W #-4, &OP2L ; Load operand 2 Low into multiplier
  /src/external/mit/libuv/dist/src/unix/
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;
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;
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;
  /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/bsd/jemalloc.old/dist/src/
nstime.c 134 nstime_imultiply(nstime_t *time, uint64_t multiplier) {
136 assert((((time->ns | multiplier) & (UINT64_MAX << (sizeof(uint64_t) <<
137 2))) == 0) || ((time->ns * multiplier) / multiplier == time->ns));
140 time->ns *= multiplier;
  /src/external/bsd/jemalloc/dist/src/
nstime.c 134 nstime_imultiply(nstime_t *time, uint64_t multiplier) {
137 (((time->ns | multiplier) & (UINT64_MAX << (sizeof(uint64_t) << 2)))
139 || ((time->ns * multiplier) / multiplier == time->ns));
142 time->ns *= 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/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/lgpl3/gmp/dist/mpn/x86/pentium/mmx/
mul_1.asm 35 C P5: 12.0 for 32-bit multiplier
36 C 7.0 for 16-bit multiplier
40 C mp_limb_t multiplier);
42 C When the multiplier is 16 bits some special case MMX code is used. Small
53 C for the high and low halves of the multiplier, and would probably
67 C bits, possibly as carry<multiplier, this being true of a big calculation
192 C Special case for 16-bit multiplier.
194 C eax multiplier
200 C ebp multiplier
253 C In the comments x represents the src data and m the multiplier (1
    [all...]

Completed in 31 milliseconds

1 2 3 4 5