OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RDIV
(Results
1 - 17
of
17
) sorted by relevancy
/src/external/gpl3/gcc.old/dist/gcc/
profile-count.h
75
#define
RDIV
(X,Y) (((X) + (Y) / 2) / (Y))
260
ret.m_val =
RDIV
(v * (uint64_t) max_probability, REG_BR_PROB_BASE);
278
return
RDIV
(m_val * (uint64_t) REG_BR_PROB_BASE, max_probability);
393
ret.m_val =
RDIV
((uint64_t)m_val * other.m_val, max_probability);
407
m_val =
RDIV
((uint64_t)m_val * other.m_val, max_probability);
433
ret.m_val = MIN (
RDIV
((uint64_t)m_val * max_probability,
463
m_val = MIN (
RDIV
((uint64_t)m_val * max_probability,
504
return
RDIV
(val * m_val, max_probability);
1052
ret.m_val =
RDIV
(m_val * prob, REG_BR_PROB_BASE);
1200
ret.m_val =
RDIV
(m_val * profile_probability::max_probability
[
all
...]
basic-block.h
308
((den) ?
RDIV
((num) * REG_BR_PROB_BASE, (den)) : REG_BR_PROB_BASE)
583
return
RDIV
(prob1 * prob2, REG_BR_PROB_BASE);
593
return
RDIV
(freq * scale, REG_BR_PROB_BASE);
ipa-fnsummary.cc
3875
size =
RDIV
(size, ipa_fn_summary::size_scale);
3876
min_size =
RDIV
(min_size, ipa_fn_summary::size_scale);
4286
size_info->size =
RDIV
(size_info->size, ipa_fn_summary::size_scale);
4287
info->min_size =
RDIV
(info->min_size, ipa_fn_summary::size_scale);
predict.cc
2057
RDIV
(REG_BR_PROB_BASE,
2083
probability =
RDIV
(REG_BR_PROB_BASE, nitercst);
2593
*probability =
RDIV
(p1 * p2, REG_BR_PROB_BASE);
lto-cgraph.cc
1690
scale =
RDIV
(node->count_materialization_scale * max_runs,
/src/external/gpl3/gcc/dist/gcc/
profile-count.h
75
#define
RDIV
(X,Y) (((X) + (Y) / 2) / (Y))
265
ret.m_val =
RDIV
(v * (uint64_t) max_probability, REG_BR_PROB_BASE);
283
return
RDIV
(m_val * (uint64_t) REG_BR_PROB_BASE, max_probability);
398
ret.m_val =
RDIV
((uint64_t)m_val * other.m_val, max_probability);
412
m_val =
RDIV
((uint64_t)m_val * other.m_val, max_probability);
438
ret.m_val = MIN (
RDIV
((uint64_t)m_val * max_probability,
468
m_val = MIN (
RDIV
((uint64_t)m_val * max_probability,
509
return
RDIV
(val * m_val, max_probability);
1282
ret.m_val =
RDIV
(m_val * profile_probability::max_probability,
basic-block.h
300
((den) ?
RDIV
((num) * REG_BR_PROB_BASE, (den)) : REG_BR_PROB_BASE)
575
return
RDIV
(prob1 * prob2, REG_BR_PROB_BASE);
585
return
RDIV
(freq * scale, REG_BR_PROB_BASE);
profile-count.cc
484
uint32_t val2 =
RDIV
((uint64_t)val * val, max_probability);
internal-fn.def
283
DEF_INTERNAL_COND_FN (
RDIV
, ECF_CONST, sdiv, binary)
ipa-fnsummary.cc
3983
size =
RDIV
(size, ipa_fn_summary::size_scale);
3984
min_size =
RDIV
(min_size, ipa_fn_summary::size_scale);
4397
size_info->size =
RDIV
(size_info->size, ipa_fn_summary::size_scale);
4398
info->min_size =
RDIV
(info->min_size, ipa_fn_summary::size_scale);
predict.cc
2063
RDIV
(REG_BR_PROB_BASE,
2089
probability =
RDIV
(REG_BR_PROB_BASE, nitercst);
2687
*probability =
RDIV
(p1 * p2, REG_BR_PROB_BASE);
lto-cgraph.cc
1735
scale =
RDIV
(node->count_materialization_scale * max_runs,
internal-fn.cc
4378
T (RDIV_EXPR,
RDIV
) \
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
DependenceAnalysis.h
348
enum ClassificationKind { ZIV, SIV,
RDIV
, MIV, NonLinear } Classification;
588
/// and classifies it as either ZIV, SIV,
RDIV
, MIV, or Nonlinear.
622
/// testRDIV - Tests the
RDIV
subscript pair (Src and Dst) for dependence.
732
/// exactRDIVtest - Tests the
RDIV
subscript pair for dependence.
748
/// symbolicRDIVtest - Tests the
RDIV
subscript pair for dependence.
/src/external/gpl3/gcc.old/dist/libgcc/
libgcov-util.c
38
#define
RDIV
(X,Y) (((X) + (Y) / 2) / (Y))
817
return (gcov_type) (
RDIV
(v,d) * n);
/src/external/gpl3/gcc/dist/libgcc/
libgcov-util.c
38
#define
RDIV
(X,Y) (((X) + (Y) / 2) / (Y))
905
return (gcov_type) (
RDIV
(v,d) * n);
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
DependenceAnalysis.cpp
22
// coupled
RDIV
subscripts and lacks a multi-subscript MIV test.
95
STATISTIC(ExactRDIVapplications, "Exact
RDIV
applications");
96
STATISTIC(ExactRDIVindependence, "Exact
RDIV
independence");
97
STATISTIC(SymbolicRDIVapplications, "Symbolic
RDIV
applications");
98
STATISTIC(SymbolicRDIVindependence, "Symbolic
RDIV
independence");
929
// and classifies it as either ZIV, SIV,
RDIV
, MIV, or Nonlinear.
951
return Subscript::
RDIV
;
1862
// exactRDIVtest - Tests the
RDIV
subscript pair for dependence.
1873
LLVM_DEBUG(dbgs() << "\tExact
RDIV
test\n");
1987
// Extreme-Value Test) that can handle some of the SIV and
RDIV
cases
[
all
...]
Completed in 74 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026