Lines Matching refs:pos

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
271 inDrawBox = PutHaltMessage( pdp, pos, msg ); in ShowWithManualScroll()
292 ClearMessage( pdp, pos, msg ); in ShowWithManualScroll()
294 pos.y -= DirectPrint::FONT_HEIGHT; in ShowWithManualScroll()
301 if ( pos.y <= -DirectPrint::FONT_HEIGHT ) in ShowWithManualScroll()
304 ClearMessage( pdp, pos, msg ); in ShowWithManualScroll()
306 pos.y += DirectPrint::FONT_HEIGHT; in ShowWithManualScroll()
434 int pos = 0; in PutBackTraceString() local
438 pos += nn::nstd::TSPrintf( pOut + pos , " back trace:\n" ); in PutBackTraceString()
439 pos += nn::nstd::TSPrintf( pOut + pos , " lr 0x%08x\n", lr & ~1); in PutBackTraceString()
454 pos += nn::nstd::TSNPrintf( pOut + pos , size - pos, in PutBackTraceString()
458 if( (count >= 10) || (pos >= size) ) in PutBackTraceString()
466 return pos; in PutBackTraceString()
508 int pos; in ExceptionHandlerBody() local
512 pos = nn::nstd::TSNPrintf( buf , sizeof(buf) , in ExceptionHandlerBody()
527 NN_PUT(buf + prevPos, pos - prevPos); in ExceptionHandlerBody()
528 prevPos = pos; in ExceptionHandlerBody()
533 pos += nn::nstd::TSPrintf( buf + pos , " r%02d: 0x%08x\n", i, pec->r[i] ); in ExceptionHandlerBody()
534 NN_PUT(buf + prevPos, pos - prevPos); in ExceptionHandlerBody()
535 prevPos = pos; in ExceptionHandlerBody()
538 pos += nn::nstd::TSPrintf( buf + pos , " cpsr: 0x%08x\n", pec->cpsr ); in ExceptionHandlerBody()
539 NN_PUT(buf + prevPos, pos - prevPos); in ExceptionHandlerBody()
540 prevPos = pos; in ExceptionHandlerBody()
545 pos += PutBackTraceString(buf + pos, sizeof(buf) - pos, pec->r[13], pec->r[14]); in ExceptionHandlerBody()
546 NN_PUT(buf + prevPos, pos - prevPos); in ExceptionHandlerBody()
547 prevPos = pos; in ExceptionHandlerBody()
552 WriteToSd(buf, pos, m_BuildInfo, m_Suffix); in ExceptionHandlerBody()