Lines Matching refs:u32
68 u32 g_longHold = 0; // Button held …
71 u32* g_idListBuf[NUM_MSG_BOX_TYPES] = { NULL };
72 u32 g_numMsgs[NUM_MSG_BOX_TYPES] = { 0 };
73 u32 g_idxSelectedId[NUM_MSG_BOX_TYPES] = { 0 };
74 u32 g_idxIdTopOfList[NUM_MSG_BOX_TYPES] = { 0 };
75 u32 g_lineTopOfBodyText = 0;
76 u32 g_numLinesBodyText = 1;
78 u32 g_idxSubjectBufStart[NUM_MSG_BOX_TYPES] = { 0 };
84 static const u32 HOLD_THRESHOLD = 10;
91 static u32 s_holdCount[NUM_KPAD_BUTTONS] = { 0 };
98 static void* AllocFromPadHeap( u32 size );
189 u32 bufSize; in GetMsgIdList()
201 bufSize = OSRoundUp32B( g_numMsgs[mbType] * sizeof(u32) ); in GetMsgIdList()
202 g_idListBuf[mbType] = (u32*)MEMAllocFromAllocator( &DemoAllocator1, bufSize ); in GetMsgIdList()
239 u32 subjectSize; in GetListedSubjects()
241 u32 i; in GetListedSubjects()
248 u32 idxIdListBuf = (u32)(g_idxIdTopOfList[mbType] + i); in GetListedSubjects()
295 u32 i; in ReleaseListedSubjects()
349 static void* AllocFromPadHeap( u32 size ) in AllocFromPadHeap()