Lines Matching full:factor
37 // The saturated distrution factor representing 100% for block probes.
51 // [25:19] - probe distribution factor
56 packProbeData(uint32_t Index, uint32_t Type, uint32_t Flags, uint32_t Factor,
61 assert(Factor <= 100 &&
62 "Probe distribution factor too big to encode, exceeding 100");
63 uint32_t V = (Index << 3) | (Factor << 19) | (Type << 26) | 0x7;
102 // The saturated distrution factor representing 100% for callsites.
122 // Distribution factor that estimates the portion of the real execution count.
123 // A saturated distribution factor stands for 1.0 or 100%. A pesudo probe has
124 // a factor with the value ranged from 0.0 to 1.0.
125 float Factor;
138 void setProbeDistributionFactor(Instruction &Inst, float Factor);