Searched refs:maxValue (Results 1 – 9 of 9) sorted by relevance
| /llvm-project-15.0.7/libcxx/test/std/time/time.cal/ |
| H A D | euclidian.h | 14 template <typename T, T minValue, T maxValue> 17 const T modulus = maxValue - minValue + 1; in euclidian_addition() 19 if (ret > maxValue) in euclidian_addition() 28 template <typename T, T minValue, T maxValue> 31 const T modulus = maxValue - minValue + 1; in euclidian_subtraction() 35 if (ret > maxValue) // this can happen if T is unsigned in euclidian_subtraction()
|
| /llvm-project-15.0.7/llvm/utils/ |
| H A D | llvm-mca-compare.py | 349 maxValue = 0 352 if maxValue < values[j][i]: 353 maxValue = values[j][i] 363 if maxValue < values[j][i]: 364 maxValue = values[j][i] 368 axs[x][y].set_ylim([0, maxValue + (maxValue / 2)]) 374 values[j][i] + (maxValue / 40), 453 maxValue = 0 455 if maxValue < max(array_average_resource_pressure_per_file[j]): 456 maxValue = max(array_average_resource_pressure_per_file[j]) [all …]
|
| /llvm-project-15.0.7/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonAsmBackend.cpp | 614 int64_t maxValue; in fixupNeedsRelaxationAdvanced() local 618 maxValue = 1 << 8; in fixupNeedsRelaxationAdvanced() 621 maxValue = 1 << 10; in fixupNeedsRelaxationAdvanced() 624 maxValue = 1 << 16; in fixupNeedsRelaxationAdvanced() 627 maxValue = 1 << 23; in fixupNeedsRelaxationAdvanced() 630 maxValue = INT64_MAX; in fixupNeedsRelaxationAdvanced() 634 bool isFarAway = -maxValue > sValue || sValue > maxValue - 1; in fixupNeedsRelaxationAdvanced()
|
| /llvm-project-15.0.7/llvm/utils/lit/lit/ |
| H A D | util.py | 257 maxValue = max([v for _, v in items]) 260 power = int(math.ceil(math.log(maxValue, 10))) 263 N = int(math.ceil(maxValue / barH)) 271 bin = min(int(N * v / maxValue), N - 1) 282 pDigits = int(math.ceil(math.log(maxValue, 10)))
|
| /llvm-project-15.0.7/flang/include/flang/Common/ |
| H A D | fast-int-set.h | 34 static constexpr int maxValue{N - 1}; 39 bool IsValidValue(int n) const { return n >= 0 && n <= maxValue; } in IsValidValue()
|
| /llvm-project-15.0.7/clang/test/CodeGenObjC/ |
| H A D | protocols.m | 21 +(int) maxValue; class 72 return [P1Object maxValue];
|
| /llvm-project-15.0.7/flang/runtime/ |
| H A D | unit-map.cpp | 20 for (int j{freeNewUnits_.maxValue}; j > 1; --j) { in Initialize()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/Thumb2/LowOverheadLoops/ |
| H A D | skip-vpt-debug.mir | 50 %maxValue.0.lcssa = phi float [ 0x3810000000000000, %entry ], [ %13, %middle.block ], !dbg !29 51 store float %maxValue.0.lcssa, float* %pResult, align 4, !dbg !45, !tbaa !34 114 !27 = !DILocalVariable(name: "maxValue", scope: !13, file: !1, line: 7, type: !18)
|
| /llvm-project-15.0.7/mlir/lib/Conversion/TosaToLinalg/ |
| H A D | TosaToLinalg.cpp | 155 int64_t maxValue = APInt::getSignedMaxValue(inputBitWidth).getSExtValue() + in createLinalgBodyCalculationForElementwiseOp() local 161 if (maxValue <= APInt::getSignedMaxValue(16).getSExtValue()) { in createLinalgBodyCalculationForElementwiseOp() 163 } else if (maxValue <= APInt::getSignedMaxValue(32).getSExtValue()) { in createLinalgBodyCalculationForElementwiseOp() 165 } else if (maxValue <= APInt::getSignedMaxValue(48).getSExtValue()) { in createLinalgBodyCalculationForElementwiseOp()
|