Lines Matching refs:u32
76 u32* g_idListBuf[NUM_MSG_BOX_TYPES] = { NULL };
77 u32 g_numMsgs[NUM_MSG_BOX_TYPES] = { 0 };
78 u32 g_idxSelectedId[NUM_MSG_BOX_TYPES] = { 0 };
79 u32 g_idxIdTopOfList[NUM_MSG_BOX_TYPES] = { 0 };
80 u32 g_lineTopOfBodyText = 0;
81 u32 g_numLinesBodyText = 1;
83 u32 g_idxSubjectBufStart[NUM_MSG_BOX_TYPES] = { 0 };
98 static const u32 HOLD_THRESHOLD = 10;
124 static u32 s_longHold = 0; // Button held down
125 static u32 s_holdCount[32] = { 0 };
130 static void* AllocFromPadHeap( u32 size );
141 u32 hold; in main()
142 u32 trig; in main()
226 u32 bufSize; in GetMsgIdList()
238 bufSize = OSRoundUp32B( g_numMsgs[mbType] * sizeof(u32) ); in GetMsgIdList()
239 g_idListBuf[mbType] = (u32*)MEMAllocFromAllocator( &DemoAllocator1, bufSize ); in GetMsgIdList()
276 BOOL ReadSubject( char* buf, u32 size, NWC24MsgBoxId mBoxId, u32 msgId ) in ReadSubject()
281 u32 subjectSize; in ReadSubject()
332 u32 i; in GetListedSubjects()
339 u32 idxIdListBuf = (u32)(g_idxIdTopOfList[mbType] + i); in GetListedSubjects()
364 u32 i; in ReleaseListedSubjects()
438 static void* AllocFromPadHeap( u32 size ) in AllocFromPadHeap()