Home
last modified time | relevance | path

Searched refs:TypedInt (Results 1 – 2 of 2) sorted by relevance

/llvm-project/libc/src/__support/FPUtil/
H A DFPBits.h203 template <typename T> struct TypedInt {
205 LIBC_INLINE constexpr explicit TypedInt(T value) : value(value) {}
206 LIBC_INLINE constexpr TypedInt(const TypedInt &value) = default;
207 LIBC_INLINE constexpr TypedInt &operator=(const TypedInt &value) = default;
215 LIBC_INLINE friend constexpr bool operator==(TypedInt a, TypedInt b) {
218 LIBC_INLINE friend constexpr bool operator!=(TypedInt a, TypedInt
[all...]
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/readability/
H A Dqualified-auto.cpp65 int TypedInt = getInt(); in foo() local