| /CTR-SDK-4.2.8-20130828/sources/libraries/dbg/ |
| D | dbg_Default.cpp | 49 math::VEC2 pos(0, 0); in HandleBreak() local 55 case BREAK_REASON_PANIC: pdp->Printf(pos, "Panic!"); break; in HandleBreak() 56 case BREAK_REASON_ASSERT: pdp->Printf(pos, "Assertion failed"); break; in HandleBreak() 57 case BREAK_REASON_USER: pdp->Printf(pos, "User Break"); break; in HandleBreak() 58 default: pdp->Printf(pos, "unknown break reason %d", reason); break; in HandleBreak() 60 pos.x += DirectPrint::FONT_WIDTH; in HandleBreak() 61 pos.y += DirectPrint::FONT_HEIGHT; in HandleBreak() 65 pdp->Printf(pos, "%-13s 0x%08X", "Result:", pResult->GetPrintableBits()); in HandleBreak() 66 pos.y += DirectPrint::FONT_HEIGHT; in HandleBreak() 70 pdp->Printf(pos, true, true, "%-13s %s(%d)", "File(Line):", filename, lineno); in HandleBreak() [all …]
|
| /CTR-SDK-4.2.8-20130828/sources/libraries/dbg/CTR/ |
| D | dbg_ExceptionScreen.cpp | 203 bool PutHaltMessage(nn::dbg::DirectPrint* pdp, const nn::math::VEC2& pos, const char* msg ) in PutHaltMessage() argument 205 pdp->PutString( pos, msg ); in PutHaltMessage() 216 void ClearMessage(nn::dbg::DirectPrint* pdp, const nn::math::VEC2& pos, const char* msg ) in ClearMessage() argument 220 PutHaltMessage( pdp, pos, msg ); in ClearMessage() 226 nn::math::VEC2 pos( 0 , 0 ); in ShowWithAutoScroll() local 230 bool ret = PutHaltMessage( pdp, pos, msg ); in ShowWithAutoScroll() 241 ClearMessage( pdp, pos, msg ); in ShowWithAutoScroll() 246 pos.y -= DirectPrint::FONT_HEIGHT; in ShowWithAutoScroll() 250 pos.y = 0; in ShowWithAutoScroll() 262 nn::math::VEC2 pos( 0 , 0 ); in ShowWithManualScroll() local [all …]
|
| D | dbg_DirectPrint.cpp | 109 void DirectPrint::Printf( const nn::math::VEC2& pos, const char* format, ... ) in Printf() argument 113 VPrintf( pos, format, v ); in Printf() 119 void DirectPrint::Printf( const nn::math::VEC2& pos, bool autoLineFeed, bool fillBg, const char* fo… in Printf() argument 123 VPrintf( pos, autoLineFeed, fillBg, format, v ); in Printf() 129 void DirectPrint::VPrintf( const nn::math::VEC2& pos, const char* format, va_list v ) in VPrintf() argument 131 VPrintf( pos, true, true, format, v ); in VPrintf() 136 void DirectPrint::VPrintf( const nn::math::VEC2& pos, bool autoLineFeed, bool fillBg, const char* f… in VPrintf() argument 140 PutString( pos, autoLineFeed, fillBg, buf ); in VPrintf() 145 void DirectPrint::PutString( const nn::math::VEC2& pos, const char* str ) in PutString() argument 147 PutString( pos, true, true, str ); in PutString() [all …]
|
| /CTR-SDK-4.2.8-20130828/include/nn/dbg/CTR/ |
| D | dbg_DirectPrint.h | 145 … void Printf( const nn::math::VEC2& pos, bool autoLineFeed, bool fillBg, const char* format, ... ); 156 void Printf( const nn::math::VEC2& pos, const char* format, ... ); 169 …void VPrintf( const nn::math::VEC2& pos, bool autoLineFeed, bool fillBg, const char* format, va_li… 180 void VPrintf( const nn::math::VEC2& pos, const char* format, va_list v ); 194 void PutString( const nn::math::VEC2& pos, bool autoLineFeed, bool fillBg, const char* str ); 204 void PutString( const nn::math::VEC2& pos, const char* str ); 213 void PutChar( const nn::math::VEC2& pos, bool fillBg, char c ); 223 void PutChar( const nn::math::VEC2& pos, char c );
|
| /CTR-SDK-4.2.8-20130828/include/nn/math/ |
| D | math_Utility.h | 318 inline T ExtractBits(bit32 v, int pos, int len) in ExtractBits() argument 320 return static_cast<T>( v & (((1u << len) - 1) << pos) ); in ExtractBits() 341 inline T ExtractBits(bit64 v, int pos, int len) in ExtractBits() argument 343 return static_cast<T>( v & (((1ull << len) - 1) << pos) ); in ExtractBits() 363 inline T GetBits(bit32 v, int pos, int len) in GetBits() argument 365 return static_cast<T>( (v >> pos) & ((1u << len) - 1) ); in GetBits() 385 inline T GetBits(bit64 v, int pos, int len) in GetBits() argument 387 return static_cast<T>( (v >> pos) & ((1ull << len) - 1) ); in GetBits()
|
| D | math_Arithmetic.h | 170 f32 pos = FAbs(abs); in FCopySign() local 173 return FSelect(sign, pos, neg); in FCopySign()
|
| /CTR-SDK-4.2.8-20130828/include/nn/hio/CTR/ |
| D | hio_HostFile.h | 245 s64 pos; in Seek() local 246 return Seek(&pos, offset, type).IsFailure() ? -1: pos; in Seek()
|
| /CTR-SDK-4.2.8-20130828/sources/libraries/rtport/rvct/ |
| D | rvct_stdio.cpp | 46 … int _sys_seek(FILEHANDLE fh, long pos) { NN_UNUSED_VAR(fh); NN_UNUSED_VAR(pos); return -1; } in _sys_seek() argument
|
| /CTR-SDK-4.2.8-20130828/include/nn/font/ |
| D | font_Types.h | 123 f32 pos[POS_NUM]; member
|
| /CTR-SDK-4.2.8-20130828/include/nn/font/CTR/ |
| D | font_DispStringBuffer.h | 27 math::VEC4 pos; member
|
| /CTR-SDK-4.2.8-20130828/include/ |
| D | zlib.h | 1656 z_off64_t pos; member 1662 ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : gzgetc(g)) 1665 ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : gzgetc(g))
|
| /CTR-SDK-4.2.8-20130828/include/nn/snd/CTR/MPCore/ |
| D | snd_Api.h | 345 bool SetSurroundSpeakerPosition(SurroundSpeakerPosition pos);
|