Home
last modified time | relevance | path

Searched refs:g (Results 1 – 14 of 14) sorted by relevance

/CTR-SDK-0.14.4/include/nn/util/
Dutil_Color.h79 g(static_cast<u8>(green)), in Color8()
137 nn::math::Min(this->g + right.g, ELEMENT_MAX),
155 nn::math::Max(this->g - right.g, ELEMENT_MIN),
173 this->g * right.g / ELEMENT_MAX,
191 … (right.g != 0) ? nn::math::Min(this->g * ELEMENT_MAX / right.g, ELEMENT_MAX): ELEMENT_MAX,
207 if (g < ELEMENT_MAX) { g++; }
223 if (g < ELEMENT_MAX) { g++; }
238 if (g > ELEMENT_MIN) { g--; }
254 if (g > ELEMENT_MIN) { g--; }
350 nn::math::Min(this->g + right.g, ELEMENT_MAX),
[all …]
/CTR-SDK-0.14.4/build/omake/
Dutildefs.om24 case $(pattern) g
38 case $'\*(\.\*)+' g
40 case $'\.' g
42 case $'\*' g
44 case $'[()]' g
Dcommondefs.cctype.GCC.om47 CXX = g++$(GCC_SUFFIX)
Dcommondefs.cctype.RVCT.om286 case $'\(A?[[:digit:]]+W?\)' g
298 case $'\(A?[[:digit:]]+W?\)\(,| |$\)' g
Dtestutil.om385 … eprintln(�����^�[�Q�b�g���g�����e�X�g�����s����ɂ� CTR_RUN_DEVICES �Ń^�[�Q�b�g���w�肵�Ă��������B)
Dcommondefs.cctype.om51 case $'[-\.]' g
Dcommondefs.om41 eprintln(HORIZON_TARGETS �� CTRSDK_TARGETS �͓����Ɏg�p�ł��܂���̂ŁA�ǂ��炩����������`���ĉ������B)
/CTR-SDK-0.14.4/include/nn/gx/CTR/
Dgx_MacroCommon.h68 GLubyte g; member
73 #define PICA_CMD_DATA_COLOR_RGB8( r, g, b ) \ argument
74 ( r | g << 8 | b << 16 )
76 #define PICA_CMD_DATA_COLOR_RGBA8( r, g, b, a ) \ argument
77 ( r | g << 8 | b << 16 | a << 24 )
Dgx_MacroFragment.h66 ( (color.b) | (color.g) << 10 | (color.r) << 20 )
77 ( (color.b) | (color.g) << 10 | (color.r) << 20 )
Dgx_MacroMisc.h264 ( (color8.r) | (color8.g) << 8 | (color8.b) << 16 )
271 ( (color8.r) | (color8.g) << 8 | (color8.b) << 16 )
656 ( (color8.r) | (color8.g) << 8 | (color8.b) << 16 | (color8.a) << 24 )
Dgx_MacroTexture.h330 ( (color8.r) | (color8.g) << 8 | (color8.b) << 16 | (color8.a) << 24 )
979 (color8.g) << 8 | \
Dgx_MacroOld.h592 ( (color.b) | (color.g) << 10 | (color.r) << 20 )
/CTR-SDK-0.14.4/sources/libraries/gr/CTR/
Dgr_Shader.cpp365 for( int g = 0; g < exe_info->outMapCount; ++g ) in MakeOutAttrCommand_() local
369 if ( outmapInfo[ g ].type == vtxOutmapInfo[ v ].type ) in MakeOutAttrCommand_()
372 outmap_buffer[ outMapBufferCount ].type = outmapInfo[ g ].type; in MakeOutAttrCommand_()
374 outmap_buffer[ outMapBufferCount ].mask = outmapInfo[ g ].mask; in MakeOutAttrCommand_()
375 gs_copy_mask |= 1 << g; in MakeOutAttrCommand_()
382 for( int g = 0; g < exe_info->outMapCount; ++g ) in MakeOutAttrCommand_() local
384 …if ( !( gs_copy_mask & ( 1 << g ) ) && ( outmapInfo[ g ].type >= 0 && outmapInfo[ g ].type < 9 && … in MakeOutAttrCommand_()
387 outmap_buffer[ outMapBufferCount ].type = outmapInfo[ g ].type; in MakeOutAttrCommand_()
389 outmap_buffer[ outMapBufferCount ].mask = outmapInfo[ g ].mask; in MakeOutAttrCommand_()
/CTR-SDK-0.14.4/sources/libraries/rdt/CTR/
Drdt_ResendQueue.cpp280 Segment e, f, g; in Test() local
288 CU_ASSERT(r.Push(g)); in Test()