Home
last modified time | relevance | path

Searched refs:max (Results 1 – 15 of 15) sorted by relevance

/CTR-SDK-0.14.4/include/nn/
Dassert.h144 …define NN_MAX_ASSERT(exp, max) NN_ASSERTMSG( (exp) <= (max), "%s(=%d) must be <= %s(=%… argument
145 …fine NN_MAX_TASSERT_(exp, max) NN_TASSERTMSG_( (exp) <= (max), "%s(=%d) must be <= %s(=%… argument
146 …fine NN_MAX_SASSERT_(exp, max) NN_SASSERTMSG_( (exp) <= (max), "%s(=%d) must be <= %s(=%… argument
148 …p, min, max) NN_ASSERTMSG( (exp) >= (min) && (exp) <= (max), "%s(=%d) must be >= %s(=%d) and <… argument
149 …p, min, max) NN_TASSERTMSG_( (exp) >= (min) && (exp) <= (max), "%s(=%d) must be >= %s(=%d) and <… argument
150 …p, min, max) NN_SASSERTMSG_( (exp) >= (min) && (exp) <= (max), "%s(=%d) must be >= %s(=%d) and <… argument
/CTR-SDK-0.14.4/include/nn/os/
Dos_LightSemaphore.h69 s32 max; member
77 if( x > max - value ) in operator()
79 x = max; in operator()
/CTR-SDK-0.14.4/include/nn/font/CTR/
Dfont_CharWriter.h128 util::Color8 max in SetColorMapping() argument
132 m_ColorMapping.max = max; in SetColorMapping()
145 const util::Color8 GetColorMappingMax() const { return m_ColorMapping.max; } in GetColorMappingMax()
589 util::Color8 max; member
/CTR-SDK-0.14.4/include/nn/math/
Dmath_Config.h31 #define NN_MATH_MINMAXLT_ASSERT(exp, min, max) \ argument
32 …exp) < (max), #exp " is out of bounds(%d)\n%d <= "#exp" < %d not satisfied.", static_cast<int>(exp…
Dmath_Geometry.h282 AABB(const VEC3& min, const VEC3& max, bool isNormalized = false)
283 : Pmin(min), Pmax(max) in Pmin()
/CTR-SDK-0.14.4/sources/libraries/rdt/CTR/
Drdt_Stopwatch.cpp178 s64 max = nnosTickConvertToMicroSeconds(m_max); in printContents() local
180 … Printf( "%10.2llf, %8lld, %8lld, %10lld, %8d, \"%s\"\n", avg, min, max, total, m_times, m_name); in printContents()
Drdt_Utility.h260 T max(T a, T b) in max() function
/CTR-SDK-0.14.4/include/nn/font/
Dfont_Font.h26 #define NN_FONT_MINMAX_ASSERT(exp, min, max) NN_ASSERT((exp) >= (min) && (exp) <= (max)) argument
/CTR-SDK-0.14.4/include/nn/fnd/
Dfnd_Allocator.h91 … size_type max_size() const throw() { return ::std::numeric_limits<size_type>::max() / sizeof(T); } in max_size()
121 … size_type max_size() const throw() { return ::std::numeric_limits<size_type>::max() / sizeof(T); } in max_size()
/CTR-SDK-0.14.4/sources/libraries/os/
Dos_LightSemaphore.cpp28 updater.max = m_Max; in Release()
/CTR-SDK-0.14.4/build/omake/
Dtooldefs.om112 --max-instatement-indent=40 --min-conditional-indent=0 \
/CTR-SDK-0.14.4/include/nn/hid/CTR/
Dhid_PadReader.h161 void SetStickClamp(s16 min, s16 max);
/CTR-SDK-0.14.4/include/nn/gx/CTR/
Dgx_MacroOld.h581 #define PICA_CMD_DATA_TEX_LOD_REV(bias, max, min) \ argument
582 ( (bias) | (max) << 16 | (((min) < 0) ? 0 : (min)) << 24 )
/CTR-SDK-0.14.4/sources/libraries/math/
Dmath_Geometry.cpp1210 IntersectionRay3AABB_(f32 min, f32 max, f32 o, f32 dir, f32& tNear, f32& tFar) in IntersectionRay3AABB_() argument
1215 if (o < min || o > max) in IntersectionRay3AABB_()
1223 f32 t1 = (max - o) * inv_dir; in IntersectionRay3AABB_()
1584 a2->Pmax.x = ::std::max(a0->Pmax.x, a1->Pmax.x); in MergeAABB()
1585 a2->Pmax.y = ::std::max(a0->Pmax.y, a1->Pmax.y); in MergeAABB()
1586 a2->Pmax.z = ::std::max(a0->Pmax.z, a1->Pmax.z); in MergeAABB()
/CTR-SDK-0.14.4/include/nn/math/ARMv6/inline/
Dmath_Matrix44.ipp763 f32 max = 0.0f;
771 if ( ftmp > max )
773 max = ftmp;
780 if ( max == 0.0f )