Home
last modified time | relevance | path

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

/PHP-5.4/ext/standard/
H A Dformatted_print.c134 register unsigned long magn, nmagn; in php_sprintf_appendint() local
141 magn = ((unsigned long) -(number + 1)) + 1; in php_sprintf_appendint()
143 magn = (unsigned long) number; in php_sprintf_appendint()
152 nmagn = magn / 10; in php_sprintf_appendint()
155 magn = nmagn; in php_sprintf_appendint()
157 while (magn > 0 && i > 0); in php_sprintf_appendint()
178 register unsigned long magn, nmagn; in php_sprintf_appenduint() local
183 magn = (unsigned long) number; in php_sprintf_appenduint()
191 nmagn = magn / 10; in php_sprintf_appenduint()
194 magn = nmagn; in php_sprintf_appenduint()
[all …]

Completed in 5 milliseconds