Searched refs:hex (Results 1 – 3 of 3) sorted by relevance
29 mwldarm.exe -w off -dis -nostdlib -show only,comments,code,source,names,hex -proc arm9tdmi $1
91 static u32 RtcHEX2BCD(u32 hex);1507 u32 hex = 0; in RtcBCD2HEX() local1516 return hex; // Stop conversion and forcibly return 0 in RtcBCD2HEX()1523 hex += (((bcd >> (i * 4)) & 0x0000000f) * w); in RtcBCD2HEX()1525 return hex; in RtcBCD2HEX()1538 static u32 RtcHEX2BCD(u32 hex) in RtcHEX2BCD() argument1545 if (hex > 99999999) in RtcHEX2BCD()1551 for (i = 0, w = hex; i < 8; i++) in RtcHEX2BCD()
58 void ELi_SetDecSize( char* dec, u32 hex) in ELi_SetDecSize() argument66 if( ((hex / tmp) != 0) || (ptr != 0)) { in ELi_SetDecSize()67 dec[ptr++] = 0x30 + (hex/tmp); in ELi_SetDecSize()68 hex -= (hex/tmp) * tmp; in ELi_SetDecSize()