Home
last modified time | relevance | path

Searched defs:NumericLimits (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/openthread/src/core/common/
H A Dnumeric_limits.hpp69 template <typename Type> struct NumericLimits struct
75 template <> struct NumericLimits<int8_t> struct
77 static constexpr int8_t kMin = INT8_MIN;
78 static constexpr int8_t kMax = INT8_MAX;
81 template <> struct NumericLimits<int16_t> struct
83 static constexpr int16_t kMin = INT16_MIN;
84 static constexpr int16_t kMax = INT16_MAX;
87 template <> struct NumericLimits<int32_t> struct
89 static constexpr int32_t kMin = INT32_MIN;
90 static constexpr int32_t kMax = INT32_MAX;
[all …]