Home
last modified time | relevance | path

Searched refs:hex (Results 1 – 3 of 3) sorted by relevance

/TwlSDK-5.4/tools/bin/
Ddis29 mwldarm.exe -w off -dis -nostdlib -show only,comments,code,source,names,hex -proc arm9tdmi $1
/TwlSDK-5.4/build/libraries/rtc/ARM9/src/
Dexternal.c91 static u32 RtcHEX2BCD(u32 hex);
1507 u32 hex = 0; in RtcBCD2HEX() local
1516 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() argument
1545 if (hex > 99999999) in RtcHEX2BCD()
1551 for (i = 0, w = hex; i < 8; i++) in RtcHEX2BCD()
/TwlSDK-5.4/build/tools/stripdebug/
Delf_loader.c58 void ELi_SetDecSize( char* dec, u32 hex) in ELi_SetDecSize() argument
66 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()