Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/int8/
Dfixed_point.h58 int32_t ComputerReciprocal(int32_t x, int x_digits, int *recip_shift);
Dfixed_point.c166 int32_t ComputerReciprocal(int32_t x, int x_digits, int *recip_shift) { in ComputerReciprocal() argument
168 *recip_shift = x_digits - leading_zreos_plus_one; in ComputerReciprocal()
/third_party/python/Objects/
Dlongobject.c2743 digit x_digits[2 + (DBL_MANT_DIG + 1) / PyLong_SHIFT] = {0,}; in _PyLong_Frexp() local
2794 rem = v_lshift(x_digits + x_size, a->ob_digit, a_size, in _PyLong_Frexp()
2797 x_digits[x_size++] = rem; in _PyLong_Frexp()
2802 rem = v_rshift(x_digits, a->ob_digit + shift_digits, in _PyLong_Frexp()
2810 x_digits[0] |= 1; in _PyLong_Frexp()
2814 x_digits[0] |= 1; in _PyLong_Frexp()
2818 assert(1 <= x_size && x_size <= (Py_ssize_t)Py_ARRAY_LENGTH(x_digits)); in _PyLong_Frexp()
2821 x_digits[0] += half_even_correction[x_digits[0] & 7]; in _PyLong_Frexp()
2822 dx = x_digits[--x_size]; in _PyLong_Frexp()
2824 dx = dx * PyLong_BASE + x_digits[--x_size]; in _PyLong_Frexp()