Home
last modified time | relevance | path

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

/php-src/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-src/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;
H A Dgb18030_2022_encoding.phpt263 $quotient = intdiv($index, 10 * 126 * 10);
264 $byte4 = $quotient + 0x81;
265 $index -= ($quotient * 10 * 126 * 10);
266 $quotient = intdiv($index, 10 * 126);
267 $byte3 = $quotient + 0x30;
268 $index -= ($quotient * 10 * 126);
269 $quotient = intdiv($index, 10);
270 $byte2 = $quotient + 0x81;
271 $byte1 = $index - ($quotient * 10) + 0x30;

Completed in 8 milliseconds