/third_party/backends/backend/genesys/ |
H A D | tables_sensor.cpp | 176 Ratio pixel_count_ratio; in genesys_init_sensor_tables() 183 { { 50 }, 600, 100, 12000, Ratio{1, 2}, 0, StaggerConfig{}, { in genesys_init_sensor_tables() 192 { { 75 }, 600, 150, 11000, Ratio{1, 2}, 1, StaggerConfig{}, { in genesys_init_sensor_tables() 201 { { 100 }, 600, 200, 11000, Ratio{1, 2}, 1, StaggerConfig{}, { in genesys_init_sensor_tables() 210 { { 150 }, 600, 300, 11000, Ratio{1, 2}, 2, StaggerConfig{}, { in genesys_init_sensor_tables() 219 { { 200 }, 600, 400, 11000, Ratio{1, 2}, 2, StaggerConfig{}, { in genesys_init_sensor_tables() 228 { { 300 }, 600, 600, 11000, Ratio{1, 2}, 4, StaggerConfig{}, { in genesys_init_sensor_tables() 237 { { 400 }, 600, 800, 11000, Ratio{1, 2}, 5, StaggerConfig{}, { in genesys_init_sensor_tables() 246 { { 600 }, 600, 1200, 11000, Ratio{1, 2}, 8, StaggerConfig{}, { in genesys_init_sensor_tables() 255 { { 1200 }, 1200, 1200, 11000, Ratio{ in genesys_init_sensor_tables() [all...] |
H A D | utilities.h | 134 class Ratio class 137 Ratio() : multiplier_{1}, divisor_{1} in Ratio() function in genesys::Ratio 141 Ratio(unsigned multiplier, unsigned divisor) : multiplier_{multiplier}, divisor_{divisor} in Ratio() function in genesys::Ratio 178 bool operator==(const Ratio& other) const in operator ==() 187 friend void serialize(Stream& str, Ratio& x); 191 void serialize(Stream& str, Ratio& x) in serialize() 197 inline std::ostream& operator<<(std::ostream& out, const Ratio& ratio) in operator <<()
|
H A D | settings.h | 277 Ratio pixel_count_ratio = Ratio{1, 1};
|
H A D | sensor.h | 272 Ratio pixel_count_ratio = Ratio{1, 1};
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineSimplifyDemanded.cpp | 1459 unsigned Ratio; in SimplifyDemandedVectorElts() local 1464 Ratio = 1; in SimplifyDemandedVectorElts() 1470 Ratio = VWidth / InVWidth; in SimplifyDemandedVectorElts() 1473 InputDemandedElts.setBit(OutIdx / Ratio); in SimplifyDemandedVectorElts() 1478 Ratio = InVWidth / VWidth; in SimplifyDemandedVectorElts() 1480 if (DemandedElts[InIdx / Ratio]) in SimplifyDemandedVectorElts() 1496 if (UndefElts2[OutIdx / Ratio]) in SimplifyDemandedVectorElts() 1503 APInt SubUndef = UndefElts2.lshr(OutIdx * Ratio).zextOrTrunc(Ratio); in SimplifyDemandedVectorElts() 1504 if (SubUndef.countPopulation() == Ratio) in SimplifyDemandedVectorElts() [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/time/ |
H A D | time.h | 1486 template <typename Ratio> 1487 int64_t ToInt64(Duration d, Ratio) { in ToInt64() 1490 return ToInt64Seconds(d * Ratio::den / Ratio::num); in ToInt64()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | ConstantFolding.cpp | 208 unsigned Ratio = NumSrcElt/NumDstElt; in FoldBitCast() local 214 unsigned ShiftAmt = isLittleEndian ? 0 : SrcBitSize*(Ratio-1); in FoldBitCast() 215 for (unsigned j = 0; j != Ratio; ++j) { in FoldBitCast() 241 unsigned Ratio = NumDstElt/NumSrcElt; in FoldBitCast() local 253 Result.append(Ratio, UndefValue::get(DstEltTy)); in FoldBitCast() 261 unsigned ShiftAmt = isLittleEndian ? 0 : DstBitSize*(Ratio-1); in FoldBitCast() 262 for (unsigned j = 0; j != Ratio; ++j) { in FoldBitCast()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/ |
H A D | Execution.cpp | 1609 unsigned Ratio = SrcNum / DstNum; 1615 unsigned ShiftAmt = isLittleEndian ? 0 : SrcBitSize * (Ratio - 1); 1616 for (unsigned j = 0; j < Ratio; j++) { 1629 unsigned Ratio = DstNum / SrcNum; 1631 unsigned ShiftAmt = isLittleEndian ? 0 : DstBitSize * (Ratio - 1); 1632 for (unsigned j = 0; j < Ratio; j++) {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | MachineLICM.cpp | 1587 double Ratio = (double)DstBF / SrcBF; in isTgtHotterThanSrc() local 1590 return Ratio > BlockFrequencyRatioThreshold; in isTgtHotterThanSrc()
|
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 2064 template <class Ratio> 2069 template <class Ratio> 2070 std::string ratio_string<Ratio>::symbol() { 2072 rss << '[' << Ratio::num << '/' 2073 << Ratio::den << ']'; 2103 template<typename Value, typename Ratio> 2104 struct StringMaker<std::chrono::duration<Value, Ratio>> { 2105 static std::string convert(std::chrono::duration<Value, Ratio> const& duration) { 2107 rss << duration.count() << ' ' << ratio_string<Ratio>::symbol() << 's';
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | [all...] |