Home
last modified time | relevance | path

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

/PHP-8.3/ext/bcmath/libbcmath/src/
H A Ddivmod.c46 bc_num quotient = NULL; in bc_divmod() local
62 quotient = bc_copy_num(temp); in bc_divmod()
70 *quot = quotient; in bc_divmod()
/PHP-8.3/ext/mbstring/tests/
H A Dgb18030_encoding.phpt262 $quotient = intdiv($index, 10 * 126 * 10);
263 $byte4 = $quotient + 0x81;
264 $index -= ($quotient * 10 * 126 * 10);
265 $quotient = intdiv($index, 10 * 126);
266 $byte3 = $quotient + 0x30;
267 $index -= ($quotient * 10 * 126);
268 $quotient = intdiv($index, 10);
269 $byte2 = $quotient + 0x81;
270 $byte1 = $index - ($quotient * 10) + 0x30;

Completed in 19 milliseconds