Home
last modified time | relevance | path

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

/glibc-2.36/stdio-common/
D_itowa.c30 #ifndef UMUL_TIME
31 # define UMUL_TIME 1 macro
49 #if (UDIV_TIME > 2 * UMUL_TIME)
60 #if UDIV_TIME > 2 * UMUL_TIME
69 #if UDIV_TIME > 2 * UMUL_TIME
187 # if UDIV_TIME > 2 * UMUL_TIME || UDIV_NEEDS_NORMALIZATION in _itowa()
200 # if UDIV_TIME > 2 * UMUL_TIME in _itowa()
257 # if UDIV_TIME > 2 * UMUL_TIME in _itowa()
291 # if UDIV_TIME > 2 * UMUL_TIME in _itowa()
D_itoa.c30 #ifndef UMUL_TIME
31 # define UMUL_TIME 1 macro
49 #if (UDIV_TIME > 2 * UMUL_TIME)
60 #if UDIV_TIME > 2 * UMUL_TIME
69 #if UDIV_TIME > 2 * UMUL_TIME
292 # if UDIV_TIME > 2 * UMUL_TIME || UDIV_NEEDS_NORMALIZATION in _itoa()
305 # if UDIV_TIME > 2 * UMUL_TIME in _itoa()
362 # if UDIV_TIME > 2 * UMUL_TIME in _itoa()
396 # if UDIV_TIME > 2 * UMUL_TIME in _itoa()
/glibc-2.36/stdlib/
Dmod_1.c28 #ifndef UMUL_TIME
29 #define UMUL_TIME 1 macro
33 #define UDIV_TIME UMUL_TIME
58 if (UDIV_TIME > (2 * UMUL_TIME + 6) in mpn_mod_1()
59 && (UDIV_TIME - (2 * UMUL_TIME + 6)) * dividend_size > UDIV_TIME) in mpn_mod_1()
Ddivmod_1.c31 #ifndef UMUL_TIME
32 #define UMUL_TIME 1 macro
36 #define UDIV_TIME UMUL_TIME
62 if (UDIV_TIME > (2 * UMUL_TIME + 6) in mpn_divmod_1()
63 && (UDIV_TIME - (2 * UMUL_TIME + 6)) * dividend_size > UDIV_TIME) in mpn_divmod_1()
Dlonglong.h151 #define UMUL_TIME 46 macro
271 # define UMUL_TIME 20 macro
280 # define UMUL_TIME 3 macro
380 #define UMUL_TIME 8 macro
382 #define UMUL_TIME 30 macro
488 #define UMUL_TIME 40 macro
524 #define UMUL_TIME 40 macro
593 #define UMUL_TIME 14 macro
645 #define UMUL_TIME 45 macro
696 #define UMUL_TIME 100 macro
[all …]
/glibc-2.36/ChangeLog.old/
DChangeLog.75903 * stdio-common/_itoa.c: Defaulting UMUL_TIME==UDIV_TIME is broken.