Home
last modified time | relevance | path

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

/PHP-5.3/ext/standard/
H A Dformatted_print.c137 register unsigned long magn, nmagn; in php_sprintf_appendint() local
144 magn = ((unsigned long) -(number + 1)) + 1; in php_sprintf_appendint()
146 magn = (unsigned long) number; in php_sprintf_appendint()
155 nmagn = magn / 10; in php_sprintf_appendint()
158 magn = nmagn; in php_sprintf_appendint()
160 while (magn > 0 && i > 0); in php_sprintf_appendint()
181 register unsigned long magn, nmagn; in php_sprintf_appenduint() local
186 magn = (unsigned long) number; in php_sprintf_appenduint()
194 nmagn = magn / 10; in php_sprintf_appenduint()
197 magn = nmagn; in php_sprintf_appenduint()
[all …]

Completed in 8 milliseconds