Home
last modified time | relevance | path

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

/hal_ambiq-latest/utils/
Dam_util_stdio.c582 int32_t i32Significand, i32IntPart, i32FracPart; in ftoa() local
605 i32IntPart = 0; in ftoa()
617 i32IntPart = i32Significand << (iExp2 - 23); in ftoa()
621 i32IntPart = i32Significand >> (23 - iExp2); in ftoa()
634 if (i32IntPart == 0) in ftoa()
640 if (i32IntPart > 0) in ftoa()
642 uint64_to_str(i32IntPart, pcBuf); in ftoa()
647 uint64_to_str(-i32IntPart, pcBuf); in ftoa()