Home
last modified time | relevance | path

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

/PHP-5.5/ext/standard/
H A Dformatted_print.c139 register unsigned long magn, nmagn; in php_sprintf_appendint() local
146 magn = ((unsigned long) -(number + 1)) + 1; in php_sprintf_appendint()
148 magn = (unsigned long) number; in php_sprintf_appendint()
157 nmagn = magn / 10; in php_sprintf_appendint()
160 magn = nmagn; in php_sprintf_appendint()
162 while (magn > 0 && i > 0); in php_sprintf_appendint()
183 register unsigned long magn, nmagn; in php_sprintf_appenduint() local
188 magn = (unsigned long) number; in php_sprintf_appenduint()
196 nmagn = magn / 10; in php_sprintf_appenduint()
199 magn = nmagn; in php_sprintf_appenduint()
[all …]

Completed in 5 milliseconds