HomeSort by: relevance | last modified time | path
    Searched refs:Scaled (Results 1 - 16 of 16) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-color-helper.cpp 84 double Scaled[3] = {std::get<0>(Color) / 255.0, std::get<1>(Color) / 255.0,
89 if (Scaled[i] < Scaled[Min])
91 if (Scaled[i] > Scaled[Max])
95 double C = Scaled[Max] - Scaled[Min];
98 (C == 0) ? 0 : (Scaled[(Max + 1) % 3] - Scaled[(Max + 2) % 3]) / C;
103 double V = Scaled[Max]
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/
Instrumentation.h 191 uint64_t Scaled = Count / Scale;
192 assert(Scaled <= std::numeric_limits<uint32_t>::max() && "overflow 32-bits");
193 return Scaled;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 248 // Early exit if nothing needs to be scaled.
471 // be scaled so that Max == UINT64_MAX so that they can be best
473 // frequencies are scaled down to 1, making it impossible to differentiate
495 Scaled64 Scaled = BFI.Freqs[Index].Scaled * ScalingFactor;
496 BFI.Freqs[Index].Integer = std::max(UINT64_C(1), Scaled.toInt<uint64_t>());
498 << BFI.Freqs[Index].Scaled << ", scaled = " << Scaled
521 : BFI.Freqs[N.Index].Scaled;
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h 132 /// Get the scaled number of cycles used per processor resource in MBB.
136 /// These numbers have already been scaled by SchedModel.getResourceFactor().
413 // Convert scaled resource usage to a cycle count that can be compared with
415 unsigned getCycles(unsigned Scaled) {
417 return (Scaled + Factor - 1) / Factor;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
SpillPlacement.cpp 254 uint64_t Scaled = (Freq >> 13) + bool(Freq & (1 << 12));
255 Threshold = std::max(UINT64_C(1), Scaled);
  /src/external/gpl3/gdb/dist/sim/aarch64/
decode.h 66 be optionally scaled so the decode needs to pass that
72 Scaled = 1,
simulator.c 507 or Long. The third argument is either Scaled or Unscaled.
508 N.B. when _Scaling is Scaled the shift gets ANDed with
575 /* Load 16 bit scaled unsigned 12 bit. */
587 /* Load 32 bit scaled unsigned 12 bit. */
599 /* Load 64 bit scaled unsigned 12 bit. */
611 /* Load 128 bit scaled unsigned 12 bit. */
624 /* Load 32 bit scaled or unscaled zero- or sign-extended
662 /* Load 64 bit scaled or unscaled zero- or sign-extended 32-bit register offset. */
696 /* Load 128 bit scaled or unscaled zero- or sign-extended 32-bit register offset */
716 Scaled, 12-bit, unsigned immediate offset, without pre- an
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/aarch64/
decode.h 66 be optionally scaled so the decode needs to pass that
72 Scaled = 1,
simulator.c 507 or Long. The third argument is either Scaled or Unscaled.
508 N.B. when _Scaling is Scaled the shift gets ANDed with
575 /* Load 16 bit scaled unsigned 12 bit. */
587 /* Load 32 bit scaled unsigned 12 bit. */
599 /* Load 64 bit scaled unsigned 12 bit. */
611 /* Load 128 bit scaled unsigned 12 bit. */
624 /* Load 32 bit scaled or unscaled zero- or sign-extended
662 /* Load 64 bit scaled or unscaled zero- or sign-extended 32-bit register offset. */
696 /* Load 128 bit scaled or unscaled zero- or sign-extended 32-bit register offset */
716 Scaled, 12-bit, unsigned immediate offset, without pre- an
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGDumper.cpp 771 auto Scaled = MGather->isIndexScaled() ? "scaled" : "unscaled";
772 OS << ", " << Signed << " " << Scaled << " offset";
783 auto Scaled = MScatter->isIndexScaled() ? "scaled" : "unscaled";
784 OS << ", " << Signed << " " << Scaled << " offset";
DAGCombiner.cpp 9640 bool Scaled, SelectionDAG &DAG) {
9645 MGS->setIndexType(Scaled ? ISD::UNSIGNED_SCALED : ISD::UNSIGNED_UNSCALED);
9654 MGS->setIndexType(Scaled ? ISD::SIGNED_SCALED : ISD::SIGNED_UNSCALED);
19893 // For scalable vectors, EXTRACT_SUBVECTOR indexes are implicitly scaled.
23030 // scaled by `vscale`, so bail out early.
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenPGO.cpp 1062 uint64_t Scaled = Weight / Scale + 1;
1063 assert(Scaled <= UINT32_MAX && "overflow 32-bits");
1064 return Scaled;
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARC/
ARCInstrInfo.cpp 35 Scaled = 3
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 84 /// Masses can be scaled by \a BranchProbability at maximum precision.
136 /// Convert to scaled number.
209 Scaled64 Scaled;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
ScalarEvolutionExpander.cpp 497 // Record the scaled array index for this level of the type. If
501 Value *Scaled =
505 GepIndices.push_back(Scaled);
1102 // If the step isn't constant, don't use an implicitly scaled GEP, because
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 4088 {std::make_tuple(/*Scaled*/ false, /*Signed*/ false, /*Extend*/ false),
4090 {std::make_tuple(/*Scaled*/ false, /*Signed*/ false, /*Extend*/ true),
4092 {std::make_tuple(/*Scaled*/ false, /*Signed*/ true, /*Extend*/ false),
4094 {std::make_tuple(/*Scaled*/ false, /*Signed*/ true, /*Extend*/ true),
4096 {std::make_tuple(/*Scaled*/ true, /*Signed*/ false, /*Extend*/ false),
4098 {std::make_tuple(/*Scaled*/ true, /*Signed*/ false, /*Extend*/ true),
4100 {std::make_tuple(/*Scaled*/ true, /*Signed*/ true, /*Extend*/ false),
4102 {std::make_tuple(/*Scaled*/ true, /*Signed*/ true, /*Extend*/ true),
4111 {std::make_tuple(/*Scaled*/ false, /*Signed*/ false, /*Extend*/ false),
4113 {std::make_tuple(/*Scaled*/ false, /*Signed*/ false, /*Extend*/ true)
    [all...]

Completed in 83 milliseconds